How to Deploy Adobe Acrobat Reader DC via Intune (Win32 Packaging Guide)
Adobe Acrobat Reader DC is a staple in most business environments. Adobe provides an enterprise MSI installer through their Distribution licensing programme. The main complexity is that Reader updates separately from the base install, so this guide also covers how to keep it current after initial deployment.
Download the enterprise MSI
Adobe provides a free enterprise MSI through the Adobe Acrobat Reader Distribution programme. Go to:
https://get.adobe.com/uk/reader/enterprise/
Select Windows, choose your language (English UK), choose Reader DC, and download the offline full installer. This gives you a .msi file, not a stub downloader.
Wrap with the Content Prep Tool
IntuneWinAppUtil.exe -c "C:\AppSource\AcrobatReader" -s "AcroRdrDC.msi" -o "C:\IntunePackages"
Add the app in Intune
- Upload the .intunewin file
- Name: Adobe Acrobat Reader DC
- Publisher: Adobe Inc.
Install and uninstall commands
Detection rule
Handling updates after deployment
Adobe Reader DC releases security patches regularly. The two main approaches:
- Adobe Update Manager - leave the ARM service enabled and let Reader update itself. Simplest option, no ongoing packaging work required.
- Intune supersedence - package each new version and set up supersedence in Intune so the old version is replaced automatically. More work but gives you full control over versions.
For most small businesses, leaving the Adobe Update Manager enabled is the right call. For environments with strict change control, supersedence is the better choice.
Known gotchas
32-bit vs 64-bit
Adobe Reader DC is a 32-bit application even on 64-bit Windows. The install path will be C:\Program Files (x86)\Adobe, not Program Files. Make sure your detection rule uses the correct path.
Protected Mode blocking PDFs on network shares
Adobe Reader DC enables Protected Mode by default, which can block PDFs opened from network shares. If users report PDFs not opening, deploy a registry key via Intune to add the network share to the trusted locations list.
Frequently Asked Questions
Use: msiexec /i "AcroRdrDC.msi" /qn /norestart ALLUSERS=1 EULA_ACCEPT=YES. The EULA_ACCEPT=YES flag suppresses the licence agreement prompt during silent deployment.
Download the enterprise offline MSI from https://get.adobe.com/uk/reader/enterprise/ - do not use the standard web installer as it downloads components at runtime and will fail in Intune.
Adobe Reader DC is a 32-bit application even on 64-bit Windows. It installs to C:\Program Files (x86)\Adobe, not Program Files. Make sure your detection rule uses the correct path.
Either leave the Adobe Update Manager (ARM service) enabled for automatic updates, or deploy new versions via Intune supersedence for full version control.