PowerShell/Scripts/check-vpn.ps1
2021-12-07 12:07:23 +01:00

27 lines
612 B
PowerShell
Executable File

<#
.SYNOPSIS
Checks the VPN connections
.DESCRIPTION
This 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) {
& "$PSScriptRoot/give-reply.ps1" "VPN $($Connection.Name) is $($Connection.ConnectionStatus)."
$FoundOne = $true
}
if (!$FoundOne) { throw "No VPN connection available" }
exit 0
} catch {
& "$PSScriptRoot/give-reply.ps1" "Sorry: $($Error[0])."
exit 1
}