add Install-AdobeConnect

update Install-OpenVPN
add Install-Wireguard
This commit is contained in:
2020-11-19 17:50:42 -05:00
parent d58969ef24
commit 93e53848b6
3 changed files with 26 additions and 7 deletions
+9
View File
@@ -0,0 +1,9 @@
. 'C:\Users\dyoder\Emberkom\Data\Projects\development\management-scripts\Tools.ps1'
## Specify the URL to download Adobe Connect from
$URL = 'https://download.adobe.com/pub/connect/updaters/meeting/11_0/ConnectApp11_2020_10_26.msi'
## Install Adobe Connect
LogMsg "Installing Adobe Connect from ${URL}"
Try { Start-Process "msiexec.exe" -ArgumentList "/i ${URL} /qn /norestart" -Wait }
Catch { LogErr $_.Exception.Message }