PowerShell

install-adobe-pro-with-powershell

Install Adobe Acrobat Pro via Intune

via GIPHY

Moving on from the hurdles we had to leap to install Adobe Acrobat Reader through Intune the Pro suite has it's own challenges.

Of course you can try the "official method" as per Adobe Documentation.

It may be the Australian internet or that I haven't sacrificed the goat the right way but I've never had any success with deploying via that method. I suspect the Intune CDN struggles on any larger application files.

Powershell Magic to install Adobe

To combat this I've written up some Powershell code using one of my favourite commands Invoke-WebRequest to get the job done direct from Adobe.

This will download the installer, extract the files and run the installer.

You can find the code on my GitHub repo: InstallAdobePro.ps1

The workstations in my current environment receive a prompt about Internet Explorer updates on launch, written in that script is also the registry fix to attend to that. Comment it out if not relevant to you.

Package for Intune

Package up the Win32App as you would normally with Intune and use the below for your Install commands and detection methods

Install command:
powershell.exe -executionpolicy bypass -file InstallAdobePro.ps1
Uninstall command: msiexec /x "{AC76BA86-1033-FFFF-7760-BC15014EA700}" /qn

Path: C:\Program Files \Adobe\Acrobat Reader DC\Reader
File or folder: Acrobat.exe
Detection method: File or folder exists
Associated with a 32-bit app on 64-bit clients: Yes

Clean-up Script

I also wrote a sister script that will check if the downloaded Adobe files are older than 24 hours and if so to purge them to not leave any old data behind.

CleanUp-OldAdobeFiles.ps1