Can we check if a running application or a program uses .Net framework to execute itself?
feedback
|
|
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:
It will list all processes that have We can apply the same method in code:
| |||||||||||||||||||
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:
| |||
|
feedback
|
|
Programmatically you'd get the starting image name using Win32 API like 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. | ||||
|
feedback
|
|
Use | |||||||||||||||
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. | |||
|
feedback
|
|
I suggest downloading the Redgate's DotNetReflector and checking if it can open the application. | |||
|
feedback
|