-
-
Notifications
You must be signed in to change notification settings - Fork 545
Expand file tree
/
Copy pathcheck-vpn.ps1
More file actions
executable file
·31 lines (30 loc) · 740 Bytes
/
check-vpn.ps1
File metadata and controls
executable file
·31 lines (30 loc) · 740 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<#
.SYNOPSIS
Checks the VPN status
.DESCRIPTION
This PowerShell script queries the status of the VPN connection(s) and prints it.
.EXAMPLE
PS> ./check-vpn.ps1
✅ Internet VPN to NASA L2TP is connected
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
try {
$noVPN = $true
if ($IsLinux) {
# TODO
} else {
$connections = Get-VPNConnection
foreach($connection in $connections) {
Write-Host "✅ Internet VPN to $($connection.Name) is $($connection.ConnectionStatus.ToLower())"
$noVPN = $false
}
}
if ($noVPN) { Write-Host "⚠️ No VPN configured" }
exit 0 # success
} catch {
"⚠️ ERROR: $($Error[0]) (at line $($_.InvocationInfo.ScriptLineNumber))"
exit 1
}