September 2012
Intermediate to advanced
1680 pages
88h 3m
English
As discussed, Task Manager enables you to quickly see information about and interact with processes and tasks. Here are some ways to go about similar tasks with Windows PowerShell.
The Get-Process cmdlet returns running processes on the target computer (local or remote).
The Get-Process cmdlet returns running processes on a local or remote computer.
A basic execution (without any parameters) of the command returns all the running processes on the local computer. You can also specify process using the name or PID. As with any PowerShell commands, you can pass a process object through the pipeline to Get-Process using the identity value.
By default, Get-Process returns a process object that ...
Read now
Unlock full access