Skip to content

Instantly share code, notes, and snippets.

@wise-io
Last active February 3, 2022 19:53
Show Gist options
  • Save wise-io/ec84b50a6a840c03b57441f24bee3000 to your computer and use it in GitHub Desktop.
Save wise-io/ec84b50a6a840c03b57441f24bee3000 to your computer and use it in GitHub Desktop.
Silently Installs the Latest Version of Zoom
# Installs Zoom Meetings
$Installer = "$env:temp\ZoomInstallerFull.msi"
$DownloadURL = "https://www.zoom.us/client/latest/ZoomInstallerFull.msi"
try {
# Download Zoom Meetings
Invoke-WebRequest -Uri $DownloadURL -OutFile $Installer
# Install Zoom Meetings
msiexec.exe /i $Installer ALLUSERS=1 /quiet /qn /norestart ZoomAutoUpdate="true"
} catch { throw $Error }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment