How to Deploy Zoom via Intune (Win32 App Packaging Guide)
Zoom provides an official MSI installer for enterprise deployment. The main thing to know is that Zoom has two separate installers - one for VDI environments and one for standard desktops. This guide covers the standard desktop MSI. Zoom also updates itself aggressively, so the guide covers both install-time options and ongoing update management.
Download the enterprise MSI
Download the Zoom MSI installer from the Zoom Download Centre:
https://zoom.us/download#client_4meeting
Scroll to Zoom Desktop Client and click the Download dropdown, then select MSI Installer (64-bit). The filename will be something like ZoomInstallerFull.msi.
Wrap with the Content Prep Tool
IntuneWinAppUtil.exe -c "C:\AppSource\Zoom" -s "ZoomInstallerFull.msi" -o "C:\IntunePackages"
Add the app in Intune
- Upload the .intunewin file
- Name: Zoom
- Publisher: Zoom Video Communications, Inc.
Install and uninstall commands
Detection rule
Useful MSI install options
Zoom supports several MSI properties you can append to the install command:
Known gotchas
Zoom installs per-user if launched by a user before the MSI runs
If a user has already installed the consumer version of Zoom (which goes to AppData), the MSI system install and the per-user install can conflict. Use a detection rule that checks the C:\Program Files\Zoom path to confirm the system-level version is what is installed, and consider using a remediation script to remove per-user installs first.
Zoom update prompts appearing for users
If you do not set ZoomAutoUpdate=true at install time, Zoom will prompt users to update manually. Set the property at install time or push a registry key via Intune to enable auto-update after the fact.
Frequently Asked Questions
Use: msiexec /i "ZoomInstallerFull.msi" /qn /norestart ZoomAutoUpdate=true. Always use the MSI installer, not the EXE, to ensure a system-level install in Program Files.
The EXE installer installs Zoom per-user in AppData, making detection unreliable. The MSI installs system-wide in Program Files and is the correct choice for Intune deployment.
Add ZoomAutoUpdate=true to your install command, or push a registry key post-deployment to enable automatic updates without user prompts.
Use a file detection rule checking for Zoom.exe in C:\Program Files\Zoom\bin.