Command Detail - P
ps
get-processget-process -ComputerName bigserver gvim*get-process |
where {$_.PeakWorkingSet -gt 1Mb } | select ProcessName,PeakWorkingSetps -ef (see every process on the system)
ps (show just current process)
get-process -pid $PIDps -ejH (print a process tree)
ps -eLf (get info about threads)
ps -U (show particular user)
ps -ef | grep firefox
pwd
Last updated