Adobe Reader Silent Install

April 20th, 2006 · 12 Comments · 35,095 views

Adobe Reader (formerly Acrobat Reader) is pretty much required software on every PC these days. This tutorial assumes you’ve already read the initial article “A Guide to Installing Windows Applications Silently” and have followed the setup instructions it contains.

Begin by creating a directory called AdobeReader in your %APPS% folder. Next, go to the Adobe Reader download page to download the Adobe Reader software. You have the option of also downloading ‘Adobe Yahoo! Toolbar’ and ‘Adobe Photoshop Album Starter Edition’. I prefer to just have one install at a time, and don’t have a need for those two packages, so this tutorial will only include the bare Adobe Reader install (uncheck the extra download options). At this writing, the available package is version 7.0.7 for Windows XP, if you’re downloading a different version, some of the file names listed below may need to be adjusted to match what you’re downloading. Save the download to any location you’d like, it doesn’t need to be in your %APPS%\AdobeReader directory (in fact, it’s probably best not to save it there as it won’t actually be needed for the future silent installs).

Once you’ve downloaded the package (mine is called ‘AdbeRdr707_DLM_en_US.exe’), double-click it and it will use the Adobe Download Manager to collect the required pieces from Adobe (you will need an active internet connection). You’ll then see a Fead Optimizer window doing some setup work, and will eventually get a ‘Welcome to Setup for Adobe Reader’ screen. You may be thinking at this point ‘Hey, this isn’t very silent’. You’d be right, because we haven’t gotten that far yet. What we do now is retrieve the files necessary to do the silent install, which weren’t available until this point. You can cancel the installer, we don’t really need to go any further with it, it’s job was simply to get the files for us.

Go to the folder that was just created by the installer (probably C:\Program Files\Adobe\Acrobat 7.0) and inside you’ll see a folder called Setup Files, which contains a folder called RdrBig707. Inside that is a folder called ENU which contains the installation files for Adobe Reader. Copy the files Adobe Reader 7.0.7.msi and Data1.cab to your %APPS%\AdobeReader directory. If you like to keep things clean, at this point you can delete the initial installer file you downloaded, as well as the directories the installer just created, all we need is the two files in your %APPS%\AdobeReader directory.

Now that we have the install files ready, we can create the script. Create a text file1 called Install.bat in your %APPS%\AdobeReader directory. In the text file, place the following:

@ECHO OFF ECHO Installing Acrobat Reader 7 start /wait msiexec /qb- /i "Adobe Reader 7.0.7.msi" copy HKCU.reg %temp%\HKCU.reg /Y start /wait ..\changeHKCU.vbs start /wait ..\ModifyProfile /PROFILE:all /REG:%temp%\HKCU.reg /KEYNAME:TempHive del %temp%\HKCU.reg del "%allusersprofile%\desktop\adobe Reader 7.0.lnk" del "%allusersprofile%\Start Menu\Programs\Startup\Adobe Reader Speed Launch.lnk" exit

Here’s what the script does, you can remove any lines that are not necessary in your situation:

  1. Don’t echo every line to the screen
  2. Echo a description of the purpose of the script
  3. Run the Adobe Reader msi installer in quiet mode
  4. The next four lines enable you to bypass the ‘Please accept this license’ screen that every user would normally get the first time they open the program. To use this you’ll need to create a text file called HKCU.reg in your %APPS%\AdobeReader directory that contains the following code:

    REGEDIT4

    [HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\7.0\AdobeViewer]
    “EULA”=dword:00000001

  5. Delete the Adobe Reader desktop icon
  6. Delete the Adobe Reader Speed Launcher icon from the startup folder (so it doesn’t automatically start every time you login)
  7. Exit from the script

That’s it. You should now have an applicaton distribution directory that contains the following files:

  • Adobe Reader 7.0.7.msi
  • Data1.cab
  • HKCU.reg
  • Install.bat

Now simply launch Install.bat by double-clicking it, or by calling it from another script, and Adobe Reader will silently install on your computer.


  1. sojoe.info/2006/03/27/how-to-create-a-text-file.html [back]

Subscribe to So Joe... Today!

12 responses so far ↓

  • data1.cab

    May 17, 2006 at 4:51 pm

    necesito el archivo data1.cab para el adobereader7.0

  • David Stelzer

    Jun 29, 2006 at 2:49 pm

    This is a nice script to use except for the start /wait ..\changeHKCU.vbs. I don’t have that file and I’m not sure what it does (is it obvious I’m new to this?). If you could let me know what this does or help me out with the file, I would appreciate it.

    Thank you.

  • Joseph Fieber

    Jun 29, 2006 at 3:12 pm

    The beginning of the article mentions one of my earlier posts that explains the ‘infrastructure’ that you’ll need to setup (“A Guide to Installing Windows Applications Silentlyâ€?), which includes the changeHKCU.vbs file. Go to http://sojoe.info/2006/03/16/a-guide-to-installing-windows-applications-silently.html for the details…

  • Frank

    Jul 20, 2006 at 7:21 pm

    Joe, thanks so much for these great instructions. I am using the instructions to create a package for Dell ImageBuilder for students at our university. I don’t need the 4 lines to bypass the license agreement, so I omitted them. I wrapped the 3 files in a ZIP file, then created a self-extracting EXE file which launches install.bat. This is uploaded to ImageBuilder and an image is created successfully. When testing the resulting image, the laptop defaults to a user account named Administrator upon first boot. Since people don’t enjoy having user accounts named Administrator, we are instructing them to create a named user account and log out and log back in using the new account. This all works fine, and Adobe Reader works fine, too, until Reader needs to install an update. When it tries, an error message appears:

    Adobe Reader 7.0.8
    The feature you are trying to use is on a network resource that is unavailable.
    Click OK to try again, or enter an alternate path to a folder containing the installation package ‘Adobe Reader 7.0.7.msi’ in the box below.
    User source:
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\reader7
    (OK) (Cancel) (Browse)

    I can’t log back in as Administrator, because Windows removed the Administrator account once the new named account was created. When I search the entire hard drive for ‘Adobe Reader 7.0.7.msi’ it is not found. When I manually browse to C:\Documents and Settings\Administrator\Local Settings\Temp — no folder called ‘reader7′ exists.

    If I’m not able to resolve this, I’m afraid I won’t be able to use this method. Might you possibly have any ideas? Thanks!

  • Harry Cole

    Aug 11, 2006 at 12:27 pm

    Loved it!! Whoever the license question still pops up. Any idea? And have you got more scripts for other apps installations?

  • Ripprasternode

    Nov 16, 2006 at 9:07 pm

    Thanks for this, it has been a great help.

    The link to “A Guide to Installing Windows Applications Silently” is broken, page has moved here…
    http://sojoe.info/2006/03/16/a-guide-to-installing-windows-applications-silently/

  • Joe

    Nov 16, 2006 at 11:47 pm

    Thanks! Link fixed.

  • Anonymous IT Guy

    Feb 14, 2007 at 12:27 pm

    The 8.0 installer offers easier silent install options. Run it with /? to see them.

  • Joe

    Feb 14, 2007 at 1:28 pm

    You are correct. See my post on how to install version 8 for details (sojoe.info/2006/12/09/a-step-by-step-guide-to-silently-installing-and-configuring-adobe-reader-8/)

  • Max

    Mar 31, 2008 at 5:02 am

    I don’t have the file adobe reader 7.0.7 msi. Therefore I cannot update this program. Is there someplace I can download it? Thanks for any help you can offer.

  • Tobey2k

    Jun 9, 2008 at 8:09 am

    Hey Joe,

    great instructions!!!

    It functions with 7.1.0!!!

    Do you know if there is any possibility to deactivate the update-functionality?

  • Mifas

    Jul 9, 2008 at 11:24 pm

    Use this switch for Acrobat Reader 9
    /sAll /rs /l /msi /qb- /norestart

Leave a Comment