Utility

https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.utility

Commands

Get-Uptime – Get the TimeSpan since last boot

Get-Uptime
Get-Uptime -Since

Select-Object – Selects objects or object properties

https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/select-object

Select-String – Finds text in strings and files

https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/select-string

Get-WindowsCapability -Online | Select-Object Name | Select-String -Pattern 'SNMP'

Get-Host – Gets an object that represents the current host program

https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/get-host

Get-Host | Select-Object Version