ADobe Reader 707?
I created an mst to install Adobe reader 707, if I do manual install by executing the comand line
MSIEXEC.exe /I "C:\Ad707\Adobe reader 7.0.7.msi" TRANSFORMS="Adobe reader 7.0.7.mst: /qn it works the way is supposed to, the registry settings that I added to disable the EULA and the yahoo tool bar take just fine, when I deploy thru Altiris using the same commnad line the program installs just fine but the regystry setting dont apply, any Ideas thx
MSIEXEC.exe /I "C:\Ad707\Adobe reader 7.0.7.msi" TRANSFORMS="Adobe reader 7.0.7.mst: /qn it works the way is supposed to, the registry settings that I added to disable the EULA and the yahoo tool bar take just fine, when I deploy thru Altiris using the same commnad line the program installs just fine but the regystry setting dont apply, any Ideas thx
0 Comments
[ + ] Show comments
Answers (13)
Please log in to answer
Posted by:
benducklow
18 years ago
Posted by:
MDACC
18 years ago
Posted by:
benducklow
18 years ago
Hmm. It doesn't look like the MST file is being applied. Here's the command line I have setup for the installer:
msiexec /i "C:\Acrobat Reader\7.0.7\revA\Adobe Reader 7.0.7.msi" TRANSFORMS="C:\Acrobat Reader\7.0.7\revA\adobe reader 7.0.7.MST" /qb-!
Make sure the MST filename is correct and this should install it silently on your systems. I use Altiris as well but we don't use it for deploying apps, just some registry fixes and emergency type stuff..
Good luck.
msiexec /i "C:\Acrobat Reader\7.0.7\revA\Adobe Reader 7.0.7.msi" TRANSFORMS="C:\Acrobat Reader\7.0.7\revA\adobe reader 7.0.7.MST" /qb-!
Make sure the MST filename is correct and this should install it silently on your systems. I use Altiris as well but we don't use it for deploying apps, just some registry fixes and emergency type stuff..
Good luck.
Posted by:
kmaynard
18 years ago
Posted by:
rpfenninger
18 years ago
Posted by:
MDACC
18 years ago
Posted by:
wiseapp
18 years ago
I would have deployed a VBScript that would have modified the registry and would have integrated this with MSI that's it! To complete this requirement and should have put it in either Run\Startup key or whenever the MSI is triggered, this way I would have not made any registry changes in the MST but one that is to call this script.
Posted by:
rpfenninger
18 years ago
How about using ActiveSetup to make sure that all users (even pre-existing ones) get all the CurrentUser stuff?
Just add the following keys to the msi (using Orca):
HKLM\SOFTWARE\Microsoft\Active Setup\Installed Components\{AC76BA86-7AD7-1033-7B44-A70000000000}\StubPath
value=msiexec /fup {AC76BA86-7AD7-1033-7B44-A70000000000}
HKLM\SOFTWARE\Microsoft\Active Setup\Installed Components\{AC76BA86-7AD7-1033-7B44-A70000000000}\Version
Value=7.0
To ensure that the user installing Adobe Reader doesn't get bothered with the Repair Action add also the same keys in HKCU.
Hope that helps
Roland
Just add the following keys to the msi (using Orca):
HKLM\SOFTWARE\Microsoft\Active Setup\Installed Components\{AC76BA86-7AD7-1033-7B44-A70000000000}\StubPath
value=msiexec /fup {AC76BA86-7AD7-1033-7B44-A70000000000}
HKLM\SOFTWARE\Microsoft\Active Setup\Installed Components\{AC76BA86-7AD7-1033-7B44-A70000000000}\Version
Value=7.0
To ensure that the user installing Adobe Reader doesn't get bothered with the Repair Action add also the same keys in HKCU.
Hope that helps
Roland
Posted by:
yakatar
18 years ago
We use a custom adm template to customise Acrobat Reader settings, like updates and yahoo search, we also signed up to get the Enterprise Version. ADM file listing is as follows
;========================================
CLASS USER
CATEGORY "Adobe Acrobat Reader 7.0"
POLICY "Read Me!"
EXPLAIN !!ExplainReadMe
KEYNAME "Software\Policies"
END POLICY
POLICY "Disable EULA"
KEYNAME "Software\Adobe\Acrobat Reader\7.0\AdobeViewer"
EXPLAIN "Setting this policy disables EULA at initial start of Adobe Acrobat Reader"
VALUENAME "EULA"
VALUEON NUMERIC 1
VALUEOFF NUMERIC 0
END POLICY
POLICY "Disable startup splash screen"
KEYNAME "Software\Adobe\Acrobat Reader\7.0\Originals"
EXPLAIN "Set this value to not show the splash screen when Adobe Acrobat Reader loads"
VALUENAME "bDisplayedSplash"
VALUEON NUMERIC 1
VALUEOFF NUMERIC 0
END POLICY
POLICY "Disable update notification"
KEYNAME "Software\Adobe\Acrobat Reader\7.0\Updater"
EXPLAIN "Set this value to not show the update notification during Adobe Acrobat Reader startup"
VALUENAME "bShowNotifDialog"
VALUEON NUMERIC 0
VALUEOFF NUMERIC 1
END POLICY
POLICY "Set automatic update interval"
KEYNAME "Software\Adobe\Acrobat Reader\7.0\Updater"
EXPLAIN !!AutoUpdateInterval
PART "UpdateFrequency" DROPDOWNLIST REQUIRED
VALUENAME "iUpdateFrequency"
ITEMLIST
NAME "Never" VALUE NUMERIC 0 DEFAULT
NAME "Every Month" VALUE NUMERIC 1
END ITEMLIST
END PART
END POLICY
POLICY "Startup - Messages"
KEYNAME "SOFTWARE\Adobe\Acrobat Reader\7.0\AdsInReader"
EXPLAIN "Controls the appearence of Startup Messages"
PART "Show Messages and automatically update" DROPDOWNLIST REQUIRED
VALUENAME "bShowAds"
ITEMLIST
NAME "Disabled" VALUE NUMERIC 0 DEFAULT
NAME "Enabled" VALUE NUMERIC 1
END ITEMLIST
END PART
END POLICY
POLICY "Yahoo Search Toolbar"
KEYNAME "Software\Adobe\Acrobat Reader\7.0\AVGeneral\cToolbars\cWebSearchView\cPositions\cInternal"
EXPLAIN "Controls the appearance of the Internet Search option on the Acrobat Reader Toolbar"
PART "Display Internet Search" DROPDOWNLIST REQUIRED
VALUENAME "bHidden"
ITEMLIST
NAME "Disabled" VALUE NUMERIC 1 DEFAULT
NAME "Enabled" VALUE NUMERIC 0
END ITEMLIST
END PART
END POLICY
POLICY "Yahoo Search The Internet Toolbar"
KEYNAME "Software\Adobe\Acrobat Reader\7.0\AVGeneral\cToolbars\cWebSearchView\cPositions\cInternal"
EXPLAIN "Controls the appearance of the Internet Search option on the Acrobat Reader Toolbar"
PART "Display Internet Search" DROPDOWNLIST REQUIRED
VALUENAME "bHidden"
ITEMLIST
NAME "Disabled" VALUE NUMERIC 1 DEFAULT
NAME "Enabled" VALUE NUMERIC 0
END ITEMLIST
END PART
END POLICY
POLICY "Open PDF link Acrobat Reader"
KEYNAME "Software\Adobe\Acrobat Reader\7.0\Originals"
EXPLAIN "Set this value Enable to Open web links to Acrobat Reader instead of Internet Explorer"
ACTIONLISTON
VALUENAME "bBrowserIntegration" VALUE NUMERIC 0
END ACTIONLISTON
ACTIONLISTOFF
VALUENAME "bBrowserIntegration" VALUE DELETE
END ACTIONLISTOFF
END POLICY
END CATEGORY
[Strings]
AutoUpdateInterval="If you enable this policy, Acrobat Reader will no longer automatically check for updates"
ExplainReadMe="ReadMe!\n\nTo view all the options, you should highlight:\n\n Administrative Templates \n\nThen click \n\n User Settings - View - Filtering\n\nAnd uncheck the box:\n\n'Only show policy settings that can be fully managed.'"
;========================================
;EOF
;========================================
CLASS USER
CATEGORY "Adobe Acrobat Reader 7.0"
POLICY "Read Me!"
EXPLAIN !!ExplainReadMe
KEYNAME "Software\Policies"
END POLICY
POLICY "Disable EULA"
KEYNAME "Software\Adobe\Acrobat Reader\7.0\AdobeViewer"
EXPLAIN "Setting this policy disables EULA at initial start of Adobe Acrobat Reader"
VALUENAME "EULA"
VALUEON NUMERIC 1
VALUEOFF NUMERIC 0
END POLICY
POLICY "Disable startup splash screen"
KEYNAME "Software\Adobe\Acrobat Reader\7.0\Originals"
EXPLAIN "Set this value to not show the splash screen when Adobe Acrobat Reader loads"
VALUENAME "bDisplayedSplash"
VALUEON NUMERIC 1
VALUEOFF NUMERIC 0
END POLICY
POLICY "Disable update notification"
KEYNAME "Software\Adobe\Acrobat Reader\7.0\Updater"
EXPLAIN "Set this value to not show the update notification during Adobe Acrobat Reader startup"
VALUENAME "bShowNotifDialog"
VALUEON NUMERIC 0
VALUEOFF NUMERIC 1
END POLICY
POLICY "Set automatic update interval"
KEYNAME "Software\Adobe\Acrobat Reader\7.0\Updater"
EXPLAIN !!AutoUpdateInterval
PART "UpdateFrequency" DROPDOWNLIST REQUIRED
VALUENAME "iUpdateFrequency"
ITEMLIST
NAME "Never" VALUE NUMERIC 0 DEFAULT
NAME "Every Month" VALUE NUMERIC 1
END ITEMLIST
END PART
END POLICY
POLICY "Startup - Messages"
KEYNAME "SOFTWARE\Adobe\Acrobat Reader\7.0\AdsInReader"
EXPLAIN "Controls the appearence of Startup Messages"
PART "Show Messages and automatically update" DROPDOWNLIST REQUIRED
VALUENAME "bShowAds"
ITEMLIST
NAME "Disabled" VALUE NUMERIC 0 DEFAULT
NAME "Enabled" VALUE NUMERIC 1
END ITEMLIST
END PART
END POLICY
POLICY "Yahoo Search Toolbar"
KEYNAME "Software\Adobe\Acrobat Reader\7.0\AVGeneral\cToolbars\cWebSearchView\cPositions\cInternal"
EXPLAIN "Controls the appearance of the Internet Search option on the Acrobat Reader Toolbar"
PART "Display Internet Search" DROPDOWNLIST REQUIRED
VALUENAME "bHidden"
ITEMLIST
NAME "Disabled" VALUE NUMERIC 1 DEFAULT
NAME "Enabled" VALUE NUMERIC 0
END ITEMLIST
END PART
END POLICY
POLICY "Yahoo Search The Internet Toolbar"
KEYNAME "Software\Adobe\Acrobat Reader\7.0\AVGeneral\cToolbars\cWebSearchView\cPositions\cInternal"
EXPLAIN "Controls the appearance of the Internet Search option on the Acrobat Reader Toolbar"
PART "Display Internet Search" DROPDOWNLIST REQUIRED
VALUENAME "bHidden"
ITEMLIST
NAME "Disabled" VALUE NUMERIC 1 DEFAULT
NAME "Enabled" VALUE NUMERIC 0
END ITEMLIST
END PART
END POLICY
POLICY "Open PDF link Acrobat Reader"
KEYNAME "Software\Adobe\Acrobat Reader\7.0\Originals"
EXPLAIN "Set this value Enable to Open web links to Acrobat Reader instead of Internet Explorer"
ACTIONLISTON
VALUENAME "bBrowserIntegration" VALUE NUMERIC 0
END ACTIONLISTON
ACTIONLISTOFF
VALUENAME "bBrowserIntegration" VALUE DELETE
END ACTIONLISTOFF
END POLICY
END CATEGORY
[Strings]
AutoUpdateInterval="If you enable this policy, Acrobat Reader will no longer automatically check for updates"
ExplainReadMe="ReadMe!\n\nTo view all the options, you should highlight:\n\n Administrative Templates \n\nThen click \n\n User Settings - View - Filtering\n\nAnd uncheck the box:\n\n'Only show policy settings that can be fully managed.'"
;========================================
;EOF
Posted by:
schieb
18 years ago
Posted by:
mattk0
18 years ago
Posted by:
mattk0
18 years ago
Posted by:
mattk0
18 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.