Same version as GEA-Engineering image. Two-step install via wrapper script (MSI + enterprise transform, then DC update patch). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
24 lines
920 B
Batchfile
24 lines
920 B
Batchfile
@echo off
|
|
REM Install-AcroReader.cmd - Install Adobe Acrobat Reader DC + DC update patch
|
|
REM
|
|
REM Two-step install: base MSI with enterprise transform, then DC update patch.
|
|
REM Same version as the GEA-Engineering image (specialize pass Orders 22-23).
|
|
REM Files staged by startnet.cmd from enrollment share to C:\PreInstall\installers\adobe\.
|
|
|
|
echo Installing Adobe Acrobat Reader DC...
|
|
msiexec /i "%~dp0AcroRead.msi" TRANSFORMS="%~dp0AcroRead.mst" /quiet /norestart
|
|
if %errorlevel% neq 0 if %errorlevel% neq 3010 (
|
|
echo Acrobat Reader MSI failed with exit code %errorlevel%
|
|
exit /b %errorlevel%
|
|
)
|
|
|
|
echo Applying Adobe Reader DC update patch...
|
|
msiexec /p "%~dp0AcroRdrDCUpd2500120531.msp" /quiet /norestart
|
|
if %errorlevel% neq 0 if %errorlevel% neq 3010 (
|
|
echo Acrobat Reader patch failed with exit code %errorlevel%
|
|
exit /b %errorlevel%
|
|
)
|
|
|
|
echo Adobe Acrobat Reader DC installed successfully.
|
|
exit /b 0
|