mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-23 10:28:23 +02:00
Add list-network-routes.ps1
This commit is contained in:
parent
face3aa462
commit
a835ad6473
@ -216,6 +216,7 @@ function ListTools {
|
|||||||
CheckFor regedit "--version"
|
CheckFor regedit "--version"
|
||||||
CheckFor replace "--version"
|
CheckFor replace "--version"
|
||||||
CheckFor robocopy "--version"
|
CheckFor robocopy "--version"
|
||||||
|
CheckFor route ""
|
||||||
CheckFor rsh ""
|
CheckFor rsh ""
|
||||||
CheckFor rsync "--version"
|
CheckFor rsync "--version"
|
||||||
CheckFor rundll32 "--version"
|
CheckFor rundll32 "--version"
|
||||||
|
20
Scripts/list-network-routes.ps1
Normal file
20
Scripts/list-network-routes.ps1
Normal 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
|
||||||
|
}
|
@ -12,7 +12,7 @@
|
|||||||
#>
|
#>
|
||||||
|
|
||||||
try {
|
try {
|
||||||
net user
|
& net user
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
} catch {
|
} catch {
|
||||||
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||||
|
Loading…
Reference in New Issue
Block a user