Skip to main content
Participating Frequently
October 8, 2015
Question

Deployment Adobe Reader with SCCM 2007 R3

  • October 8, 2015
  • 1 reply
  • 1084 views

Hello,

I have created a package with the following program to update all Adobe Reader (coming from any version (6, 7, 8, 9  to 10)

rem Installation Adobe Acrobat Reader 10.1.15 (for all client with version 10.x.x. and below)

net use \\CONFIGMGRSRV\D$\Applications\Adobe\Acrobat\10.1.15\Reader\AdbeRdr1000_mui_Std
msiexec.exe /i "AcroRead.msi" ALLUSERS=1 /q /norestart TRANSFORMS="AcroRead.mst"

net use \\CONFIGMGRSRV\D$\Applications\Adobe\Acrobat\10.1.15\Reader\AdbeRdr1010_mui_Std
msiexec.exe /i "AcroRead.msi" ALLUSERS=1 /q /norestart TRANSFORMS="AcroRead.mst"

net use \\CONFIGMGRSRV\D$\Applications\Adobe\Acrobat\10.1.15\Reader
rem installation update 10.1.15
msiexec /update AdbeRdrUpd10115.msp /norestat

if "%errorlevel%"=="0" cls &Echo Success.
if "%errorlevel%"=="1" cls &Echo Fail

exit 0

but the  update to 10 works but not the upgrade to 10.1.15, it sys that the program updated does not exist on the client???

Why?

Thanks,

Dom

This topic has been closed for replies.

1 reply

Participating Frequently
October 13, 2015

Hello,

I noticed also that the items in Add/remove Programs are not consistent:

two items but on another machine I have only 1 item!!!

So several questions now:

Why only the MUI updates works on an 10.1.0 not MUI and not the regular 10.1.15 (Not MUI)?

Why the 10.1.0 does not show in Ad/Remove program?

Thanks,

Dom

Adobe Employee
October 13, 2015

The first screenshot on top shows that you have Adobe Reader X English installed in one instance and Adobe Reader X MUI (Multilingual) in the other instance.  So essentially you have two Adobe Readers installed on one machine.

The second screenshot on botton shows only the Adobe Reader X MUI  (Multilingual) installed.

Participating Frequently
October 19, 2015

Try using the verbose logging switch  for MSI installations to see what happens during the failure.

Msiexec (command-line options)


Thanks,

After checking there was a spelling error restat instead of restart..

Thanks,

Dom