vote up 1 vote down star

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

flag

@ leppie: I agree, removed the c# tag. But mscor* should have something to do with .NET? – nullDev Sep 30 '08 at 11:48

3 Answers

vote up 2 vote down check

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.

link|flag
vote up 1 vote down

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.

link|flag
vote up 1 vote down

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.

link|flag
Wow, there are surprisingly few ".NET processes" on my Vista box. – unknown (yahoo) Sep 30 '08 at 10:30
Yeah, I was getting no results until I opened a PowerShell window. – Jason Stangroome Sep 30 '08 at 10:33

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.