How to tell which COM+ Application belongs to what dllhost.exe in Microsoft IIS
Got multiple dllhost.exe processes and need to know which COM+ app each one belongs to? Use tlist.exe from Windows Debugging Tools to map PID to application name.

Not to mention the .NET runtime, dllhost.exe also hosts COM+ processes. So how can you tell what each dllhost.exe is running? Download tlist.exe (part of the Debugging Tools for Windows). You can read more about the util here: http://msdn.microsoft.com/en-us/library/cc267860.aspx
It's just a simple task list viewer that displays info about the process. There are tons of utils out there than can do the same thing but tlist.exe is a mere 50 KB command line util which is why I like to keep it around for quickly gathering info.
The command I use to check the dllhost.exe is:
tlist -k | find /i "dllhost.exe"
and it outputs the processes, process IDs, and the related COM+ process.

Jason Samuel
Product leader, advisor, and international speaker with 27+ years in enterprise end-user computing, security, and cloud. Has deployed infrastructure at Fortune 500 scale across 34 countries. 1 of 3 people globally to hold Citrix CTP + VMware vExpert + VMware EUC Champion concurrently. 200+ articles, 1,000+ reader discussions.
Using Microsoft LogParser to create a report of who has been hitting a web page or URL
Need to know who's been hitting a specific URL? LogParser queries your IIS W3C logs and gives you every IP in chronological order. Then you can export unique IPs for identification.
iisUsing the DATAGRID output option in Microsoft LogParser to see error 500 IIS issues
LogParser's DATAGRID output gives you IIS error 500 results and page load times in a readable GUI window. No CSV exports needed. Instant visual output.
iisHow to get the IUSR and IWAM user account passwords on a Microsoft IIS server
If you need the IUSR or IWAM password without resetting it, Adsutil.vbs in C:\Inetpub\AdminScripts will retrieve it for you. Quick and non-disruptive.