This will install (current latest version) of Adobe Acrobat Reader DC.
Update 2025-03-21:
Click to reveal
Click to hide
Updated the cleanup part to be correct.
Here we go:
$tp = "C:\TempPath"
mkdir $tp
$LatestVersion='2400520421'
$Url1 = "https://ardownload2.adobe.com/pub/adobe/acrobat/win/AcrobatDC/2100720091/AcroRdrDCx642100720091_MUI.exe"
$Url2 = "https://ardownload2.adobe.com/pub/adobe/acrobat/win/AcrobatDC/$LatestVersion/AcrobatDCx64Upd$LatestVersion.msp"
$Installer = "AcroRdrDCx642100720091_MUI.exe"
Invoke-WebRequest -Uri $Url1 -OutFile $tp\$Installer
Invoke-WebRequest -Uri $Url2 -OutFile $tp\Update.msp
Start-Process -FilePath $tp\$Installer -ArgumentList "/P Update.msp /QN /NORESTART" -Wait
Start-Sleep -Seconds 300
del $tp\$Installer
del $tp\Update.msp