Download the required Font Packs from Adobe. More info about the Adobe Reader 9.1 and the ScriptFrameWork here.
Example script :
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
[sourcecode language="plain"] @echo off REM Install Adobe Reader 9 Font Packs - Extended Languages REM ScriptFrameWork by Joe Shonk - www.theshonkproject.com REM Customized by Trond Eirik Haavarstein - www.xenappblog.com pushd %~dp0 cd .. set AppSourcePath=Source set AppConfigPath=Configuration set AppInstallPath=Scripts set AppHotfixesPath=Hotfixes set LogFile="%temp%Adobe Reader 9 Font Packs - Extended Languages.log" set Switches=/qn ALLUSERS=1 REBOOT="ReallySuppress" set MST=TRANSFORMS=AdobeReader9.mst cls echo. echo Installing Adobe Reader 9 Font Packs - Extended Languages echo. cd %AppSourcePath% start /wait msiexec /i "FontPack90_Xtd_Lang.msi" %Switches% /liewa %LOGFILE% popd endlocal [/sourcecode] |
This is a very good and informative post. I look forward to see more.