mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-22 07:53:21 +01: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 replace "--version"
|
||||
CheckFor robocopy "--version"
|
||||
CheckFor route ""
|
||||
CheckFor rsh ""
|
||||
CheckFor rsync "--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 {
|
||||
net user
|
||||
& net user
|
||||
exit 0 # success
|
||||
} catch {
|
||||
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||
|
Loading…
Reference in New Issue
Block a user