PowerShell/Scripts/check-vpn.ps1

31 lines
661 B
PowerShell
Raw Normal View History

2021-12-02 14:49:17 +01:00
<#
.SYNOPSIS
2022-10-11 20:00:39 +02:00
Checks the VPN connection(s)
2021-12-02 14:49:17 +01:00
.DESCRIPTION
2022-10-11 20:00:39 +02:00
This PowerShell script queries and prints the status of any VPN connection.
2021-12-02 14:49:17 +01:00
.EXAMPLE
PS> ./check-vpn
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
2021-12-02 14:49:17 +01:00
#>
try {
2021-12-07 12:07:23 +01:00
$FoundOne = $false
2022-10-11 20:00:39 +02:00
if ($IsLinux) {
# TODO
} else {
$Connections = (Get-VPNConnection)
foreach($Connection in $Connections) {
"✅ VPN $($Connection.Name) is $($Connection.ConnectionStatus)."
$FoundOne = $true
}
2021-12-02 14:49:17 +01:00
}
2022-10-11 20:00:39 +02:00
if (!$FoundOne) { "⚠️ No VPN connection." }
2022-04-13 12:06:32 +02:00
exit 0 # success
2021-12-02 14:49:17 +01:00
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2021-12-02 14:49:17 +01:00
exit 1
2022-10-11 20:00:39 +02:00
}