How to get all processes running on the local windows computer in C#

1 Answer

0 votes
using System;
using System.Diagnostics;

namespace ConsoleApplication_C_Sharp
{
    class Program
    {
        static void Main(string[] args)
        {
            Process[] processes = Process.GetProcesses();

            foreach (var process in processes)
                Console.WriteLine(process);
        }
    }
}


/*
run:

System.Diagnostics.Process (AdblockPlusEngine)
System.Diagnostics.Process (firefox)
System.Diagnostics.Process (ConsoleApplication_C_Sharp)
System.Diagnostics.Process (explorer)
System.Diagnostics.Process (iexplore)
System.Diagnostics.Process (notepad++)
...

*/

 



answered Aug 11, 2018 by avibootz
...