/build/static/layout/Breadcrumb_cap_w.png

Adobe Reader 6.0.2

Okay, I'm working on setting up and deploying Adobe Reader 6.0 with the 6.0.2 Update. I've got all the files and the MSI and all that configured (it installs fine), where I'm running into problems is the additional registry keys I want to tweak. Apparently some of them are different than what I thought they were in 6.0.

Can anyone tell me where the registry keys are to set version 6.0.2 so that it never checks for Updates? This is the key set when you go into Preferences | Updates and set the "Check for Updates:" to "Manually". Anyone got this working?

Thanks!

0 Comments   [ + ] Show comments

Answers (5)

Posted by: MSIMaker 19 years ago
2nd Degree Black Belt
0
The keys you need are

[HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\6.0\Originals]
"iPageUnits"=dword:3

[HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\6.0\Originals]
"sProofingSpace"=hex:55,2e,53,2e,20,57,65,62,20,43,6f,61,74,65,64,20,28,53,57,4f,50,29,20,76,32,00

[HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\6.0\Originals]
"bDisplayAboutDialog"=dword:0

[HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\6.0\Originals]
"bBrowserCheck"=dword:0

If you look here ewall has an excellent clean mst file that will give the right direction to take.

http://www.ewall.org/UpDownload+index-req-viewdownloaddetails-lid-6-ttitle-Make_a_Clean_Adobe_Reader_6_Installation.html
Posted by: Lucid 19 years ago
Purple Belt
0
Most of those registry keys listed do not exist within my WinXP Pro with version 6.0.2 installed. Has anyone found the correct keys?

Thanks
Posted by: MSIMaker 19 years ago
2nd Degree Black Belt
0
If you ADD those keys then it will never try to auto update and they also remove the Adobe advertising as well.
Posted by: TomLoader 19 years ago
Yellow Belt
0
I made a .mst file with the ORCA Tool and set modified following Codes in the Feature Table:

Feature: ReaderPrintMe, Level:0 (disable PrintMe)
Feature: Updater, Level:0 (disables the Updater)


Of Course you can set this parameters directly in the MSI Package.

This should solve your problem.

How my Transformfile additionaly has build in:

With Wise Installer Addiditionaly i placed a Registry Table Entry and a file into my .mst
Registry: registryxxx
Root: SOFTWARE\Microsoft\Windows\CurrentVersion\Run
Name: AdobeReader6Set
Value: WScript.exe [!acropatch.vbs]
Component: Reader_Registry_system

I added following "acropatch.vbs" file in the .mst to Install to Adobe Reader Main Directory in the Progam Files Folder:

Set objShl = CreateObject("WScript.Shell")
strRegSection = "HKCU\Software\Adobe\Acrobat Reader\6.0\"
'Performance: LAN Speed for Intranet (10MBit)
objShl.RegWrite strRegSection & "AVGeneral\iConnectionSpeed",10000000,"REG_DWORD"
'No automatic Updates
objShl.RegWrite strRegSection & "Updater\bShowAutoUpdateConfDialog",0,"REG_DWORD"
objShl.RegWrite strRegSection & "Updater\bShowNotifDialog",0,"REG_DWORD"
objShl.RegWrite strRegSection & "Updater\iUpdateFrequency",0,"REG_DWORD"
'Disable JavaScript in Reader
objShl.RegWrite strRegSection & "JSPrefs\bEnableJS",0,"REG_DWORD"
objShl.RegWrite strRegSection & "AdobeViewer\EULA",1,"REG_DWORD"
objShl.LogEvent 4,"Adobe Reader 6.0 Configuration complete"
Set objShl = Nothing


For doing the Update from 6.0.1 to 6.0.2 I placed a custom action 23 "Install from Relative Path" in the InstallExecute Sequence:
Action: msi602
Condition: Not Installed
Sequence: place it after "AOL_Update11"

Custom Action:
Action: msi602
Type: 23
Source:AdobeReader602upd.msi
Target: ALLUSERS=1

The "AdobeReader602upd.msi" and the mst must be placed in the same directory as the Main MSI Package resides.
You can get the msi Package by Running the Update.exe from Adobe and look into your "temp" directory.
Posted by: MSIMaker 19 years ago
2nd Degree Black Belt
0
Thats another way to do it.....but with vbscript you wont get any error checking and if the keys dont apply for some reason....the msi installation will never know and also won't be able to self repair those keys automatically if the keys are found missing.

If you add them to the mst then they will apply for each user that logs in when they start Reader. This will ensure that the settings are scaled correctly no matter who logs in.
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.
 
This website uses cookies. By continuing to use this site and/or clicking the "Accept" button you are providing consent Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our websites or when you do business with us. For more information about our Privacy Policy and our data protection efforts, please visit GDPR-HQ