12 lines
446 B
PowerShell
12 lines
446 B
PowerShell
# Install Webex as root
|
|
|
|
powershell.exe -setexecutionpolicy bypass
|
|
|
|
$url = "https://binaries.webex.com/WebexTeamsDesktop-Windows-Gold/Webex.msi"
|
|
$output = "$PSScriptRoot\Webex.msi"
|
|
$start_time = Get-Date
|
|
|
|
Invoke-WebRequest -Uri $url -OutFile $output
|
|
Write-Output "Time taken: $((Get-Date).Subtract($start_time).Seconds) second(s)"
|
|
|
|
msiexec /i $output /quiet ACCEPT_EULA=TRUE INSTALL_ROOT="C:\Program Files" ALLUSERS=1 AUTOSTART_WITH_WINDOWS=false |