Microsoft/Hyper-V and PowerShell
Powershell 팁 - get process
リュちゃん
2011. 4. 14. 15:07
get-process notepad
get-process notepad |stop-process -whatif
get-process | sort-object workingset -descending | select-object -first 5
get-process notepad |format-table -Property name, starttime
get-process | where-object { $_.starttime } |format-table -Property name, starttime