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