add Install-AdobeConnect

update Install-OpenVPN
add Install-Wireguard
This commit is contained in:
2020-11-19 17:50:42 -05:00
parent d58969ef24
commit 93e53848b6
3 changed files with 26 additions and 7 deletions
+9
View File
@@ -0,0 +1,9 @@
. 'C:\Users\dyoder\Emberkom\Data\Projects\development\management-scripts\Tools.ps1'
## Specify the URL to download Adobe Connect from
$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 }
+1 -7
View File
@@ -10,14 +10,8 @@ If ( IsAdmin )
## URL for Windows 7
ElseIf ( (IsWindowsVersion -ge "7.0") -and (IsWindowsVersion -lt "10.0") )
{ $URL = "https://swupdate.openvpn.org/community/releases/openvpn-install-${OpenVPNVersion}-I607-Win7.exe" }
## Set the local filename
$FILE = '{0}{1}' -f (GetTempPath),(Split-Path $URL -Leaf)
## Download installer
$FILE = Download-File -URL $URL -File $FILE
## Install package
Install-Program -Path $FILE -Arguments "/S" -Delete
Install-Program -Path $(Download-File -URL $URL) -Arguments "/S" -Delete
}
Else { LogMsg "Must be an administrator to install OpenVPN" }
+16
View File
@@ -0,0 +1,16 @@
$WireguardVersion = "0.2.3"
## Make sure we have an administrative token
If ( IsAdmin )
{
If ( Is64bit ) { $bitness = "amd64" } Else { $bitness = "x86" }
$URL = "https://download.wireguard.com/windows-client/wireguard-${bitness}-${WireguardVersion}.msi"
## Install package
LogMsg "Installing Wireguard v${WireguardVersion} from ${URL}"
Try { Start-Process "msiexec.exe" -ArgumentList "/i ${URL} /qn /norestart" }
Catch { LogErr $_.Exception.Message }
}
Else { LogMsg "Must be an administrator to install Wireguard" }