[Windows 10] Ways To Find the Process ID of any Application

Windows Process ID ways Techhyme

In computing, the process identifier (a.k.a. process ID or PID) is a number used by most operating system kernels—such as those of Unix, macOS and Windows — to uniquely identify an active process.

This PID number may be used as a parameter in various function calls, allowing processes to be manipulated, such as adjusting the process’s priority or killing it altogether.

On the Windows family of OS, one can get the current process’s ID using the GetCurrentProcessId() function of the Windows API, and ID of other processes using GetProcessId().

Knowing an application’s PID helps you to identify programs running multiple instances, such as when editing two different files using the same app.

Check the top ways to find out the process ID for Windows operating system.

  1. Using Task Manager
  2. Using Resource Monitor
  3. Using Command Prompt
  4. Using Windows PowerShell

1. Using Task Manager

Task Manager, previously known as Windows Task Manager, is a windows utility, system monitor, and startup manager included with Microsoft Windows systems.

To identify Process ID with Task manager, open START menu and search for Task Manager.

Navigate to Details tab and confirm the process ID of the application in the PID column.

Process ID Windows 10 Techhyme

Navigate to Services tab, confirm the Process ID of the service in PID column.

Process ID Windows 10 Techhyme

2. Using Resource Monitor

You can also find the process ID using the resource monitor application that displays information about the use of computer hardware and software resources in real-time.

Open Start menu and search Resource Monitor, the navigate to CPU tab and confirm the process ID of the application and service in the PID column.

Process ID Windows 10 Techhyme

3. Using Command Prompt

To find out the process ID using command prompt, type the following command:

Command: tasklist

Process ID Windows 10 Techhyme

If you want to filter out the output for Microsoft Store and Applications, then the command is “tasklist /apps

Process ID Windows 10 Techhyme

In case if you want to find out the Process ID of a particular application, then the command is:

Command: tasklist /svc /FI “ImageName eq notepad”

Process ID Windows 10 Techhyme

4. Using Windows PowerShell

To find the process ID using Windows PowerShell, the command is “Get-Process” which gets the file version information of a process.

Process ID Windows 10 Techhyme

To find the process ID of a particular application such as notepad then the command is:

Command: Get-Process notepad* | Format-List *

Process ID Windows 10 Techhyme

The below example shows the Process ID of Notepad application along with Username.

Command: Get-Process notepad* -IncludeUserName

Process ID Windows 10 Techhyme

You may also like:

Related Posts

Leave a Reply