Windows/PowerShell/Common Tools
From r00tedvw.com wiki
Below are some common tools for Powershell 7 Core with a focus on system administration.
Show open ports
PS /> Get-NetTCPConnection PS /> Get-NetTCPConnection | Where-Object { $_.State -eq 'Listen' }
Process List
PS /> Get-Process PS /> Get-Process | Sort-Object CPU -Descending | Format-Table -Property Name, CPU, Id, MemoryUsage -AutoSize