Create a Report of All Running Processes
Posted on Nov 19, 2007 under Windows Tips |Want to create a text file of all the processes currently running on the computer? Here’s how.
You can run either of the following commands:
WMIC /OUTPUT:C:ProcessList.txt PROCESS get Caption,Commandline,Processid
or
WMIC /OUTPUT:C:ProcessList.txt path win32_process get Caption,Processid,Commandline
This will produce a text file called ProcessList.txt on the C: drive that will list all of the processes that were running when this command was executed

Leave a comment