C#
An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.
10,906 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hello,
How to get the name of an application manufacturer from a running process? In the "Process Explorer - Winternals" application, the last column contains information about the program's producer. I want to extract this information about a certain process using C# language. How to do it?
Best regards,
Paweł
For example following prints company name for Visual Studio IDE (devenv.exe) -
Process p = Process.GetProcessesByName("devenv")[0];
Console.WriteLine("Company Name is {0}", p.MainModule.FileVersionInfo.CompanyName);