Acrobat Reader 7
How do i stup to do a push install for Acrobat Reader 7 from my server and during the installation have Acrobat 5 uninstalled?.
0 Comments
[ + ] Show comments
Answers (1)
Please log in to answer
Posted by:
hick
19 years ago
I have Acrobat 5 removed via a first batch file and then I do v.7 via a silent install pushed via SMS.
Note: SMS requires you to use UNC paths if you are doing this while no users are logged in...
Here's my batch files
Acrobat Reader 7:
Here's the regedit:
Here's the .VBS I use to uninstall Acrobat Reader that I got from one of the forums around here...
Note: SMS requires you to use UNC paths if you are doing this while no users are logged in...
Here's my batch files
Acrobat Reader 7:
START /WAIT "Acrobat Reader Install" "\\SERVER\SHARE\Install\Acrobat.Reader.7\AdbeRdr70_enu_full.EXE" /s /v"/qb EULA_ACCEPT=YES ALLUSERS=1 REBOOT=ReallySuppress"
regedit /s "\\SERVER\SHARE\Acrobat.Reader.7\Acrobat.Reader.7.reg"
Here's the regedit:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Adobe\Acrobat Reader\7.0\AdobeViewer]
"EULA"=dword:00000001
[HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\7.0\Updater]
"bShowInstCompDialog"=dword:00000000
"bShowNotifDialog"=dword:00000000
"iUpdateFrequency"=dword:00000000
[HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\7.0\AdobeViewer]
"TrustedMode"=dword:00000000
"EULA"=dword:00000001
[HKEY_LOCAL_MACHINE\SOFTWARE\Adobe\Acrobat Reader\7.0\FeatureLockdown]
"bShowAdsAllow"=dword:00000000
[HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\7.0\AVGeneral\cToolbars\cWebSearchView\cPositions\cInternal]
"iDockPosition"=dword:00000000
"iFrameB"=dword:00000000
"iFrameL"=dword:00000000
"iFrameR"=dword:00000000
"iFrameT"=dword:00000000
"bHidden"=dword:00000001
"iLayout"=dword:00000000
"iOffset"=dword:00000000
"iOrder"=dword:00000032
"iStack"=dword:00000000
"bWindowHidden"=dword:00000000
Here's the .VBS I use to uninstall Acrobat Reader that I got from one of the forums around here...
Set objWshShell = CreateObject("Wscript.Shell")
strUninstall = objWshShell.RegRead("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Acrobat 5.0\UninstallString")
objWshShell.Run strUninstall & " -s -y -a"
Set objWshShell = Nothing
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.
so that the conversation will remain readable.