PS C:\> Get-Service | ? {$_.Status -eq "Running"} | select -First 2 | fl
PS C:\> Get-ACL -Path HKLM:\System\CurrentControlSet\Services\wuauserv | Format-List
C:\> tasklist /FI "PID eq 1337"
PS C:\> Get-WmiObject Win32_Process -Filter "ProcessId = 1337" | Select-Object Name, ProcessId, CommandLine
PS C:\> get-process -Id 1337
PS C:\> get-service | ? {$_.DisplayName -like 'AMOGUS*'}
PS C:\> wmic service get name, pathname