Friday 26 April 2013

display Process ID from command prompt


Process Identifier is a unique number automatically being assign to each processes for identification. The representation is given in decimal number.
Here’s how to find each programs process ID using command prompt.

Using the command Tasklist to display and find each process ID

The small utility displays a list of processes running on either remote or local machine. It includes Image Name or program name, Process ID, Session Name, Session number and memory usage.

Go to run and type cmd 

Command prompt will open now type tasklist



Using the command QPROCESS

The utility displays information about processes. It includes the Username running the program, Session Name, ID, Process ID and Image name or program name.

type qprocess




Using the command wmic to display each programs PID

Windows Management Instrumentation command-line (WMIC) enables systems management from the command line. It extends the built-in Windows Management Instrumentation (WMI) for interfaces from several command-line usages and through batch scripts.

type wmic process get name,processid


 Overall, PID or Process Identifier helps us in identifying each program or processes through a decimal representation. These decimal equivalent is unique and can be use for monitoring and other applications.
That’s it! Keep on reading!

No comments:

Post a Comment