PowerShell/Scripts/check-vpn.ps1
2022-05-10 07:33:18 +02:00

27 lines
618 B
PowerShell
Executable File

<#
.SYNOPSIS
Checks the VPN connections
.DESCRIPTION
This PowerShell script checks the status of all available VPN connections.
.EXAMPLE
PS> ./check-vpn
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
try {
$FoundOne = $false
$Connections = (Get-VPNConnection)
foreach($Connection in $Connections) {
"VPN $($Connection.Name) is $($Connection.ConnectionStatus)."
$FoundOne = $true
}
if (!$FoundOne) { throw "No VPN connection available" }
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}