Last active
February 3, 2022 19:53
-
-
Save wise-io/ec84b50a6a840c03b57441f24bee3000 to your computer and use it in GitHub Desktop.
Silently Installs the Latest Version of Zoom
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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