Skip to content

Instantly share code, notes, and snippets.

@mark05e
Last active January 15, 2025 02:37
Show Gist options
  • Save mark05e/d9995f9208783b64e727968b94731d14 to your computer and use it in GitHub Desktop.
Save mark05e/d9995f9208783b64e727968b94731d14 to your computer and use it in GitHub Desktop.
#ref: http://eddiejackson.net/wp/?p=23710
# https://www.adobe.com/devnet-docs/acrobatetk/tools/AdminGuide/cmdline.html#msi-support
# https://www.adobe.com/devnet-docs/acrobatetk/tools/ReleaseNotesDC/index.html#id4
# https://www.itninja.com/blog/view/how-to-deploy-adobe-reader-xi-11-0-02-through-gpo
# https://www.itninja.com/question/best-way-to-install-adobe-reader-11-0-11-msp-file
# Variables
$WebFile = "https://ardownload2.adobe.com/pub/adobe/acrobat/win/Acrobat2017/1701130197/Acrobat2017Upd1701130197.msp"
$PPath = "C:\TempPath\AdobeAcrobat2017"
# Create the folder anyway
New-Item -ItemType "directory" -Path $PPath | Out-Null
# Get the filename
$ProcName = Split-Path $WebFile -leaf
# Download the file
(New-Object System.Net.WebClient).DownloadFile($WebFile,"$PPath\$ProcName")
# Run the installer
Start-Process ("$PPath\$ProcName")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment