# Silent install Adobe Reader DC# https://get.adobe.com/nl/reader/enterprise/# Path for the workdir
$workdir ="c:\installer\"
# Check if work directory exists if not create itIf(Test-Path-Path $workdir -PathTypeContainer){Write-Host"$workdir already exists"-ForegroundColorRed}
ELSE
{New-Item-Path $workdir -ItemType directory }# Download the installer
$source ="http://ardownload.adobe.com/pub/adobe/reader/win/AcrobatDC/1502320053/AcroRdrDC1502320053_en_US.exe"
$destination ="$workdir\adobeDC.exe"Invoke-WebRequest $source -OutFile $destination
# Start the installationStart-Process-FilePath"$workdir\adobeDC.exe"-ArgumentList"/sPB /rs"# Wait XX Seconds for the installation to finishStart-Sleep-s 35# Remove the installer
rm -Force $workdir\adobe*
I made a install script for Adobe Reader DC to do a Silent install.
UPDATED VERSION 2 With auto detect if Invoke-WebRequest exists
Improvements are welcome!
Change the version if needed in the Source URL: http://ardownload.adobe.com/pub/adobe/reader/win/AcrobatDC/1502320053/AcroRdrDC1502320053_en_US.exe
For Windows 7 please change
To
Since Powershell in Windows 7 does not support the Invoke-WebRequest