Installing Zoom on Windows Using Powershell JumpCloud Commands

Another quick command based on my previous ones for installing Zoom on Windows using Powershell. This one is a bit hit and miss but it does run. Im working on that bit.

As usual run this at your own risk.


$LocalTempDir = $env:TEMP; $ZoomInstaller = "ZoomInstaller.exe"; (new-object System.Net.WebClient).DownloadFile('https://cdn.zoom.us/prod/5.6.7.1016/ZoomInstaller.exe', "$LocalTempDir\$ZoomInstaller"); & "$LocalTempDir\$ZoomInstaller" /silent /install; $Process2Monitor = "ZoomInstaller"; Do { $ProcessesFound = Get-Process | ?{$Process2Monitor -contains $_.Name} | Select-Object -ExpandProperty Name; If ($ProcessesFound) { "Still running: $($ProcessesFound -join ', ')" | Write-Host; Start-Sleep -Seconds 2 } else { rm "$LocalTempDir\$ZoomInstaller" -ErrorAction SilentlyContinue -Verbose } } Until (!$ProcessesFound)

Leave a Comment