How to install Adobe Reader 9.3 by bigfix

(imported topic written by zouminyi91)

Here I am writing a fixlet to install adobe reader 9.3, this fixlet can download the installation files, but could not install on the remote computer, but when I run this InstallAcroRead.bat manually, it works.

Could you pls give some help ? Thx

Because the package function could not work, so I download each files.

The bat file content is:

msiexec /i AcroRead.msi /qn /norestart ALLUSERS=2 EULA_ACCEPT=YES SUPPRESS_APP_LAUNCH=YES

msiexec /i FontPack90_zh_CN.msi /qn /norestart

Fixlet:


//Download installation file

download http://BIGFIX.*.COM:63422/Uploads/AdbeRdr930/AcroRead.msi

//checksum

continue if {(size of it = 3972608 and sha1 of it = “2db35f46078637b5644f7365b33e10121e589879”) of file “AcroRead.msi” of folder “__download”}

waithidden cmd.exe /C mkdir c:\temp\AcroRead930

move “__Download\AcroRead.msi” “c:\temp\AcroRead930\AcroRead.msi”

download http://BIGFIX.*.COM:63422/Uploads/AdbeRdr930/Data1.cab

//checksum

continue if {(size of it = 109673432 and sha1 of it = “98355ef6ee5f80cb0652a4f057693268095853f9”) of file “Data1.cab” of folder “__download”}

move “__Download\Data1.cab” “c:\temp\AcroRead930\Data1.cab”

download http://BIGFIX.*.COM:63422/Uploads/AdbeRdr930/FontPack90_zh_CN.msi

//checksum

continue if {(size of it = 21585920 and sha1 of it = “9945f0fb17f14c5993c39a38e8a542e5f287ef0e”) of file “FontPack90_zh_CN.msi” of folder “__download”}

move “__Download\FontPack90_zh_CN.msi” “c:\temp\AcroRead930\FontPack90_zh_CN.msi”

download http://BIGFIX.*.COM:63422/Uploads/AdbeRdr930/InstallAcroRead.bat

//checksum

continue if {(size of it = 139 and sha1 of it = “4ed7cc3f6263eb4f36c25c64616dd7c64cb32b2c”) of file “InstallAcroRead.bat” of folder “__download”}

move “__Download\InstallAcroRead.bat” “c:\temp\AcroRead930\InstallAcroRead.bat”

//Execute the installer

waithidden cmd.exe /C c:\temp\AcroRead930\InstallAcroRead.bat

//dos run c:\temp\InstallAcroRead.bat

//Execute the installer

//wait __Download\AcroRead.msi /qn /norestart ALLUSERS=2 EULA_ACCEPT=YES SUPPRESS_APP_LAUNCH=YES

//wait __Download\FontPack90_zh_CN.msi /qn /norestart

(imported comment written by BenKus)

Add “cd __Download” to the front of your batch file.

Ben