Advertisement
PC_Aide

Install Adobe Acrobat Reader 2019.ps1

Jan 5th, 2019
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # SRC :
  2. # https://gist.github.com/kurokikaze/350fe1713591641b3b42
  3. # https://gist.github.com/timothywarner/5de320a3c648bd9346af8cdbd4db8d14
  4. # Prerequisite PowerShell >= 3
  5. # O/P :
  6.  
  7. # Install silent
  8. $Path = $env:TEMP; $Installer = 'AcroRdrDC1901020064_en_US.exe'; Invoke-WebRequest -Uri 'Invoke-WebRequest "https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020064/AcroRdrDC1901020064_en_US.exe' -OutFile $Path\$Installer; Start-Process -FilePath $Path\$Installer -Args '/silent /install' -Verb RunAs -Wait; Remove-Item -Path $Path\$Installer
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement