|
How to list all running processes and their parameters
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.
Have we been helpful? Link to us!
Copyright 2004-2008 TweaksForGeeks.com, All rights reserved Sitemap
|