Files
management-scripts/Install-Wireguard.ps1
T

16 lines
544 B
PowerShell
Raw Normal View History

2020-11-19 17:50:42 -05:00
$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" }