Files
Public/Install_Webex_as_root.ps1
Kyle Hagerty 822f652826 added source
2021-09-08 10:16:48 -05:00

13 lines
602 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
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