Jump to content

Recommended Posts

Posted

Good day! Im planning to make a batch file that will install adobe reader 7.... Can somebody help me out what's the correct format / parameters for this application? Thank you very much!


Posted

I'm sure you can find a thorough description of this process by searching the forum, but the short answer (off the top of my head) is that you first need to unpack the downloaded installer by running it, copying the installer files out of %PROGRAMFILES%\Adobe\Reader\Setup, existing the downloaded installer, then using standard Windows Installer switches on the .msi installer. In my case, my installation command looks like this:

msiexec.exe /package "Adobe Reader 7.0.8.msi" /quiet /norestart ALLUSERS=2

Like I said, though, searc the forums and you can get much more detailed information, including links to pre-packaged silent installers.

Posted

Here's a portion of my runonceex file which you might be able to use for your batch file:

REG ADD %KEY%\001 /VE /D "Adobe Acrobat Reader 7.05" /f
REG ADD %KEY%\001 /V 1 /D "%CDROM%:\APPS\ADBRDR7\ADBRDR7.msi /qn EULA_ACCEPT=YES" /f
REG ADD %KEY%\001 /V 2 /D "msiexec /p %CDROM%:\APPS\ADBRDR7\Upd705.msp /qn REINSTALLMODE=omus REINSTALL=ALL" /f
REG ADD %KEY%\001 /V 3 /D "REGEDIT /S %CDROM%:\APPS\ADBRDR7\AcRdr7.reg" /f

first line runs the msi file for installing acrobat reader 7. you can use msiexec as nitro322 suggested to run it.

2nd line installs the update to 7.0.5 (I didn't want to download the full one so I just downloaded the update)

last line is just for applying the registry tweaks i wanted

Posted (edited)

This is what I use for basic installation.

START /W MSIEXEC /I "Adobe Reader 7.0.8.MSI" /QB!- EULA_ACCEPT=YES

:)

Edited by totoymola

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...