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

前端 未结 3 699
滥情空心
滥情空心 2021-01-04 10:07

Saw this question here : What Great .NET Developers Ought To Know (More .NET Interview Questions)

相关标签:
3条回答
  • 2021-01-04 10:12

    It 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.

    0 讨论(0)
  • 2021-01-04 10:19

    This is a very useful command line tool in windows that shows you a list of all running processes. Passing in a command line parameter of /m "mscor*" lists out all of the processes running on your machine running that are using assemblies that begin with the name "mscor". The "*" is a wildcard character.

    0 讨论(0)
  • 2021-01-04 10:26

    It would seem to list all processes using modules like mscoree.dll, mscorwks.dll, etc. This would be .NET processes and possibly processes hosting .NET plug-ins.

    0 讨论(0)
提交回复
热议问题