elgwhoppo
Posts: 109
Score: 0 Joined: 10/4/2006 From: Medina, OH Status: offline
|
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.
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
|