(By Adobe)
To automatically accept Adobe Reader EULA you need to add two keys in HKCU.
Be sure that key EULA=1 is added under
HKCU\Software\Adobe\Acrobat Reader\11.0\AdobeViewerBe sure that key EULAAcceptedForBrowser=1 is added under
HKCU\Software\Adobe\Adobe Acrobat\11.0\AdobeViewer
So one key is added under Adobe Acrobat Reader section and second key goes under Adobe Adobe Acrobat section
Two different keys in two registry sections!
Some ways to do this:
You can add this command to current user log on script to automatically accept EULA
reg add «HKCU\Software\Adobe\Acrobat Reader\11.0\AdobeViewer» ^/v EULA /t REG_DWORD /d 1 /f reg add «HKCU\Software\Adobe\Adobe Acrobat\11.0\AdobeViewer» ^/v EULAAcceptedForBrowser /t REG_DWORD /d 1 /f
You can also accept EULA when you make new installation:
msiexec /i «AdbeRdr11000_en_US.msi» EULA_ACCEPT=YES /qn
Or pass switches to exe file
«AdbeRdr11000_en_US.exe» /msi /qn /norestart EULA_ACCEPT=YES