vote up 4 vote down star
1

How can I obtain the command line arguments of another process?

Using static functions of the System.Diagnostics.Process class I can obtain a list of running processes, e.g. by name:

Process[] processList = Process.GetProcessesByName(processName);

However, there is no way to access the command line used to start this process. How would one do that?

flag

Can you explain what your trying to do this for? It might help get a better solution. – Bob King Feb 2 at 18:49
I want to retrieve the command line arguments to find the correct instance of an application, in my case msiexec. – divo Feb 2 at 19:47
Interesting article by Raymond Chen: blogs.msdn.com/oldnewthing/archive/… – divo Nov 26 at 9:23

4 Answers

vote up 9 vote down check

If you did not use the Start method to start a process, the StartInfo property does not reflect the parameters used to start the process. For example, if you use GetProcesses to get an array of processes running on the computer, the StartInfo property of each Process does not contain the original file name or arguments used to start the process. (source: MSDN)

Stuart's WMI suggestion is a good one:

string wmiQuery = string.Format("select CommandLine from Win32_Process where Name='{0}'", processName);
ManagementObjectSearcher searcher = new ManagementObjectSearcher(wmiQuery);
ManagementObjectCollection retObjectCollection = searcher.Get();
foreach (ManagementObject retObject in retObjectCollection)
    Console.WriteLine("[{0}]", retObject["CommandLine"]);
link|flag
Thanks to you and Stuart, I am using your sample code now. – divo Feb 2 at 19:27
P.S.: And welcome to SO :) – divo Feb 2 at 19:45
Thanks. I've just realized (too late) that stackoverflow is addictive. – xcud Feb 6 at 18:53
You should dispose the objects. – SLaks Nov 25 at 17:02
vote up 0 vote down

Are both projects yours? Could you modify the source for the process you're trying to examine to make it give you its command-line arguments, rather than trying to read them from somewhere outside of that process?

link|flag
Nope, the other process is Microsoft's msiexec – divo Feb 2 at 18:24
vote up 2 vote down

If you're targeting Windows XP or later and you can afford the overhead of WMI, a possibility would be to look up the target process using WMI's WIN32_Process class, which has a CommandLine property.

link|flag
vote up 1 vote down

Process.StartInfo returns a ProcessStartInfo object that allegedly but not necessarily has the arguments in the Arguments property.

link|flag
It hasn't in my case :( Could be that this only works if the other process is hosted in the CLR. – divo Feb 2 at 18:21
In fact, the Arguments property is only set if the process was started from a managed process using a ProcessStartInfo object. – divo Feb 2 at 18:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.