Files
management-scripts/Install-AdobeConnect.ps1
T

10 lines
424 B
PowerShell
Raw Normal View History

2020-11-19 21:24:00 -05:00
## Specify the URL to download Adobe Connect from
2021-04-25 16:33:52 -04:00
$URL = 'https://download.adobe.com/pub/connect/updaters/meeting/11_0/ConnectApp11_2021_3_27.msi'
2020-11-19 17:50:42 -05:00
## Install Adobe Connect
2021-03-15 11:43:41 -04:00
If ( IsURLValid $URL ) {
LogMsg "Installing Adobe Connect from ${URL}"
Try { Start-Process "msiexec.exe" -ArgumentList "/i ${URL} /qn /norestart" -Wait }
Catch { LogErr $_.Exception.Message }
}
Else { LogMsg "URL is not valid: ${URL}" }