Zoom Update Failed
Resolution Checklist
- 1 Understand Zoom Update Error Messages
- 2 Manually Download and Install the Latest Version
- 3 Fix Permission and Antivirus Blocks
- 4 Resolve Version Conflicts and Compatibility Issues
- 5 Configure Auto-Update Settings
Zoom Update Failed
If you see “Update failed”, “Unable to install updates”, or Zoom gets stuck on “Updating…”, the issue typically involves insufficient permissions, antivirus interference, or corrupted update files. This guide walks you through resolving update problems on both Windows and macOS.
Step 1: Understand Zoom Update Error Messages
Common Zoom update errors and what they mean:
- “Update failed, please try again”: The download or installation was interrupted. Usually a temporary network or permission issue.
- “Unable to install updates (Error code: 10004)”: Zoom cannot write to the installation directory due to permission restrictions.
- “Unable to install updates (Error code: 10006)”: The downloaded update file is corrupted or incomplete.
- “A newer version is already installed”: A conflict between the installed version and the update package.
- Zoom stuck on “Updating…” with spinning indicator: The update process has hung, often due to a locked file or background process.
If you see any of these errors, do not repeatedly click “Update” — proceed to the troubleshooting steps below.
Step 2: Manually Download and Install the Latest Version
The quickest fix for any update error is to bypass the in-app updater:
- Close Zoom completely — ensure no Zoom processes are running.
- Open your browser and go to zoom.us/download.
- Click Download under Zoom Workplace Desktop Client.
- Run the downloaded installer. It will install over your existing version, preserving your settings.
- Open Zoom and verify the version in Settings → General → scroll to the version number at the bottom.
On macOS, if the installer fails with a permissions error:
sudo installer -pkg ~/Downloads/zoomusInstallerFull.pkg -target /
On Windows, try running the installer as administrator:
- Right-click the downloaded
.exefile. - Select Run as administrator.
- Follow the installation prompts.
Step 3: Fix Permission and Antivirus Blocks
Insufficient permissions (Error 10004):
On Windows:
- Check if Zoom is installed in a location that requires admin rights (e.g.,
C:\Program Files\). - Run the update or installer as administrator.
- Ensure your Windows user account has write access to:
%AppData%\Zoom
%ProgramFiles%\Zoom
- If your computer is managed by an IT department, updates may be restricted via Group Policy. Contact your admin.
On macOS:
- Ensure your user account has admin privileges: System Settings → Users & Groups.
- If Zoom was installed system-wide by an admin, you may need an admin password to update.
- Repair disk permissions if needed:
sudo diskutil resetUserPermissions / $(id -u)
Antivirus interference:
- Temporarily disable real-time scanning in your antivirus software.
- Add Zoom’s installation directory to your antivirus exclusion list:
- Windows:
%AppData%\ZoomandC:\Program Files\Zoom - macOS:
/Applications/zoom.us.app
- Windows:
- Re-enable antivirus protection after the update completes.
Step 4: Resolve Version Conflicts and Compatibility Issues
If you see “A newer version is already installed” or the update reverts to an older version:
- Uninstall the current version completely before installing the new one.
On Windows:
wmic product where "name like 'Zoom%%'" call uninstall /nointeractive
On macOS:
- Drag zoom.us from Applications to the Trash.
- Remove configuration files:
rm -rf ~/Library/Application\ Support/zoom.us
rm -rf ~/Library/Preferences/us.zoom.*
rm -rf ~/Library/Caches/us.zoom.xos
- Install the latest version from zoom.us/download.
Compatibility issues:
- Check your operating system version. Zoom’s latest versions require:
- Windows 10 or later (Windows 7 and 8.1 are no longer supported)
- macOS 12 Monterey or later
- If your OS is too old, you may need to update your operating system before updating Zoom.
- On managed devices, check with your IT admin about approved Zoom versions.
Step 5: Configure Auto-Update Settings
Set up automatic updates to avoid manual update issues in the future:
- Open Zoom and go to Settings → General.
- Under Zoom Updates, enable “Automatically keep Zoom up to date”.
- Choose your update frequency:
- Slow: Receive updates less frequently (more stable, recommended for production environments).
- Fast: Receive updates as soon as they are available (includes latest features and fixes).
For IT administrators managing fleet updates:
- Use Zoom’s MSI/PKG installer for mass deployment.
- Configure update policies via Group Policy (Windows) or MDM profiles (macOS).
- Download specific versions from the Zoom Admin Portal to control which version your organization runs.
If auto-update consistently fails, check your system’s scheduled tasks (Windows) or launch agents (macOS) to ensure the Zoom updater service is running:
On macOS:
launchctl list | grep zoom
On Windows:
schtasks /query /tn "Zoom"
If the updater task is missing, a clean reinstall will recreate it.