Linked Questions

1 vote
1 answer
254 views

I used this code below and I get all applications that are running in a Window. Now I only want get the applications that are .Net (.exe). Can you help me? public Form1() { InitializeComponent()...
user2208401's user avatar
45 votes
7 answers
67k views

How do I get the list of open file handles by process id in C#? I'm interested in digging down and getting the file names as well. Looking for the programmatic equivalent of what process explorer ...
Sam Saffron's user avatar
16 votes
4 answers
14k views

Possible Duplicate: How do I tell if a win32 application uses the .NET runtime There is a way to manually recognize if a specific ".exe" process was written with C++(unmanaged code) or with C#(...
Diogo's user avatar
  • 1,603
5 votes
2 answers
2k views

A bit of searching returns this result: Which processes are running managed code and which version? However I am wondering if there is a 'better' way then simply iterating though the loaded modules? ...
aolszowka's user avatar
  • 1,410
2 votes
2 answers
3k views

In Sysinternals Process Explorer there exists a tab ".NET Assemblies". This tab is only shown in the properties for processes that actually use .NET Assemblies. How can I get the same information on ...
Timo Sperisen's user avatar
3 votes
2 answers
423 views

I have a COM DLL written in Visual C++. I fully control that COM DLL code. Of course it can be consumed from both managed and unmanaged applications. I want to insert a very specific check that should ...
sharptooth's user avatar
  • 171k
0 votes
1 answer
626 views

i want to know which of the currently running application is using the .net framework? is there is and exe or any process that is running??? Need to write program in java to know which of the ...
amod's user avatar
  • 4,292
2 votes
0 answers
356 views

I am trying to get list of running processes that uses .NET. I am using the question posted here to do that. using (Process p = Process.GetProcessById(pid)) { var modules = p.Modules.Cast<...
paul deter's user avatar
0 votes
2 answers
94 views

Filter all the processes which are running in .net Framework from the processes of windows application,
swetha's user avatar
  • 31
0 votes
0 answers
74 views

Is there any way to tell what versions of .Net are being used on a server. I can see what is installed and what is using .Net from How to check if a program is using .NET? but is there any way to ...
JoeOD's user avatar
  • 115