From 35a7cfeff75b9ae4ae513c7edb0bbe359966be70 Mon Sep 17 00:00:00 2001 From: dyoder Date: Wed, 17 Feb 2021 22:58:38 -0500 Subject: [PATCH] update Adobe Connect download URL --- Install-AdobeConnect.ps1 | 2 +- Stop-Chrome.ps1 | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 Stop-Chrome.ps1 diff --git a/Install-AdobeConnect.ps1 b/Install-AdobeConnect.ps1 index 1333976..45aadfa 100644 --- a/Install-AdobeConnect.ps1 +++ b/Install-AdobeConnect.ps1 @@ -1,5 +1,5 @@ ## Specify the URL to download Adobe Connect from -$URL = 'https://download.adobe.com/pub/connect/updaters/meeting/11_0/ConnectApp11_2020_10_26.msi' +$URL = 'https://download.adobe.com/pub/connect/updaters/meeting/11_0/ConnectApp11_2020_12_21.msi' ## Install Adobe Connect LogMsg "Installing Adobe Connect from ${URL}" diff --git a/Stop-Chrome.ps1 b/Stop-Chrome.ps1 new file mode 100644 index 0000000..311604b --- /dev/null +++ b/Stop-Chrome.ps1 @@ -0,0 +1 @@ +get-process | where { $_.Name -like "chrome" } | stop-process -force \ No newline at end of file