/build/static/layout/Breadcrumb_cap_w.png

Adobe Acrobat Standard

Don't be a Stranger!

Sign up today to participate, stay informed, earn points and establish a reputation for yourself!

Sign up! or login
Views: 20k  |  Created: 12/21/2006

Average Rating: 0
Acrobat Standard has 1 inventory records, 10 Questions, 1 Blogs and 18 links. Please help add to this by sharing more!

Deployment Tips (16)

Most Common Setup Type
Not Determined
Average Package Difficulty Rating
Rated 2 / 5 (Somewhat Easy) based on 1 ratings
Most Commonly Reported Deployment Method
Windows Installer with Custom Transform (MST)
127
Command Line
Switches for use with the EXE installer:

/sALL ;SILENT
/sPB ;Silent with Progress bar
/rs ;Reboot supress
/rps ;Reboot prompt supress
/ini "path" ;Alternative INI file
/sl"LANG_ID" ;Set language;Lang_ID=code in decimal ENG=1033
/l ;Enable Error logging
/msi[COMMANDLINE] Parametes for MSIexec


Basic install (for ALM disabled Media)
\Acrobat\Adobe Acrobat 8 Standard\Setup.exe" /sALL /rs /rps /sl"1033" /l
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
122
Command Line

msiexec /i AcroStan.msi TRANSFORMS="AcroStan.mst" /qn

Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
118
Note
Adobe offers "Adobe Customization Wizard 8" (see Link section) to create an MST-Transform. Language selection is only possible if serial no is provided in the wizard, if not, Acrobat will install in default language (English).

You can provide the serial no. through parameter "ISX_SERIALNUMBER":

msiexec /i "acrostan.msi" TRANSFORMS="acrostan.mst" ISX_SERIALNUMBER="xxxx-xxxx-xxxx-xxxx-xxxx-xxxx"

and change the language setting with the following RegKeys:

[HKEY_LOCAL_MACHINE\SOFTWARE\Adobe\Adobe Acrobat\8.0\Language\current]
@="exlang32.deu"

[HKEY_LOCAL_MACHINE\SOFTWARE\Adobe\Adobe Acrobat\8.0\Language\next]
@="exlang32.deu"

The appropriate language file can be found in installation subfolder "Adobe".
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
118
Note
If you have Adobe Reader installed and want Acrobat to take control over PDF files use the following property.
IW_DEFAULT_VERB=Open. If IW_DEFAULT_VERB=Read, the Installed Adobe Reader will be the default reader for PDF.
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
118
Note
I created an ADM file for the following HKCU settings because we wanted to set the following:

1. Get rid of the splashscreen
2. Set the organization name
3. Change the connection speed to LAN
4. Set the spelling to English (United Kingdom)
5. Change page units to metric.

The ADM file contains the settings for both Adobe Reader 8.x and Adobe Acrobat 8.x.

When adding the policy, you'll need to ensure that the filter on your GPO editor is set to also display settings that can't be fully managed. This is because the settings are stored outside the "policy" key.

Here's the ADM (copy and paste into notepad to retain formatting, hopefully):

CLASS USER
CATEGORY !!CustomHeader
CATEGORY "Adobe Reader 8"
CATEGORY "Preferences"

CATEGORY "General"
CATEGORY "Application Startup"
POLICY "Show splash screen"
KEYNAME "Software\Adobe\Acrobat Reader\8.0\Originals"
EXPLAIN !!ExplainNosplash
VALUENAME "bDisplayedSplash"
VALUEON NUMERIC 0
VALUEOFF NUMERIC 1
END POLICY
END CATEGORY
END CATEGORY


CATEGORY "Identity"
POLICY "Organization Name"
KEYNAME "Software\Adobe\Acrobat Reader\8.0\Identity"
EXPLAIN !!ExplainOrgName
PART "Organization Name." EDITTEXT
VALUENAME "tCorporation"
END PART
END POLICY
END CATEGORY


CATEGORY "Internet"
CATEGORY "Internet Options"
POLICY "Connection speed"
KEYNAME "Software\Adobe\Acrobat Reader\8.0\AVGeneral"
EXPLAIN !!ExplainConnection
PART "Connection speed." DROPDOWNLIST REQUIRED
VALUENAME "iConnectionSpeed"
ITEMLIST
NAME "56kbps" VALUE NUMERIC 56000
NAME "LAN" VALUE NUMERIC 10000000 DEFAULT
END ITEMLIST
END PART
END POLICY
END CATEGORY
END CATEGORY


CATEGORY "Spelling"
CATEGORY "Dictionaries"
POLICY "Dictionaries"
KEYNAME "Software\Adobe\Acrobat Reader\8.0\Spelling"
EXPLAIN !!ExplainDictionary
PART "Default Dictionary" DROPDOWNLIST
VALUENAME "tDictionaryName"
ITEMLIST
NAME "English (United Kingdom)" VALUE "English (United Kingdom)"
ACTIONLIST
KEYNAME "Software\Adobe\Acrobat Reader\8.0\Spelling"
VALUENAME "iDictionaryDefaultID" VALUE NUMERIC 7
KEYNAME "Software\Adobe\Acrobat Reader\8.0\Spelling\cDictionaryOrder"
VALUENAME "t0" VALUE "English (United Kingdom)"
KEYNAME "Software\Adobe\Acrobat Reader\8.0\Spelling\cDictionaryOrderID"
VALUENAME "i0" VALUE NUMERIC 7
END ACTIONLIST
NAME "English (United States)" VALUE "English (United States)"
ACTIONLIST
KEYNAME "Software\Adobe\Acrobat Reader\8.0\Spelling"
VALUENAME "iDictionaryDefaultID" VALUE NUMERIC 2
KEYNAME "Software\Adobe\Acrobat Reader\8.0\Spelling\cDictionaryOrder"
VALUENAME "t0" VALUE "English (United States)"
KEYNAME "Software\Adobe\Acrobat Reader\8.0\Spelling\cDictionaryOrderID"
VALUENAME "i0" VALUE NUMERIC 2
END ACTIONLIST
END ITEMLIST
END PART
END POLICY
END CATEGORY
END CATEGORY


CATEGORY "Units"

POLICY "Page Units"
KEYNAME "Software\Adobe\Acrobat Reader\8.0\Originals"
EXPLAIN !!ExplainPageUnits
PART "Page unit" DROPDOWNLIST REQUIRED
VALUENAME "iPageUnits"
ITEMLIST
NAME "Points" VALUE NUMERIC 0
NAME "Inches" VALUE NUMERIC 1
NAME "Millimeters" VALUE NUMERIC 2 DEFAULT
NAME "Centimeters" VALUE NUMERIC 3
NAME "Picas" VALUE NUMERIC 4
END ITEMLIST
END PART
END POLICY

END CATEGORY


END CATEGORY
END CATEGORY



CATEGORY "Adobe Acrobat 8"
CATEGORY "Preferences"

CATEGORY "General"
CATEGORY "Application Startup"
POLICY "Show splash screen"
KEYNAME "Software\Adobe\Adobe Acrobat\8.0\Originals"
EXPLAIN !!ExplainNosplash
VALUENAME "bDisplayedSplash"
VALUEON NUMERIC 0
VALUEOFF NUMERIC 1
END POLICY
END CATEGORY
END CATEGORY


CATEGORY "Identity"
POLICY "Organization Name"
KEYNAME "Software\Adobe\Adobe Acrobat\8.0\Identity"
EXPLAIN !!ExplainOrgName
PART "Organization Name." EDITTEXT
VALUENAME "tCorporation"
END PART
END POLICY
END CATEGORY


CATEGORY "Internet"
CATEGORY "Internet Options"
POLICY "Connection speed"
KEYNAME "Software\Adobe\Adobe Acrobat\8.0\AVGeneral"
EXPLAIN !!ExplainConnection
PART "Connection speed." DROPDOWNLIST REQUIRED
VALUENAME "iConnectionSpeed"
ITEMLIST
NAME "56kbps" VALUE NUMERIC 56000
NAME "LAN" VALUE NUMERIC 10000000 DEFAULT
END ITEMLIST
END PART
END POLICY
END CATEGORY
END CATEGORY


CATEGORY "Spelling"
CATEGORY "Dictionaries"
POLICY "Dictionaries"
KEYNAME "Software\Adobe\Adobe Acrobat\8.0\Spelling"
EXPLAIN !!ExplainDictionary
PART "Default Dictionary" DROPDOWNLIST
VALUENAME "tDictionaryName"
ITEMLIST
NAME "English (United Kingdom)" VALUE "English (United Kingdom)"
ACTIONLIST
KEYNAME "Software\Adobe\Adobe Acrobat\8.0\Spelling"
VALUENAME "iDictionaryDefaultID" VALUE NUMERIC 7
KEYNAME "Software\Adobe\Adobe Acrobat\8.0\Spelling\cDictionaryOrder"
VALUENAME "t0" VALUE "English (United Kingdom)"
KEYNAME "Software\Adobe\Adobe Acrobat\8.0\Spelling\cDictionaryOrderID"
VALUENAME "i0" VALUE NUMERIC 7
END ACTIONLIST
NAME "English (United States)" VALUE "English (United States)"
ACTIONLIST
KEYNAME "Software\Adobe\Adobe Acrobat\8.0\Spelling"
VALUENAME "iDictionaryDefaultID" VALUE NUMERIC 2
KEYNAME "Software\Adobe\Adobe Acrobat\8.0\Spelling\cDictionaryOrder"
VALUENAME "t0" VALUE "English (United States)"
KEYNAME "Software\Adobe\Adobe Acrobat\8.0\Spelling\cDictionaryOrderID"
VALUENAME "i0" VALUE NUMERIC 2
END ACTIONLIST
END ITEMLIST
END PART
END POLICY
END CATEGORY
END CATEGORY


CATEGORY "Units"

POLICY "Page Units"
KEYNAME "Software\Adobe\Adobe Acrobat\8.0\Originals"
EXPLAIN !!ExplainPageUnits
PART "Page unit" DROPDOWNLIST REQUIRED
VALUENAME "iPageUnits"
ITEMLIST
NAME "Points" VALUE NUMERIC 0
NAME "Inches" VALUE NUMERIC 1
NAME "Millimeters" VALUE NUMERIC 2 DEFAULT
NAME "Centimeters" VALUE NUMERIC 3
NAME "Picas" VALUE NUMERIC 4
END ITEMLIST
END PART
END POLICY

END CATEGORY


END CATEGORY
END CATEGORY


END CATEGORY

[strings]
CustomHeader= "Custom Policies"
ExplainNosplash="When disabled, the program will not display a splashscreen on startup.\n\nWhen enabled, the splashscreen will be displayed."
ExplainOrgName="Enter the organization name by typing it in."
ExplainConnection="To specify LAN, set the connection speed to 10000000."
ExplainPageUnits="Set the page unit from the drop-down list.\n\nThe default is millimeters."
ExplainDictionary="Used to specify the default dictionary to spell checking."
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
117
Terminal Services

If you want to use the autorepair functionality to put user setting in place when users run Acrobat for the first time, set ALLUSERS=2. Else the installation will fail due to inproper installation rigths. I got this problem after I had created a Transform with Orca.

Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
117
Note
When using Create Transform with Wise a Property ISSETUPCOMPLETED=Complete is added to the Property list.
If this Property exists, the installation will not accept the ISX_SERIALNUMBER property and fail. My recommendations is to only use Adobe Customization Wizard and Orca when preparing MST for Adobe Acrobat.
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
117
Note
The installation source directory must include the file "AdobeConfig.xml", together with the MSI, CAB, and optional MST to install with the ALM successfully disabled. Without the file, you will receive a "Grace Period Expired/Activation" dialog. This dialog will fail as Adobe abandoned the ALM method in March 2007.

I recommend using the Customization Wizard 8 to create the transforms. Include parameters "REBOOT=Suppress /qb-!" to install with no interaction (but display the MSI progress)and suppress the reboot. Then execute the patch MSP files in series including parameters "REINSTALLMODE=omus REINSTALL=ALL REBOOT=Suppress /qb-!" followed by a reboot to result in a complete install in a single script.
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
3
Note
Having seen the vatrious posts and issues, I thought I would add this "foolproof" method of creating a patched msi which can be installed via AD GPO.

1. Copy the source files from the CD to C:\Adobe\Source

2. Create an admin image from cd - msiexec /a "<CDROM>:\Adobe Acrobat 8 Standard\AcroStan.msi".

3. Put the admin image in C:\Adobe\Admin_Image

4. Download all updates from http://www.adobe.com/support/downloads/product.jsp?product=1&platform=Windows. Download the following updates:
• Adobe Acrobat 8.1 Professional and Standard update - English, French, German, and Japanese
Save this update in C:\Adobe\Update8.1.0
• Adobe Acrobat 8.1.1 Professional and Standard update - multiple languages
Save this update in C:\Adobe\Update8.1.1
• Adobe Acrobat 8.1.2 Professional and Standard update - multiple languages
Save this update in C:\Adobe\Update8.1.2
• Adobe Acrobat 8.1.3 Professional, Standard, and 3D update - multiple languages
Save this update in C:\Adobe\Update8.1.3

5. All the updates will be applied to the admin image just created in C:\Adobe\Admin_Image.

a. Update to 8.1.0
msiexec /a C:\Admin_Image\AcroStan.msi /p C:\Adobe\Update8.1.0\AcrobatUpd810_efgj_incr.msp

b. Update to 8.1.1
msiexec /a C:\Admin_Image\AcroStan.msi p C:\Adobe\Update8.1.1\AcrobatUpd811_all_incr.msp

c. Update to 8.1.2
msiexec /a C:\Admin_Image\AcroStan.msi /p C:\Adobe\Update8.1.2\AcrobatUpd812_all_incr.msp

d. Update to 8.1.3
msiexec /a C:\Admin_Image\AcroStan.msi /p C:\Adobe\Update8.1.3\AcrobatUpd813_all_incr.msp"

6. Once the administrative image has been updated, move the files back into the C:\Adobe\Source directory. Select yes to overwrite any files. This will ensure that all the files needed are for the package are present.

7. Download the Adobe Customization Wizard 8 from the updates link above.

8. Use the Adobe Customization Wizard 8 to create a transform with serial numbers etc.

9. Deploy using GPO
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
3
Note
Having seen the vatrious posts and issues, I thought I would add this "foolproof" method of creating a patched msi which can be installed via AD GPO.

1. Copy the source files from the CD to C:\Adobe\Source

2. Create an admin image from cd - msiexec /a "<CDROM>:\Adobe Acrobat 8 Standard\AcroStan.msi".

3. Put the admin image in C:\Adobe\Admin_Image

4. Download all updates from http://www.adobe.com/support/downloads/product.jsp?product=1&platform=Windows. Download the following updates:
• Adobe Acrobat 8.1 Professional and Standard update - English, French, German, and Japanese
Save this update in C:\Adobe\Update8.1.0
• Adobe Acrobat 8.1.1 Professional and Standard update - multiple languages
Save this update in C:\Adobe\Update8.1.1
• Adobe Acrobat 8.1.2 Professional and Standard update - multiple languages
Save this update in C:\Adobe\Update8.1.2
• Adobe Acrobat 8.1.3 Professional, Standard, and 3D update - multiple languages
Save this update in C:\Adobe\Update8.1.3

5. All the updates will be applied to the admin image just created in C:\Adobe\Admin_Image.

a. Update to 8.1.0
msiexec /a C:\Admin_Image\AcroStan.msi /p C:\Adobe\Update8.1.0\AcrobatUpd810_efgj_incr.msp

b. Update to 8.1.1
msiexec /a C:\Admin_Image\AcroStan.msi p C:\Adobe\Update8.1.1\AcrobatUpd811_all_incr.msp

c. Update to 8.1.2
msiexec /a C:\Admin_Image\AcroStan.msi /p C:\Adobe\Update8.1.2\AcrobatUpd812_all_incr.msp

d. Update to 8.1.3
msiexec /a C:\Admin_Image\AcroStan.msi /p C:\Adobe\Update8.1.3\AcrobatUpd813_all_incr.msp"

6. Once the administrative image has been updated, move the files back into the C:\Adobe\Source directory. Select yes to overwrite any files. This will ensure that all the files needed are for the package are present.

7. Download the Adobe Customization Wizard 8 from the updates link above.

8. Use the Adobe Customization Wizard 8 to create a transform with serial numbers etc.

9. Deploy using GPO
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
2
Note
I created an adm files which disables the addin for Microsoft Office Applications. Because we have user on terminal servers that are not allowed to use adobe acrobat professional.

CLASS USER

CATEGORY "Adobe Acrobat Professional 8.0"

POLICY "Disable Word Addin"
KEYNAME "SOFTWARE\Microsoft\Office\Word\Addins\PDFMaker.OfficeAddin"
EXPLAIN "This settings disables the Adobe Addin for Word"
VALUENAME "LoadBehavior"
VALUEON NUMERIC 0
VALUEOFF NUMERIC 3
END POLICY

POLICY "Disable Excel Addin"
KEYNAME "SOFTWARE\Microsoft\Office\Excel\Addins\PDFMaker.OfficeAddin"
EXPLAIN "This settings disables the Adobe Addin for Excel"
VALUENAME "LoadBehavior"
VALUEON NUMERIC 0
VALUEOFF NUMERIC 3
END POLICY

POLICY "Disable Access Addin"
KEYNAME "SOFTWARE\Microsoft\Office\Access\Addins\PDFMaker.OfficeAddin"
EXPLAIN "This settings disables the Adobe Addin for Access"
VALUENAME "LoadBehavior"
VALUEON NUMERIC 0
VALUEOFF NUMERIC 3
END POLICY

POLICY "Disable Powerpoint Addin"
KEYNAME "SOFTWARE\Microsoft\Office\PowerPoint\Addins\PDFMaker.OfficeAddin"
EXPLAIN "This settings disables the Adobe Addin for PowerPoint"
VALUENAME "LoadBehavior"
VALUEON NUMERIC 0
VALUEOFF NUMERIC 3
END POLICY

POLICY "Disable Outlook Addin"
KEYNAME "SOFTWARE\Microsoft\Office\Outlook\Addins\PDFMaker.OfficeAddin"
EXPLAIN "This settings disables the Adobe Addin for Outlook"
VALUENAME "LoadBehavior"
VALUEON NUMERIC 0
VALUEOFF NUMERIC 3
END POLICY

POLICY "Disable Project Addin"
KEYNAME "SOFTWARE\Microsoft\Office\Project\Addins\PDFMaker.OfficeAddin"
EXPLAIN "This settings disables the Adobe Addin for Project"
VALUENAME "LoadBehavior"
VALUEON NUMERIC 0
VALUEOFF NUMERIC 3
END POLICY

POLICY "Disable Publisher Addin"
KEYNAME "SOFTWARE\Microsoft\Office\Publisher\Addins\PDFMaker.OfficeAddin"
EXPLAIN "This settings disables the Adobe Addin for Publisher"
VALUENAME "LoadBehavior"
VALUEON NUMERIC 0
VALUEOFF NUMERIC 3
END POLICY

POLICY "Disable Visio Addin"
KEYNAME "SOFTWARE\Microsoft\Office\Visio\Addins\PDFMaker.OfficeAddin"
EXPLAIN "This settings disables the Adobe Addin for Visio"
VALUENAME "LoadBehavior"
VALUEON NUMERIC 0
VALUEOFF NUMERIC 3
END POLICY

END CATEGORY
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
1
Note
To have Adobe 8.1.6 installed you will have to have 8.1.3 (AdbeRdr810_en_US.exe) first then add your patch http://www.adobe.com/support/downloads/thankyou.jsp?ftpID=4487&fileID=4191

The patch will only work from 8.1.3 upward.

I have customized the 8.1.3 installation after unpacking the exe using the following command line:
AdbeRdr810_en_US.exe -nos_ne -nos_o"C:\Adobe Reader 8"

Disable all non required entries while customising especially the one that allow users to connect to Adobe website.

Add your property to the mst generated from your earlier customisation.

in order to disable all other entries that allow user to connect to Adobe.com use the follwoing java script (I have picked up on line by searching):
open a notepad, copy and paste the following
-----------------------------------------------------
//HideMenu.js

//Hides "File" on main toolbar
//app.hideMenuItem("File");

//Hides File - Open
app.hideMenuItem("Open");

//Hides File - Attach to email
app.hideMenuItem("AcroSendMail:SendMail");

//Hides Edit - Check Spelling
app.hideMenuItem("Spelling:Spelling");

//Hides Edit - Preferences
app.hideMenuItem("GeneralPrefs");

//Hides View - Menu Bar
app.hideMenuItem("ShowHideMenuBar");

//Hides View - Toolbars
app.hideMenuItem("Toolbars");

//Hides View - Navigation Panels
app.hideMenuItem("Navigation");

//Hides View - Automatically Scroll
app.hideMenuItem("AutoScroll");

//Hides View - Read Out Loud
app.hideMenuItem("ReadAloud");

//Hides "Document" on main toolbar
app.hideMenuItem("Document");

//Hides "Tools" on main toolbar
//app.hideMenuItem("Tools");

//Hides Tools - Object Data
app.hideMenuItem("DataToolsItem");

//Hides Tools - Customize Toolbars
app.hideMenuItem("CustomizeToolbars");

//Hides Help - Beyond Adobe Reader
app.hideMenuItem("GettingStarted");

//Hides Help - How to
app.hideMenuItem("HelpHowTo");

//Help - Online Support
app.hideMenuItem("OnlineSupport");

//Hides Help - Online Support - Knowledge Base
//app.hideMenuItem("KnowledgeBase");

//Hides Help - Online Support - Adobe Support Programs
//app.hideMenuItem("AdobeExpertSupport");

//Hides Help - Online Support - Accessibility Resource Center
//app.hideMenuItem("AccessOnline");

//Hides Help - Online Support - Generate System Report
//app.hideMenuItem("SystemInformation");

//Hides Help - Repair Adobe Reader Installation
app.hideMenuItem("DetectAndRepair");

//Hides Help - Purchase Adobe Acrobat
//app.hideMenuItem("BuyAcro");

//Hides View - Read Out Loud (Great for Terminal Server)
//app.hideMenuItem("ReadLoud");
-------------------------------------------------------

Save the file as Menu.js. Make the file part of your installation and save it to the javascript directory in C:\Program Files\Adobe\Reader 8.0\Reader\Javascripts . Now every time you open Adobe the relevant menu in your menu.js will be disabled.

I have used a wrapper to install the patch
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
0
Note
The following are the codes for the languages. The MST's with these numbers are within the install folder.

Languages=1033;1031;1036
1033=English (United States)

1031=German (Germany)
1036=French (France)

For a french language install. I edited the 1036.mst (french) to include the serial key and custom settings. This was then applied as normal: msiexec.exe /i acrostan.msi TRANSFORMS=1036.mst /qn. This worked perfectly first time when deployed.
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
0
Note

To clarify jawch's entry. If you add 8.1.4 and 8.1.5 before 8.1.6 you will get an error. Simply skip those updates and go straight from 8.1.3 to 8.1.6.

Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
0
Note
We can use properties to set Adobe Acrobat not to take ownership of the default PDF file extension, by leaving Adobe Reader as the default PDF reader.

For version 10.0 & higher use the property LEAVE_PDFOWNERSHIP=YES

YES - prevents the new installation from taking over PDF ownership. 
NO - allows the new install to own opening PDFs. 

For version 11.0 & higher use the property OWNERSHIP_STATE=0.

0: Do not take ownership.
1: Take ownership for the current user. 
2: Take ownership for all existing and new users.
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s):
-1
Note
The registry keys

[HKEY_LOCAL_MACHINE\SOFTWARE\Adobe\Adobe Acrobat\8.0\Language\current]
@="exlang32.deu" & [HKEY_LOCAL_MACHINE\SOFTWARE\Adobe\Adobe Acrobat\8.0\Language\next]
@="exlang32.deu"

didn't work for me, so I changed the value of 'ProductLanguage' to 1031 (German). It can be found in the Direct Editor of Customization Wizard (table 'Property').
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows

Inventory Records (1)

View inventory records anonymously contributed by opt-in users of the K1000 Systems Management Appliance.

Versions

Acrobat Standard

Version

8

Questions & Answers (10)

Questions & Answers related to Adobe Acrobat Standard

0
ANSWERS
2
ANSWERS
2
ANSWERS
2
ANSWERS
3
ANSWERED
4
ANSWERED
3
ANSWERS
8
ANSWERS

Blogs (1)

Blog posts related to Adobe Acrobat Standard

Reviews (0)

Reviews related to Adobe Acrobat Standard

 
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