Get-Process

Description

Gets the processes that are running on the local computer.

Command
Get-Process
Examples
Get all running processes
Get-Process
Get a specific process by name
Get-Process -Name 'powershell'
Get a process by ID and format the output as a list
Get-Process -Id 1234 | Format-List *
Parameters
Parameter Type Required Description
[-Name <String[]>] string No Specifies one or more process names.
[-Id <Int32[]>] string No Specifies one or more process IDs.
Command Info
Category: Process Management
Type: Powershell
Views: 11
Status: Active
Tags
powershell process task monitoring