remove ps1 due to incompatibiltiy

This commit is contained in:
Kyle Hagerty
2021-09-08 11:13:56 -05:00
parent 93d6380818
commit c6caab3e8b

View File

@@ -1,11 +0,0 @@
# 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"