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

@ -216,6 +216,7 @@ function ListTools {
CheckFor regedit "--version"
CheckFor replace "--version"
CheckFor robocopy "--version"
CheckFor route ""
CheckFor rsh ""
CheckFor rsync "--version"
CheckFor rundll32 "--version"

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
}

View File

@ -12,7 +12,7 @@
#>
try {
net user
& net user
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"