Files
Public/Install_Webex_as_root.ps1
2021-09-08 10:48:35 -05:00

11 lines
554 B
PowerShell

# Install Webex as root
# Source: https://help.webex.com/en-US/article/nw5p67g/Webex-|-Installation-and-Automatic-Upgrade#Cisco_Reference.dita_de4f9295-316d-4e1c-8f47-329ddfdb984d
$url = "https://binaries.webex.com/WebexTeamsDesktop-Windows-Gold/Webex.msi"
$output = "$PSScriptRoot\Webex.msi"
$start_time = Get-Date
curl.exe -L $url -o $output
Write-Output "Time taken: $((Get-Date).Subtract($start_time).Seconds) second(s)"
cmd.exe /C "msiexec /i $output ACCEPT_EULA=TRUE INSTALL_ROOT='C:\Program Files\Webex' ALLUSERS=1 AUTOSTART_WITH_WINDOWS=false"