Files
management-scripts/Install-AdobeConnect.ps1
T

8 lines
344 B
PowerShell
Raw Normal View History

2020-11-19 21:24:00 -05:00
## Specify the URL to download Adobe Connect from
2020-11-19 17:50:42 -05:00
$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 }