How to find out application Process ID on Windows 10

Windows 10 find Process ID
Windows 10 find Process ID (Image credit: Future)

On Windows 10, every process from an app or a service has an identification number known as a Process ID (PID). The PID has various uses, but mainly, it exists to identify each process across the system and programs running multiple instances (such as when editing two text files with Notepad).

Although users do not have to worry about the system processes, the ability to determine their specific system number can come in handy in many scenarios. For instance, when you need to debug an app. A program is stuck, and you must terminate the process manually. Or you need to check the system resources that a particular process is using.

Regardless of the reason, Windows 10 includes at least four ways to check the PID for any process running in the system using Task Manager, Resource Monitor, Command Prompt, and PowerShell.

This guide will walk you through the steps to identify the process identification number for an app or service on Windows 10.

How to determine Process ID from Task Manager

To check the Process ID for an app on Windows 10, use these steps:

  1. Open Start.
  2. Search for Task Manager and click the top result to open the app.
  • Quick tip: You can also open the app by right-clicking the Taskbar and selecting the Task Manager option, right-clicking the Start button and selecting the Task Manager option, or using the "Ctrl + Shift + Esc" keyboard shortcut.
  • Click the Details tab.
  • Confirm the app's Process ID in the PID column.

(Image credit: Future)
  1. Click the Services tab.
  2. Confirm the app's Process ID in the PID column.

(Image credit: Future)

Once you complete the steps, you will know the process identification number for services and applications running and suspended on Windows 10.

How to determine Process ID from Resource Monitor

To find the Process ID for an app with the Resource Monitor console on Windows 10, use these steps:

  1. Open Start.
  2. Search for Resource Monitor and click the top result to open the app.
  3. Click the Overview tab.
  4. Confirm the Process ID of apps and services in the PID column.

(Image credit: Future)

After you complete the steps, you will have an overview of the ID for the running and suspended processes.

How to determine Process ID from Command Prompt

To find out the ID of a process with commands on Windows 10, use these steps:

  1. Open Start.
  2. Search for Command Prompt and click the top result to open the terminal.
  3. Type the following command to view the Process ID list and press Enter: tasklist

(Image credit: Future)
  1. Type the following command to view a list of Process IDs for Microsoft Store apps and press Enter: tasklist /apps

(Image credit: Future)
  1. Type the following command to get the ID from the process name and press Enter: tasklist /svc /FI "ImageName eq PROCESS-NAME*"

In the command, make sure to replace PROCESS-NAME with the ".exe" name of the process. The * is a wildcard to match part of the name without having to type the exact name of the process. This example shows the processes for Notepad: tasklist /svc /FI "ImageName eq notepad*"

(Image credit: Future)

Once you complete the steps, the output will display the IDs for the processes running on the device.

How to determine Process ID from PowerShell

To determine the Process ID of an app or service with PowerShell, use these steps:

  1. Open Start.
  2. Search for PowerShell and click the top result to open the terminal.
  3. Type the following command to view the Process ID list and press Enter: Get-Process

(Image credit: Future)
  1. Type the following command to view information (including ID) about a process and press Enter: Get-Process PROCESS-NAME* | Format-List *

In the command, make sure to replace PROCESS-NAME with the ".exe" name of the process. The * is a wildcard to match part of the name without having to type the exact name of the process. This example shows the Notepad Process ID and all the available information about the process: Get-Process notepad* | Format-List *

(Image credit: Future)
  1. Type the following command to determine the ID and owner of the process and press Enter: Get-Process PROCESS-NAME* -IncludeUserName

In the command, make sure to replace PROCESS-NAME with the ".exe" name of the process. The * is a wildcard to match part of the name without having to type the exact name of the process. This example shows the processes for Notepad: Get-Process notepad* -IncludeUserName

(Image credit: Future)

After you complete the steps, the PowerShell output will list the Process ID along with other information about the app or service.

More resources

For more helpful articles, coverage, and answers to common questions about Windows 10, visit the following resources:

Mauro Huculak

Mauro Huculak is technical writer for WindowsCentral.com. His primary focus is to write comprehensive how-tos to help users get the most out of Windows 10 and its many related technologies. He has an IT background with professional certifications from Microsoft, Cisco, and CompTIA, and he's a recognized member of the Microsoft MVP community.