amod
amod

Reputation: 4272

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 application uses the .net framework.

Upvotes: 0

Views: 531

Answers (1)

Dan
Dan

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

Related Questions