- This topic is empty.
- Post
-
- January 1, 2025 at 7:20 am
Weekend WikiKeymasterTo install the Zoom Desktop Client using Microsoft Intune, you can use the.msi
installer provided by Zoom or the.exe
installer by packaging it as a Win32 app. Here’s a step-by-step guide:
Option 1: Deploy Zoom Using the MSI Installer (Simplest Method)
Step 1: Download the MSI Installer
- Visit the Zoom Download Center.
- Download the Zoom MSI Installer for Windows.
Step 2: Add the MSI to Microsoft Intune
- Sign in to Microsoft Intune:
- Go to the Intune Admin Center: https://endpoint.microsoft.com.
- Navigate to the Apps Section:
- Go to Apps > All apps > Add.
- Choose the App Type:
- Under App type, select Line-of-business app.
- Upload the MSI File:
- Select the downloaded
.msi
file. - Intune will automatically extract app metadata like the app name, publisher, and version.
- Select the downloaded
- Configure App Information:
- Review and adjust the following fields:
- Name: Zoom Desktop Client.
- Publisher: Zoom Video Communications.
- Description: Add a brief description (e.g., “Zoom for virtual meetings and collaboration”).
- Category: Optional (e.g., “Productivity”).
- Information URL: Add Zoom’s URL if needed.
- Review and adjust the following fields:
- Assign the App:
- Under Assignments, assign the app to the appropriate user or device groups.
- Choose:
- Required: The app will install automatically.
- Available for enrolled devices: Users can install it from the Company Portal app.
- Save and Deploy:
- Click Add to start deploying the app.
Option 2: Deploy Zoom Using the EXE Installer as a Win32 App
If you prefer using the
.exe
installer, you must convert it into a Win32 app package.Step 1: Download the EXE Installer
- Visit the Zoom Download Center.
- Download the Zoom Installer (.exe).
Step 2: Convert the EXE to Intune Win32 Format
- Download the Microsoft Win32 Content Prep Tool:
- Download the tool from the GitHub repository.
- Prepare the EXE for Deployment:
- Place the Zoom
.exe
file in a folder (e.g.,C:\ZoomInstaller
). - Open a Command Prompt and run:
IntuneWinAppUtil.exe -c C:\ZoomInstaller -s ZoomInstaller.exe -o C:\OutputFolder
- This generates a
.intunewin
file in the specified output folder.
- Place the Zoom
Step 3: Add the Win32 App to Intune
- Go to Apps > All apps > Add.
- Select App type: Win32 app.
- Upload the
.intunewin
file generated earlier. - Specify Install and Uninstall Commands:
- Install command:
ZoomInstaller.exe /quiet
- Uninstall command:
msiexec /x {PackageCode} /quiet
(Replace
{PackageCode}
with the package code of Zoom. You can extract this from the registry after installation.)
- Install command:
- Configure the app’s name, description, and assignments as in the MSI method.
Step 4: Monitor Deployment
- Check Deployment Status:
- Go to Apps > Monitor > Device Install Status.
- Verify that Zoom is successfully deployed to targeted devices.
- Verify on Client Devices:
- On a managed device, check if the Zoom client is installed.
- Open Company Portal (if deployed as “Available”) and look for Zoom.
Optional Configuration
You can preconfigure Zoom settings by using deployment switches or group policies.
- For example:
- Disable auto-update:
ZoomInstaller.exe /quiet /norestart ZConfig="nogoogleupdate=1"
- Disable auto-update:
- Refer to the Zoom MSI/EXE deployment documentation for available options.
With these methods, you can seamlessly deploy Zoom to your managed devices using Intune. Let me know if you need further assistance!
- You must be logged in to reply to this topic.