Files
management-scripts/Install-AdobeConnect.ps1

10 lines
441 B
PowerShell

## Specify the URL to download Adobe Connect from
$URL = 'https://download.adobe.com/pub/connect/updaters/meeting/11_0/ConnectApp11_2021_3_27.msi'
## Install Adobe Connect
If ( IsURLValid $URL ) {
Write-Output "Installing Adobe Connect from ${URL}"
Try { Start-Process "msiexec.exe" -ArgumentList "/i ${URL} /qn /norestart" -Wait }
Catch { Write-Error $_.Exception.Message }
}
Else { Write-Output "URL is not valid: ${URL}" }