get-service
get-service | where-object Status -eq 'Stopped'
get-service | where-object Status -eq 'Stopped' | select-object Name, Status
$data = get-service | where-object Status -eq 'Stopped' | select-object Name, Status
$data
$data | out-file .\services.txt
notepad .\services.txt
$data | export-csv .\services.csv
get-content .\services.csv | more
$PSVersionTable
(get-service).count
get-command -Name SEARCH_TERM
get-verb -Verb Set | format-list
format-list, format-table
get-alias
get-command get-command -Verb Get -Noun DNS get-command -Name FIre -CommandType Function
get-help get-help -Name Get-Command -Detailed man -Name Get-Command -Detailed get-help -Name DNS help get-service help get-service -Examples help get-service -Full
get-member get-service | get-member
start-transcript start-transcript -path .\transcript1.txt -append
stop-transcript
where-object {$_.property -eq 'xxx'}
get-childitem