Updated list-cli-tools.ps1 and list-network-neighbors.ps1

This commit is contained in:
Markus Fleschutz 2024-05-09 11:29:07 +02:00
parent 3b3f8db539
commit af92a2972d
2 changed files with 17 additions and 11 deletions

View File

@ -6,9 +6,9 @@
.EXAMPLE .EXAMPLE
PS> ./list-cli-tools.ps1 PS> ./list-cli-tools.ps1
CLI-Tool Version Location Tool Name Version Installation Path
-------- ------- -------- --------- ------- -----------------
at 10.0.19041.1 C:\WINDOWS\system32\at.exe (31K) 7z 23.01 /usr/bin/7z (38 bytes)
... ...
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
@ -53,7 +53,7 @@ function ListTool([string]$Name, [string]$VersionArg) {
} else { } else {
$Size = 0 $Size = 0
} }
New-Object PSObject -Property @{ 'CLI-Tool'=$Name; Version=$Version; Location="$Path ($(Bytes2String $Size))" } New-Object PSObject -Property @{ 'Tool Name'=$Name; 'Version'=$Version; 'Installation Path'="$Path ($(Bytes2String $Size))" }
} catch { } catch {
return return
} }
@ -70,7 +70,7 @@ function ListTools {
ListTool ar "--version" ListTool ar "--version"
ListTool arch "--version" ListTool arch "--version"
ListTool arecord "--version" ListTool arecord "--version"
ListTool arp "" ListTool arp "--version"
ListTool at "" ListTool at ""
ListTool attrib "" ListTool attrib ""
ListTool auditpol "" ListTool auditpol ""
@ -201,6 +201,7 @@ function ListTools {
ListTool icacls "--version" ListTool icacls "--version"
ListTool iconv "--version" ListTool iconv "--version"
ListTool id "--version" ListTool id "--version"
ListTool ip "help"
ListTool ipfs "--version" ListTool ipfs "--version"
ListTool java "--version" ListTool java "--version"
ListTool jcli "version" ListTool jcli "version"
@ -235,6 +236,7 @@ function ListTools {
ListTool netsh "" ListTool netsh ""
ListTool netstat "" ListTool netstat ""
ListTool nice "--version" ListTool nice "--version"
ListTool nmap "--version"
ListTool nohup "--version" ListTool nohup "--version"
ListTool nroff "--version" ListTool nroff "--version"
ListTool nslookup "" ListTool nslookup ""
@ -328,7 +330,7 @@ function ListTools {
} }
try { try {
ListTools | Format-Table -property @{e='CLI-Tool';width=14},@{e='Version';width=17},@{e='Location';width=90} ListTools | Format-Table -property @{e='Tool Name';width=15},@{e='Version';width=15},@{e='Installation Path';width=90}
exit 0 # success exit 0 # success
} catch { } catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])" "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"

View File

@ -1,6 +1,6 @@
<# <#
.SYNOPSIS .SYNOPSIS
Lists the (cached) network neighborspwd Lists the (cached) network neighbors
.DESCRIPTION .DESCRIPTION
This PowerShell script lists all cached network neighbors of the local computer. This PowerShell script lists all cached network neighbors of the local computer.
.EXAMPLE .EXAMPLE
@ -17,9 +17,13 @@
#> #>
try { try {
if ($IsLinux -or $IsMacOS) { throw "Sorry, currently available for Windows only" } if ($IsLinux) {
& ip neigh
Get-NetNeighbor -includeAllCompartments | Format-Table -property Name,InterfaceAlias,IPAddress,LinkLayerAddress,State -autoSize } elseif ($IsMacOS) {
& ip neigh
} else {
Get-NetNeighbor -includeAllCompartments | Format-Table -property InterfaceAlias,IPAddress,LinkLayerAddress,State -autoSize
}
exit 0 # success exit 0 # success
} catch { } catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])" "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"