2

Just forgot the command which I used to execute at DOS Prompt to list all running CLR instances on a Machine. Anyone remembers it??

MSIL
  • 2,671
  • 5
  • 24
  • 25

2 Answers2

2

tasklist /m mscor*

tasklist /m mscor* will show processes that have loaded modules (usaully .DLL files) hosting the .NET runtime. The same technique can be used to search for other DLLs that have been loaded.

On a related note, Process Explorer is a Microsoft task manager replacement that will show .NET processes highlighted. I cannot recommend it enough. It is well worth investigating along with the rest of the Sysinternals Suite.

See also What does this do? tasklist /m “mscor*”

Community
  • 1
  • 1
Thomas Bratt
  • 48,038
  • 36
  • 121
  • 139
0

I have got it - it is tasklist /m mscor*

MSIL
  • 2,671
  • 5
  • 24
  • 25