From 94425a4900c546a9d332974bfa1ee18f342d777a Mon Sep 17 00:00:00 2001 From: Kyle Hagerty Date: Wed, 8 Sep 2021 09:34:46 -0500 Subject: [PATCH] add script --- Install_Webex_as_root.ps1 | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Install_Webex_as_root.ps1 diff --git a/Install_Webex_as_root.ps1 b/Install_Webex_as_root.ps1 new file mode 100644 index 0000000..d2865d3 --- /dev/null +++ b/Install_Webex_as_root.ps1 @@ -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 \ No newline at end of file