Shopfloor preinstall: add Adobe Acrobat Reader DC for all PC types
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>
This commit is contained in:
23
playbook/preinstall/adobe/Install-AcroReader.cmd
Normal file
23
playbook/preinstall/adobe/Install-AcroReader.cmd
Normal file
@@ -0,0 +1,23 @@
|
||||
@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
|
||||
Reference in New Issue
Block a user