Files
management-scripts/Install-AdobeConnect.ps1
T

10 lines
441 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 ) {
2023-10-05 13:11:38 -04:00
Write-Output "Installing Adobe Connect from ${URL}"
2021-03-15 11:43:41 -04:00
Try { Start-Process "msiexec.exe" -ArgumentList "/i ${URL} /qn /norestart" -Wait }
2023-10-05 13:17:18 -04:00
Catch { Write-Error $_.Exception.Message }
2021-03-15 11:43:41 -04:00
}
2023-10-05 13:11:38 -04:00
Else { Write-Output "URL is not valid: ${URL}" }