add script
This commit is contained in:
10
Install_Webex_as_root.ps1
Normal file
10
Install_Webex_as_root.ps1
Normal file
@@ -0,0 +1,10 @@
|
||||
# Install Webex as root
|
||||
|
||||
$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
|
||||
Reference in New Issue
Block a user