Add list-network-routes.ps1

This commit is contained in:
Markus Fleschutz
2022-10-25 16:21:16 +02:00
parent face3aa462
commit a835ad6473
3 changed files with 22 additions and 1 deletions

View File

@ -0,0 +1,20 @@
<#
.SYNOPSIS
Lists network routes
.DESCRIPTION
This PowerShell script lists the network routes on the local computer.
.EXAMPLE
PS> ./list-network-routes
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
try {
& route print
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}