IPB

Google Frontpage Forums Unattended CD/DVD Guide

> Unattended CD/DVD Guide Homepage · MSFN Forum Rules

Welcome to the Applications Installs forum. Make sure you read the forum rules before you start posting.

Links/Requests to warez and/or any illegal material (porn, cracks, serials, etc..) will not be tolerated. Discussion of circumventing WGA/activation/timebombs/keygens or any other illegal activity will also not be tolerated.

We try our best to keep this forum clean of illegal content. If you see any illegal activity use the "report" button you find in every post to report the specific post to the moderators. If you ignore any of the rules you will be banned without notice.

Read Forum Rules

 
Reply to this topicStart new topic
> Unattended Adobe Reader 9
hannubys
post Jul 3 2008, 09:42 PM
Post #1


Am I Not Merciful
****

Group: Members
Posts: 564
Joined: 20-January 08
From: Canada
Member No.: 172411
OS: Vista Business x64
Country Flag


For more information about the commande line option, type: AdbeRdr90_en_US.exe /? You'll get the following command:

/sAll Silent Mode for product
/sPB Silent Mode with Progress Bar for product
/rs Reboot Suppress
/rps Reboot Prompt Suppress
/ini "PATH" Alternative initialization file
/sl "LANG_ID" Set Language; LANG_ID - Code in decimal digits
/l Enable Error Logging
/msi[Command line] Parameters for MSIEXEC


When you launch the .exe file it will extract the MSI in this location

Application Data\Adobe\Reader 9.0\Setup Files\READER9
Go to the top of the page
 
+Quote Post
kyor
post Jul 4 2008, 02:52 AM
Post #2


Junior
*

Group: Members
Posts: 85
Joined: 11-October 04
From: NRW
Member No.: 33407
OS: XP Pro x86
Country Flag


thanks it works rolleyes.gif
Go to the top of the page
 
+Quote Post
akoop
post Aug 7 2008, 06:26 PM
Post #3





Group: Members
Posts: 3
Joined: 7-August 08
Member No.: 204442
OS: XP Pro x86
Country Flag


When I run the AdbeRdr90_en_US.exe /? command I do not get the list of options but rather it starts to run the install GUI. Why? Are there different versions of the AdbeRdr90_en_US.exe file?

Thanks for any help you can give me
Go to the top of the page
 
+Quote Post
blinkdt
post Aug 10 2008, 01:11 AM
Post #4


Somewhat Knowledgeable
Group Icon

Group: Supreme Sponsors
Posts: 586
Joined: 30-September 03
From: Fox Valley, WI
Member No.: 7533
OS: Vista Business x86
Country Flag


Some folks over at the Adobe forum note that you can get the Reader 9 installer sans Adobe.com and Adobe Air HERE. Download the AdbeRdr90_en_US_Std.exe installer. Here's my AutoIt script to install unattendedly, arrange icons, get rid of the EULA nag, and remove "speed launcher" from Run:
CODE
RunWait ( @ScriptDir & '\AdbeRdr90_en_US_Std.exe /sPB /rs')
FileDelete( @ProgramsCommonDir & "\Adobe Reader*.lnk")
FileDelete( @DesktopCommonDir & "\Adobe Reader*.lnk")
FileCreateShortcut(@ProgramFilesDir & "\Adobe\Reader 9.0\Reader\AcroRd32.exe", @ProgramsCommonDir & "\Accessories\Adobe Reader 9.lnk")
RegWrite('HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\9.0\AdobeViewer', 'TrustedMode', 'REG_DWORD', '00000000')
RegWrite('HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\9.0\AdobeViewer', 'EULA', 'REG_DWORD', '00000001')
RegWrite('HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\9.0\AdobeViewer', 'Launched', 'REG_DWORD', '00000001')
RegWrite('HKEY_LOCAL_MACHINE\Software\Adobe\Acrobat Reader\9.0\AdobeViewer', 'EULA', 'REG_DWORD', '00000001')
RegWrite('HKEY_LOCAL_MACHINE\Software\Adobe\Acrobat Reader\9.0\AdobeViewer', 'Launched', 'REG_DWORD', '00000001')
RegDelete('HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run', 'Adobe Reader Speed Launcher')

Edited for typos.

This post has been edited by blinkdt: Aug 10 2008, 09:31 PM
Go to the top of the page
 
+Quote Post
akoop
post Aug 11 2008, 08:38 AM
Post #5





Group: Members
Posts: 3
Joined: 7-August 08
Member No.: 204442
OS: XP Pro x86
Country Flag


That is the location I got the install file from, but I am still unable to run it with the /? switch.
I am using the AdbeRdr90_en_US.exe file, should I be using one of the others?
Go to the top of the page
 
+Quote Post
cluberti
post Aug 11 2008, 01:05 PM
Post #6


Gustatus Similis Pullus
Group Icon

Group: Supervisor
Posts: 6527
Joined: 9-September 01
From: United States
Member No.: 311
OS: Vista Ultimate x64
Country Flag


Honestly, I think this is the best way to deploy Acrobat Reader 9 silently, and without unnecessary components.
Go to the top of the page
 
+Quote Post
blinkdt
post Aug 12 2008, 12:33 AM
Post #7


Somewhat Knowledgeable
Group Icon

Group: Supreme Sponsors
Posts: 586
Joined: 30-September 03
From: Fox Valley, WI
Member No.: 7533
OS: Vista Business x86
Country Flag


Nice find, Cluberti, I might add that reg tweak to disable the updater.

@akoop: you need to run the installer with the /? switch and LET IT RUN. The program will not install. Running C:\Users\MeMeMe\Desktop\AdbeRdr90_en_US_Std.exe /?, for example, will run "Adobe Reader 9 - Setup" but end with a simple Window listing all of the setup switches available, as stated by hannubys.
Go to the top of the page
 
+Quote Post
akoop
post Aug 12 2008, 06:29 AM
Post #8





Group: Members
Posts: 3
Joined: 7-August 08
Member No.: 204442
OS: XP Pro x86
Country Flag


I will give it a try. I didn't realize that the GUI would open and run without actually installing the app.

Thanks for the info.
Go to the top of the page
 
+Quote Post
blinkdt
post Aug 13 2008, 12:26 AM
Post #9


Somewhat Knowledgeable
Group Icon

Group: Supreme Sponsors
Posts: 586
Joined: 30-September 03
From: Fox Valley, WI
Member No.: 7533
OS: Vista Business x86
Country Flag


No problem.
QUOTE
I am using the AdbeRdr90_en_US.exe file, should I be using one of the others?
In my opinion, yes, look for AdbeRdr90_en_US_Std.exe as it does not include Adobe.com and Air.
Go to the top of the page
 
+Quote Post
hannubys
post Aug 18 2008, 07:58 PM
Post #10


Am I Not Merciful
****

Group: Members
Posts: 564
Joined: 20-January 08
From: Canada
Member No.: 172411
OS: Vista Business x64
Country Flag


QUOTE (cluberti @ Aug 11 2008, 03:05 PM) *
Honestly, I think this is the best way to deploy Acrobat Reader 9 silently, and without unnecessary components.

Nice!
Go to the top of the page
 
+Quote Post
aschwartz
post Aug 19 2008, 03:00 PM
Post #11


Newbie


Group: Members
Posts: 13
Joined: 14-August 08
Member No.: 205421
OS: XP Pro x86
Country Flag


I used Cluberti's version, and it worked perfectly.
Go to the top of the page
 
+Quote Post

Google Frontpage Forums Unattended CD/DVD Guide

Reply to this topicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 



Lo-Fi Version Time is now: 7th January 2009 - 10:23 PM
All trademarks mentioned on this page are the property of their respective owners
MSFN is not affiliated with Microsoft
Copyright © 2001-2008 msfn.org
Privacy Policy