How to implement a silent Installation for Adobe Reader 9
AdbeRdr90_en_US_Std.exe /sAll /rs /l /msi"/qb-! /norestart ALLUSERS=1 EULA_ACCEPT=YES SUPPRESS_APP_LAUNCH=YES"
The above command will install Adobe Reader 9 silently, suppressing the restart, accepting the end user license agreement and suppressing the launch of adobe reader 9 once complete.
Via our BigFix deployment tool I also use the following command to delete the registry startup for the speed launcher;
regdelete "[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run]" "Adobe Reader Speed Launcher"
Hope this is useful to people. I see that there isn't a package entry for Reader 9 as yet.
0 Comments
[ + ] Show comments
Answers (17)
Please log in to answer
Posted by:
Rotje
16 years ago
Ghehe,
Nice options, but Adobe has a customization wizzard.
Download it here:
http://www.adobe.com/support/downloads/detail.jsp?ftpID=3993
The wizzard needs the acroread.msi...
If you have downloaded AdbeRdr90_en_US.exe, just start the executable... but don't install the Reader
You'll find the install files in:
C:\Documents and Settings\<your loginname>\Local Settings\Application Data\Adobe\Reader 9.0
Copy the files to a new directory and start the cusomization wizzard.
Nice options, but Adobe has a customization wizzard.
Download it here:
http://www.adobe.com/support/downloads/detail.jsp?ftpID=3993
The wizzard needs the acroread.msi...
If you have downloaded AdbeRdr90_en_US.exe, just start the executable... but don't install the Reader
You'll find the install files in:
C:\Documents and Settings\<your loginname>\Local Settings\Application Data\Adobe\Reader 9.0
Copy the files to a new directory and start the cusomization wizzard.
Posted by:
Arminius
13 years ago
Posted by:
anonymous_9363
16 years ago
Posted by:
f4jock
16 years ago
Posted by:
ErinC
16 years ago
Posted by:
anyoneis
15 years ago
I have seen a half-dozen different places one is supposed to look for the setup files after running the downloaded exe and consequently wasted a lot of time. I suspect the location varies all over the place, and I think it would be better if we standardized on the NOSSO extraction method, e.g.,
AdbeRdr910_en_US.exe -nos_o"Reader9" -nos_ne
Where "Reader9" is a new directory name to contain the setup files.
David
AdbeRdr910_en_US.exe -nos_o"Reader9" -nos_ne
Where "Reader9" is a new directory name to contain the setup files.
David
Posted by:
jmcfadyen
15 years ago
i guess none of you posting here other than Ian understand the idea behind the PackageKB ?
Comments:
-
PackageKB is now located in Deployment Tips - Trinity 12 years ago
Posted by:
anyoneis
15 years ago
Being a pneubé, I have been trying to figure it out. My impression is that the Package KB is for knowledge about installing packages, and the message board is for discussions which might lead to the creation or dissemination of such knowledge. But, I would be happy to be led to a better understanding of the way things work around here!
Posted by:
potga9
15 years ago
Posted by:
dj_xest
15 years ago
Posted by:
elgwhoppo
15 years ago
Ended up using a transform to disable the AUM and Updater features (I hate that Adobe Updater, rawr) and update the HKCU keys so that the toolbar is uniform and doesn't have that "use acrobat.com" business on there.
My command line:
msiexec.exe /i AcroRead.msi TRANSFORMS="Adobe Reader 9.1.mst" /qn
Also wrote a script that will parse the working directory looking for .MSP files and silently apply them. This way when adobe MSP's get released in the future, all I have to do is drop them in the folder and run the script. I call this after my install.
My command line:
msiexec.exe /i AcroRead.msi TRANSFORMS="Adobe Reader 9.1.mst" /qn
Also wrote a script that will parse the working directory looking for .MSP files and silently apply them. This way when adobe MSP's get released in the future, all I have to do is drop them in the folder and run the script. I call this after my install.
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objShell = CreateObject("WScript.Shell")
Set objCurPath = objFSO.GetFolder(objShell.CurrentDirectory)
Set colFiles = objCurPath.Files
For Each objFile in colFiles
'If extenstion is MSP, execute patch
If UCase(objFSO.GetExtensionName(objFile)) = "MSP" Then
objShell.Run "msiexec.exe /update """+objFile+""" /qn",1,True
End If
Next
Posted by:
anonymous_9363
15 years ago
Posted by:
M_A_D_C_A_T
14 years ago
For other people that stumble upon this forum looking for an answer - deploy adobe reader
Posted by:
reds4eva
14 years ago
Posted by:
PaulieD
14 years ago
Apr 2010 - I grabbed Acrobat Reader's product code from: HKLM\Software\Adobe\Acrobat Reader\(VER)\Installer\{ProductCode}
In my case, Reader version 9 had a product code of "{AC76BA86-7AD7-1033-7B44-A90000000001}"
I then used MSIEXEC to uninstall it silently, as such:
msiexec /x {AC76BA86-7AD7-1033-7B44-A90000000001} /qa
Note: change /qa to /qb if you wish to see a progress bar.
In my case, Reader version 9 had a product code of "{AC76BA86-7AD7-1033-7B44-A90000000001}"
I then used MSIEXEC to uninstall it silently, as such:
msiexec /x {AC76BA86-7AD7-1033-7B44-A90000000001} /qa
Note: change /qa to /qb if you wish to see a progress bar.
Posted by:
hansraj_84
14 years ago
Posted by:
kiptek
15 years ago
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.