Display application’s path of running process in Windows

Normally you use Task Manager to see which processes are running, but from that you don’t know which application they belong to. Luckily, with these simple commandlines, you can easily see the full path of the process’s application

1. Start –> Run –> CMD

2. Enter the command line:

WMIC /OUTPUT:C:\ProcessList.txt PROCESS get Caption,Commandline,Processid

OR

WMIC /OUTPUT:C:\ProcessList.txt path win32_process get Caption,Processid,Commandline

3. Open the C:\ProcessList.txt and you get the full path of the running application’s process

Leave a Comment

Your email address will not be published. Required fields are marked *