This is the automated installation of latest Zoom Workplace (Zoom).
Website: https://zoom.com/
Inspired and URL copied from: https://github.com/tylerlurie/PS-Installers
(Verified working).
Update 2025-03-21:
Click to reveal
Click to hide
Updated the cleanup part to be correct.
Here we go:
$tp = "C:\TempPath"
mkdir $tp
$Url = "https://zoom.com/client/latest/ZoomInstallerFull.msi?archType=x64"
$Installer = "ZoomInstallerFull.msi"
Invoke-WebRequest -Uri $Url -OutFile $tp\$Installer
Start-Process -FilePath $tp\$Installer -ArgumentList "/qn" -Wait
Start-Sleep -Seconds 30
del $tp\$Installer