I'm looking for a way to list every process' application name. The ones like project names when you make a project in visual studio.
What I'm not looking for:
- Window title
Process[] processes = Process.GetProcesses();
foreach (Process p in processes)
{
if (!String.IsNullOrEmpty(p.MainWindowTitle))
{
Console.WriteLine(p.MainWindowTitle);
}
}
- Process name
Process[] processes = Process.GetProcesses();
foreach (Process p in processes)
{
Console.WriteLine(p.ProcessName);
}
What I am looking for:
Entries in a task manager list:
While the p.MainModule throws for some processes (looking into it),
What you need can be achieved like this:
EDIT 1:
It seems like the p.MainModule is not accessible if you run as 32 bit on a 64 bit environment.
When compiled to x64, all the process running with my user on my system could be displayed. For the others, elevation is probably required.