Can we check if a running application or a program uses .Net framework to execute itself?

link|improve this question

5  
Crank up Process Monitor and if the executable is highlighted yellow it's a managed application. Hurr. – Will Jan 17 '10 at 5:20
Will, I think you meant Process Explorer ;) – Mohib Sheth May 7 at 10:00
feedback

6 Answers

up vote 10 down vote accepted

There's a trick I once learned from Scott Hanselman's list of interview questions. You can easily list all programs running .NET in command prompt by using:

tasklist /m "mscor*"

It will list all processes that have mscor* amongst their loaded modules.

We can apply the same method in code:

public static bool IsDotNetProcess(this Process process)
{
  var modules = process.Modules.Cast<ProcessModule>().Where(
      m => m.ModuleName.StartsWith("mscor", StringComparison.InvariantCultureIgnoreCase));

  return modules.Any();
}
link|improve this answer
2  
Note this does leave out possible Mono processes. – Dykam Jan 17 '10 at 7:51
@Dykam Isn't mono's runtime also called mscorlib.dll ? – hmemcpy Jan 17 '10 at 8:04
2  
The runtime is just mono. Or mono.exe on windows. .Net uses PE to let the OS use mscorlib.dll to start the app, but mono doesn't do such a trick. And the real core lib is called corlib.dll I think, as it isn't MS's corlib. – Dykam Jan 17 '10 at 8:19
1  
I don't think this will work anymore for .NET 4.0, the DLLs were renamed. You'll also get false positives for apps that host the CLR, Visual Studio for example. – Hans Passant Jan 17 '10 at 9:51
1  
The .NET 4.0 runtime is called clr.dll. – Brian Rasmussen Jan 17 '10 at 14:35
show 2 more comments
feedback

Use the CLR COM interfaces ICorPublish and ICorPublishProcess. The easiest way to do this from C# is to borrow some code from SharpDevelop's debugger, and do the following:

ICorPublish publish = new ICorPublish();
ICorPublishProcess process;

process = publish.GetProcess(PidToCheck);

if (process == null || !process.IsManaged)
{
    // Not managed.
}

// Managed.
link|improve this answer
feedback

Programmatically you'd get the starting image name using Win32 API like NtQueryInformationProcess, or in .Net use System.Diagnostics.Process.GetProcesses() and read Process.StartInfo.FileName.

Then open and decode the PE headers of that image using details prescribed in the MSDN article below:

http://msdn.microsoft.com/en-us/magazine/cc301808.aspx

Caveats: will only detect .NET built assemblies e.g. won't detect Win32 EXEs dynamically hosting CLR using CorHost APIs.

link|improve this answer
feedback

Use System.Reflection.Assembly.LoadFrom function to load the .exe file. This function will throw exception if you try to load binary file that is not .NET assembly.

link|improve this answer
1  
-1: He asked about a running application – John Saunders Jan 17 '10 at 5:20
3  
what difference does it make? running application doesn't have .exe file? – lubos hasko Jan 17 '10 at 5:21
In that case, please show him how to find the EXE file corresponding to the running program; and show him how to deal with the possibility his process can't get read access to the .EXE file. – John Saunders Jan 17 '10 at 5:35
1  
Yes, you are right, my answer is not complete and bulletproof and I'm sorry for sarcastic comment. – lubos hasko Jan 17 '10 at 6:27
feedback

I know this is about a million years too late, but in case it helps - my favourite method to figure out if an exe is using .net is to run MSIL disassembler against it which comes with .net SDK. If a .net exe you indeed have, you'll get a nice graphical breakdown of its contents; if a plain old win32 exe it be, you'll get a message telling you so.

link|improve this answer
feedback

I suggest downloading the Redgate's DotNetReflector and checking if it can open the application.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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