Using the WMIC (Windows Management Instrumentation Command-Line) utility, you can list all of the running processes along with what parameters they are run with.
Open a command prompt (Start->Run CMD)
Type:
WMIC /OUTPUT:C:Processes.txt path win32_process get Caption,Processid,Commandline
Now, all the details of the running processes are saved in C:Processes.txt.
You must be logged in to post a commentLogin