Linked Questions
10 questions linked to/from How to check if a program is using .NET?
1 vote
1 answer
254 views
Get all running applications that are .Net (not Java) [duplicate]
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()...
45 votes
7 answers
67k views
How do I get the list of open file handles by process in C#?
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 ...
16 votes
4 answers
14k views
How to know if a ".exe" process was written with C++ or C#? [duplicate]
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#(...
5 votes
2 answers
2k views
How do I determine if a Process is Managed in C#?
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? ...
2 votes
2 answers
3k views
Get .NET Assemblies Info on process (like Sysinternals Process Explorer) via Code (C# or PowerShell)
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 ...
3 votes
2 answers
423 views
How to detect if my COM object is being used from a .NET application?
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 ...
0 votes
1 answer
626 views
how can i know which are the application currently executing use the .net framework
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 ...
2 votes
0 answers
356 views
Access denied exception when trying to query modules in a running process
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<...
0 votes
2 answers
94 views
Filter .Net processess from all windows processess
Filter all the processes which are running in .net Framework from the processes of windows application,
0 votes
0 answers
74 views
What versions of.Net are being used
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 ...