Intune App Packaging

How to Deploy Zoom via Intune (Win32 App Packaging Guide)

Published 17 March 2026 · 6 min read

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.

Contents
  1. Download the enterprise MSI
  2. Wrap with the Content Prep Tool
  3. Add the app in Intune
  4. Install and uninstall commands
  5. Detection rule
  6. Useful MSI install options
  7. Known gotchas

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.

⚠️
Do not use the EXE installer
Zoom provides both an EXE and MSI download. Always use the MSI for Intune deployment. The EXE installs per-user in AppData, which makes detection unreliable and prevents system-level deployment.

Wrap with the Content Prep Tool

IntuneWinAppUtil.exe -c "C:\AppSource\Zoom" -s "ZoomInstallerFull.msi" -o "C:\IntunePackages"

Add the app in Intune

Intune Admin Centre → Apps → Windows → + Add → Windows app (Win32)
  1. Upload the .intunewin file
  2. Name: Zoom
  3. Publisher: Zoom Video Communications, Inc.

Install and uninstall commands

⚙️
Program settings
[]
Install commandZoomAutoUpdate=true keeps Zoom current after initial deploy
msiexec /i "ZoomInstallerFull.msi" /qn /norestart ZoomAutoUpdate=true
Uninstall commandYou can also use the product code instead of the MSI filename
msiexec /x "ZoomInstallerFull.msi" /qn /norestart
Install behaviourInstalls to Program Files for all users
System
Device restart behaviour
No specific action

Detection rule

🔍
File detection rule
[]
Rule type
File
Path
C:\Program Files\Zoom\bin
File or folder name
Zoom.exe
Detection method
File or folder exists
💡
Test your detection rule first
Before deploying to users, install the app manually on a test device and verify the detection rule matches. Run the detection script or check the file path exists before assigning to a group.

Useful MSI install options

Zoom supports several MSI properties you can append to the install command:

🔧
Useful MSI properties
[]
ZoomAutoUpdate=true
Enables automatic updates after install
DisableDesktopShortcut=true
Prevents a desktop shortcut being created
DisableStartMenuShortcut=true
Prevents Start Menu shortcut - not usually recommended
NoRemoveDesktopShortcut=false
Allows removal of the desktop shortcut
LoginType=0
SSO login (set to 1 for work email, 2 for SSO only)

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.

Installer typeMSI (enterprise)
Silent installYes - /qn /norestart
Install pathC:\Program Files\Zoom
Auto-updatesZoomAutoUpdate=true at install time
Reboot requiredNo

Frequently Asked Questions

Q: How do I deploy Zoom silently via Intune?

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.

Q: What is the difference between the Zoom MSI and EXE installer?

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.

Q: How do I stop Zoom from prompting users to update?

Add ZoomAutoUpdate=true to your install command, or push a registry key post-deployment to enable automatic updates without user prompts.

Q: How do I detect Zoom in Intune?

Use a file detection rule checking for Zoom.exe in C:\Program Files\Zoom\bin.

// need intune set up properly?
Fixed-price Intune setup for UK businesses

I set up Intune for UK small businesses at a fixed price - app deployment, compliance policies, Conditional Access, and full documentation handed over at the end.

View Packages
More App Packaging Guides
Deploy Microsoft Teams via Intune Deploy Slack via Intune Deploy Google Chrome via Intune
#intune #app-packaging #win32 #endpoint-management