Reputation: 4272
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 application uses the .net framework.
Upvotes: 0
Views: 531
Reputation: 1959
You could enumerate the modules loaded in the process. If mscoree.dll is loaded it is more than likely that the application is using .NET Fx. Check How to check if a program is using .NET? for more information.
Upvotes: 2