Deploy Cisco Webex via Intune | Win32 App Packaging
Cisco Webex is deployed in many enterprise environments alongside or instead of Microsoft Teams. Webex provides an enterprise MSI through Control Hub that supports silent deployment, pre-configuration of the organisation, and SSO. This guide covers the MSI deployment via Intune including the PRESET_ORG_ID flag that automatically connects users to your organisation.
Download the enterprise MSI
The Webex enterprise MSI is available from Webex Control Hub:
https://admin.webex.com → Downloads
Log in to Control Hub, navigate to Downloads, and download the Webex Desktop App for Windows MSI. The filename will be webexapp.msi.
Wrap with the Content Prep Tool
IntuneWinAppUtil.exe -c "C:\AppSource\Webex" -s "webexapp.msi" -o "C:\IntunePackages"
Add the app in Intune
- Upload the .intunewin file
- Name: Cisco Webex
- Publisher: Cisco Systems, Inc.
Install and uninstall commands
Detection rule
Alternatively, use a file detection rule:
Configuring SSO and org pre-configuration
If your organisation uses SSO with Entra ID or another IdP, Webex will automatically redirect users to your identity provider when they sign in — as long as you have SSO configured in Control Hub.
The PRESET_ORG_ID flag in the install command ensures that when a user opens Webex for the first time, it connects to your org rather than showing a generic sign-in screen. Without it, users may see a confusing first-run experience.
If you also want to suppress the desktop shortcut:
msiexec /i "webexapp.msi" /qn /norestart PRESET_ORG_ID=your-org-id DISABLE_DESKTOP_SHORTCUT=1
Known gotchas
Webex installing to per-user AppData on some devices
On devices where a user has previously installed Webex via the consumer EXE, Webex may exist in both AppData (per-user) and Program Files (machine-wide). The MSI install will not remove the per-user version. Deploy a PowerShell pre-script to remove any existing per-user Webex installations before the MSI runs.
Webex auto-updating outside of Intune
Webex has an aggressive built-in updater. If you want to control the version deployed, you can disable auto-updates via the LOCKDOWN=1 MSI property, but this requires you to manage updates manually via supersedence in Intune.
Frequently Asked Questions
Use the enterprise MSI with: msiexec /i "webexapp.msi" /qn /norestart. Download the MSI from admin.webex.com under Downloads. Do not use the standard EXE installer as it prompts for user interaction.
Log in to admin.webex.com, go to Downloads, and download the Webex Desktop App MSI. This is the enterprise installer designed for silent deployment.
Add PRESET_ORG_ID=your-org-id to the install command. Get your Org ID from Control Hub under Account settings. This auto-configures the correct organisation when users first sign in.
Use a file detection rule: check for Webex.exe in C:\Program Files\Cisco Spark or C:\Users\Public\Desktop - but a registry key is more reliable. Check HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall for a Webex entry.