Finding the Process ID - Windows drivers
Article12/20/2023In this articleEach process running in Windows is assigned a unique decimal number called the process ID (PID). This number is used in a number of ways, for example to specify the process when attaching a debugger to it.This topic describes how you can determine the PID for a given app using Task Manager, the tasklist Windows command, the TList utility, the PowerShell Get-Process command, or the debugger.Task ManagerTask Manager can be opened in a number of ways, but the simplest is to select Ctrl+Alt+Delete, and then select Task Manager.In Windows, first click More details to expand the information displayed. From the Processes tab, select Details to see the process ID listed in the PID column.Click on any column name to sort. You can right click a process name to see more options for a process.Some kernel errors may cause delays in Task Manager's graphical interface.The tasklist commandUse the built in Windows tasklist command from a command prompt to display all pro...