Core Commands

# THE most important - explore any object
Get-Process | Get-Member  # See all properties and methods
Get-Command *process*     # Search by keyword
Get-Command -Verb Get     # Find all Get- commands
Get-Command -Noun Service # Find all service commands
# Get help
Get-Help Get-Process -Examples
Get-Help Get-Process -Full
 ConvertTo-Json
# $_ - special variable current object
# $_ = the current process object being examined
Get-Process | Where-Object {$_.CPU -gt 10}

Backlinks