<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" media="screen" href="/styles/xslt/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:c9="http://channel9.msdn.com">
<channel>
	<title>Channel 9 Forums - Tech Off - How to get the name of the related DLL for a thread in a process like Process Explorer?</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Forums/rss"></atom:link>
	<image>
		<url>http://mschnlnine.vo.llnwd.net/d1/Dev/App_Themes/C9/images/feedimage.png</url>
		<title>Channel 9 Forums - Tech Off - How to get the name of the related DLL for a thread in a process like Process Explorer?</title>
		<link>http://channel9.msdn.com/Forums</link>
	</image>
	<description>Channel 9 keeps you up to date with the latest news and behind the scenes info from Microsoft that developers love to keep up with. From LINQ to SilverLight – Watch videos and hear about all the cool technologies coming and the people behind them.</description>
	<link>http://channel9.msdn.com/Forums</link>
	<language>en</language>
	<pubDate>Mon, 20 May 2013 15:24:17 GMT</pubDate>
	<lastBuildDate>Mon, 20 May 2013 15:24:17 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<c9:totalResults>22</c9:totalResults>
	<c9:pageCount>-22</c9:pageCount>
	<c9:pageSize>-1</c9:pageSize>
	<item>
		<title>Tech Off - How to get the name of the related DLL for a thread in a process like Process Explorer?</title>
		<description><![CDATA[<p>Hi all!</p><p>How to get the name of the related DLL for a thread in a process like Process Explorer in C#?</p><p>1. I use Process[] _processlist = Process.GetProcesses(); to get all the processes running.</p><p>2. I use ProcessThreadCollection _processthreadcollection = _processlist[0].Threads ( in a foreach loop in my code ) to get the threads each process uses.</p><p>Now, I can get the process id and thread id but I don't know how to get the DLL/EXE/FUNCTION name of the threads?</p><p>In &quot;Process Explorer&quot; if you double click on a process and go to &quot;Threads&quot; tab, you get a list of all thread and in &quot;Start Address&quot; you can see which DLL is each thread related to.</p><p>But in C# code&nbsp;the start address of each thread is just a pointer not a string. I wonder how &quot;Process Explorer&quot; does it? Any chance someone here could write a small C# sample code for me?</p><p>I would GREATLY appreciate it.</p><p><img src="http://img338.imageshack.us/img338/905/helph.png" alt="Process Explorer"></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer/5caeacb49edc432fa0f0a0a4014c9e70#5caeacb49edc432fa0f0a0a4014c9e70</link>
		<pubDate>Sun, 05 Aug 2012 20:11:01 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer/5caeacb49edc432fa0f0a0a4014c9e70#5caeacb49edc432fa0f0a0a4014c9e70</guid>
		<dc:creator>ProgrammerCS</dc:creator>
		<slash:comments>22</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/ProgrammerCS/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - How to get the name of the related DLL for a thread in a process like Process Explorer?</title>
		<description><![CDATA[<p>I haven't particularly had to do this before, but each Process object also has a collection of ProcessModule objects associated with it; the modules are the files (dll, exe). Each ProcessModule has a BaseAddress and ModuleMemorySize property, and the ProcessThread object also has a StartAddress property, so it seems like its something you can calculate, and figure out which thread is associated with which module.</p><p><a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.processmodule">http://msdn.microsoft.com/en-us/library/system.diagnostics.processmodule</a></p><p><a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.processthread">http://msdn.microsoft.com/en-us/library/system.diagnostics.processthread</a></p><p>Pointer addresses can be converted to integers.</p><p>Does that help?</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer/8b0cec3bd2574ddfaf48a0a40167a817#8b0cec3bd2574ddfaf48a0a40167a817</link>
		<pubDate>Sun, 05 Aug 2012 21:49:28 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer/8b0cec3bd2574ddfaf48a0a40167a817#8b0cec3bd2574ddfaf48a0a40167a817</guid>
		<dc:creator>brian.shapiro</dc:creator>
		<slash:comments>22</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/brian.shapiro/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - How to get the name of the related DLL for a thread in a process like Process Explorer?</title>
		<description><![CDATA[<p>Thanks for the reply brian but sadly, it doesn't help me because for example if you look at the picture I provided, &quot;ntdll.dll&quot; and some other dlls are listed there which won't be listed in the process lists so I'm a bit lost how PE actually do this.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer/8069c74f89e441128356a0a4016aa2bd#8069c74f89e441128356a0a4016aa2bd</link>
		<pubDate>Sun, 05 Aug 2012 22:00:18 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer/8069c74f89e441128356a0a4016aa2bd#8069c74f89e441128356a0a4016aa2bd</guid>
		<dc:creator>ProgrammerCS</dc:creator>
		<slash:comments>22</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/ProgrammerCS/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - How to get the name of the related DLL for a thread in a process like Process Explorer?</title>
		<description><![CDATA[<p>@<a href="/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer#c8069c74f89e441128356a0a4016aa2bd">ProgrammerCS</a>:</p><p>Ok I think I found something that helps:</p><p><a href="http://stackoverflow.com/questions/8679406/get-startaddress-of-win32-thread-from-another-process">http://stackoverflow.com/questions/8679406/get-startaddress-of-win32-thread-from-another-process</a></p><p>I was led to that by finding the following, and realizing you needed the symbol name for the thread's entry point:</p><p><a href="http://stackoverflow.com/questions/5157083/getting-module-name-from-thread-information">http://stackoverflow.com/questions/5157083/getting-module-name-from-thread-information</a></p><p>The question asker in the first link says it works on getting the symbol name if he has the correct start address.</p><p><a href="<a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms681323(v=vs.85">http&#58;&#47;&#47;msdn.microsoft.com&#47;en-us&#47;library&#47;windows&#47;desktop&#47;ms681323&#40;v&#61;vs.85</a>).aspx"><a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms681323(v=vs.85">http&#58;&#47;&#47;msdn.microsoft.com&#47;en-us&#47;library&#47;windows&#47;desktop&#47;ms681323&#40;v&#61;vs.85</a>).aspx</a></p><p><a href="<a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms681351(v=vs.85">http&#58;&#47;&#47;msdn.microsoft.com&#47;en-us&#47;library&#47;windows&#47;desktop&#47;ms681351&#40;v&#61;vs.85</a>).aspx"><a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms681351(v=vs.85">http&#58;&#47;&#47;msdn.microsoft.com&#47;en-us&#47;library&#47;windows&#47;desktop&#47;ms681351&#40;v&#61;vs.85</a>).aspx</a></p><p>That's using Interop though.</p><p>I looked for an equivalent method in the C# Diagnostics namespace, all I could find was StackTrace and StackFrame, which seems to do that , but only for managed threads, not OS threads.&nbsp;</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer/7989054bf18a46469103a0a50013eb54#7989054bf18a46469103a0a50013eb54</link>
		<pubDate>Mon, 06 Aug 2012 01:12:31 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer/7989054bf18a46469103a0a50013eb54#7989054bf18a46469103a0a50013eb54</guid>
		<dc:creator>brian.shapiro</dc:creator>
		<slash:comments>22</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/brian.shapiro/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - How to get the name of the related DLL for a thread in a process like Process Explorer?</title>
		<description><![CDATA[<p>The forum of channel9.msdn.com can't understand the url in msdn.microsoft.com, wtf.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer/cb57cbda937e47929840a0a50062a857#cb57cbda937e47929840a0a50062a857</link>
		<pubDate>Mon, 06 Aug 2012 05:59:12 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer/cb57cbda937e47929840a0a50062a857#cb57cbda937e47929840a0a50062a857</guid>
		<dc:creator>felix9</dc:creator>
		<slash:comments>22</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/felix9/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - How to get the name of the related DLL for a thread in a process like Process Explorer?</title>
		<description><![CDATA[<p>It's a little unclear what exactly you're asking for here.</p><p>If you're trying to get the list of all modules (i.e. DLLs and EXEs) in a given process, look at&nbsp;<a href="<a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms682631(v=vs.85">http&#58;&#47;&#47;msdn.microsoft.com&#47;en-us&#47;library&#47;windows&#47;desktop&#47;ms682631&#40;v&#61;vs.85</a>).aspx"><a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms682631(v=vs.85">http&#58;&#47;&#47;msdn.microsoft.com&#47;en-us&#47;library&#47;windows&#47;desktop&#47;ms682631&#40;v&#61;vs.85</a>).aspx</a>&nbsp;(you'll need to use PInvoke to access it if you're in C#).</p><p>&nbsp;</p><p>If you merely want the name of the process that a current thread is in, you'll need to call</p><p>SuspendThread() on the thread that you're interrogating.</p><p>Call GetThreadContext() on that thread to find out its current register state</p><p>Look at Context.Eip (for 32-bit) or Context.Rip (for 64-bit) for the thread.</p><p>Correlate that EIP value against the module list you've just obtained to see if it lies inside any of the modules. If it does - you've found your man, otherwise you're currently running from JITted code.</p><p>&nbsp;</p><p>If you want an exact method name, you'll need debugging symbols for the module you're debugging. Pass the EIP value (from before) into GetSymbolName to get a &quot;best-match&quot; name for the value (this might help:&nbsp;<a href="http://stackoverflow.com/questions/5705650/stackwalk64-on-windows-get-symbol-name">http://stackoverflow.com/questions/5705650/stackwalk64-on-windows-get-symbol-name</a>).</p><p>&nbsp;</p><p>SysInternals uses DbgHelp.dll and GetSymbolName on values obtained from Context.Esp (the stack), so if you want to have information that looks the same as the screenshot you've got, take a stack-trace using Context.Esp and GetSymbolName as described above.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer/6d3cfc05c2154f9eb929a0a5009bca55#6d3cfc05c2154f9eb929a0a5009bca55</link>
		<pubDate>Mon, 06 Aug 2012 09:27:12 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer/6d3cfc05c2154f9eb929a0a5009bca55#6d3cfc05c2154f9eb929a0a5009bca55</guid>
		<dc:creator>evildictaitor</dc:creator>
		<slash:comments>22</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/evildictaitor/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - How to get the name of the related DLL for a thread in a process like Process Explorer?</title>
		<description><![CDATA[<p>Thanks guys,</p><p>I think what &quot;evildictator&quot; said about DbgHelp.dll and GetSymbolName from Context.Esp seems&nbsp; what I need. Now, if any of you could only help me with an actual sample it would be a dream for me! I am in real trouble because my vacation time is so short.</p><p>Of couse, I stand by this, whoever delivers it first: <a href="http://channel9.msdn.com/Forums/Coffeehouse/100-bounty-for-code-serious-offer">http://channel9.msdn.com/Forums/Coffeehouse/100-bounty-for-code-serious-offer</a></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer/2d6032f9d5324f97acd0a0a500b3dac8#2d6032f9d5324f97acd0a0a500b3dac8</link>
		<pubDate>Mon, 06 Aug 2012 10:54:49 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer/2d6032f9d5324f97acd0a0a500b3dac8#2d6032f9d5324f97acd0a0a500b3dac8</guid>
		<dc:creator>ProgrammerCS</dc:creator>
		<slash:comments>22</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/ProgrammerCS/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - How to get the name of the related DLL for a thread in a process like Process Explorer?</title>
		<description><![CDATA[<p>This seems to be what I need, if only I could find a C# sample for this! Any takers please?</p><p><a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms681323%28v=vs.85%29.aspx">http://msdn.microsoft.com/en-us/library/windows/desktop/ms681323%28v=vs.85%29.aspx</a></p><p>Here is a C&#43;&#43; code of&nbsp;it but I have ZERO idea how to use/convert this in C#:</p><p><a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms680578(v=vs.85">http&#58;&#47;&#47;msdn.microsoft.com&#47;en-us&#47;library&#47;windows&#47;desktop&#47;ms680578&#40;v&#61;vs.85</a>).aspx</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer/85805713a4a6411f8908a0a500b6e916#85805713a4a6411f8908a0a500b6e916</link>
		<pubDate>Mon, 06 Aug 2012 11:05:57 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer/85805713a4a6411f8908a0a500b6e916#85805713a4a6411f8908a0a500b6e916</guid>
		<dc:creator>ProgrammerCS</dc:creator>
		<slash:comments>22</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/ProgrammerCS/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - How to get the name of the related DLL for a thread in a process like Process Explorer?</title>
		<description><![CDATA[<p>Hi again,</p><p>OK, I found this nice code a DbgHelp wrapper:</p><p><a href="http://www.koders.com/csharp/fidAB470706CB5969E4C035A4ED5335B647A1B82DB8.aspx?s=search">http://www.koders.com/csharp/fidAB470706CB5969E4C035A4ED5335B647A1B82DB8.aspx?s=search</a></p><p>But can anyone show me how to use the SymFromAddr function?</p><p>I cannot get it to work to get name for processthread, this is what I do:</p><p>IntPtr pOpenThread = OpenThread(ThreadAccess.SUSPEND_RESUME, false, (uint)_processthread.Id);</p><p>DbgHelp.SymInitialize(pOpenThread, null, true);</p><p>DbgHelp.SYMBOL_INFO _symbol = new DbgHelp.SYMBOL_INFO();</p><p>ulong ul = new ulong();</p><p>DbgHelp.SymFromAddr(pOpenThread, (ulong)(_processthread.StartAddress),ref ul, ref _symbol);</p><p>&quot;_symbol&quot; variable comes out all empty.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer/a7a59a53eea649de8961a0a500cbca45#a7a59a53eea649de8961a0a500cbca45</link>
		<pubDate>Mon, 06 Aug 2012 12:21:58 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer/a7a59a53eea649de8961a0a500cbca45#a7a59a53eea649de8961a0a500cbca45</guid>
		<dc:creator>ProgrammerCS</dc:creator>
		<slash:comments>22</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/ProgrammerCS/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - How to get the name of the related DLL for a thread in a process like Process Explorer?</title>
		<description><![CDATA[<p>*solved*</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer/9f07e9b2851c4bdd93b9a0a600d19ef7#9f07e9b2851c4bdd93b9a0a600d19ef7</link>
		<pubDate>Tue, 07 Aug 2012 12:43:12 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer/9f07e9b2851c4bdd93b9a0a600d19ef7#9f07e9b2851c4bdd93b9a0a600d19ef7</guid>
		<dc:creator>ProgrammerCS</dc:creator>
		<slash:comments>22</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/ProgrammerCS/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - How to get the name of the related DLL for a thread in a process like Process Explorer?</title>
		<description><![CDATA[<p>@<a href="/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer#c9f07e9b2851c4bdd93b9a0a600d19ef7">ProgrammerCS</a>:&nbsp; aarrrggghhh, don't leave us hanging!&nbsp; How about a snippit of success?</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer/cd24bbd581fc4df99ec8a0a600dd6325#cd24bbd581fc4df99ec8a0a600dd6325</link>
		<pubDate>Tue, 07 Aug 2012 13:26:02 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer/cd24bbd581fc4df99ec8a0a600dd6325#cd24bbd581fc4df99ec8a0a600dd6325</guid>
		<dc:creator>JohnAskew</dc:creator>
		<slash:comments>22</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/JohnAskew/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - How to get the name of the related DLL for a thread in a process like Process Explorer?</title>
		<description><![CDATA[<p>Hello everyone!</p><p>&quot;ProgrammerCS&quot;&nbsp;is not really interested in this project. We just spoke briefly on IRC and he was curious to help me. He told me about this thread so I came here to first thank everyone for their help and secondly, regarding the code. The final code has not yet been received in a working way. Once I receive it, I will ask permission from the guy who helped me and hopefully, I will be able to post the source code here for everyone.</p><p>Thanks again.</p><p>Regards P. D.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer/0473072976d14d6a90a1a0a700ec3f99#0473072976d14d6a90a1a0a700ec3f99</link>
		<pubDate>Wed, 08 Aug 2012 14:20:09 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer/0473072976d14d6a90a1a0a700ec3f99#0473072976d14d6a90a1a0a700ec3f99</guid>
		<dc:creator>PeterDouglas</dc:creator>
		<slash:comments>22</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/PeterDouglas/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - How to get the name of the related DLL for a thread in a process like Process Explorer?</title>
		<description><![CDATA[<p>Hey guys,</p><p>The code doesn't seem to work. It doesn't list everything and it definitely is not working in Windows 8. I have emailed Mark @ sysinternals and asked him if he could show me a sample. So far, no answer.</p><p>This problem seems impossible to solve! Such a simple task, so impossible, so complex and NO ONE can do it.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer/0861d710937a48a1bab0a0a801014919#0861d710937a48a1bab0a0a801014919</link>
		<pubDate>Thu, 09 Aug 2012 15:36:44 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer/0861d710937a48a1bab0a0a801014919#0861d710937a48a1bab0a0a801014919</guid>
		<dc:creator>PeterDouglas</dc:creator>
		<slash:comments>22</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/PeterDouglas/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - How to get the name of the related DLL for a thread in a process like Process Explorer?</title>
		<description><![CDATA[<p></p><blockquote><div class="quoteText"><p></p><p><a class="permalink" title="Post Permalink" href="/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer/0861d710937a48a1bab0a0a801014919">3 hours&nbsp;ago</a>, <a href="/Niners/PeterDouglas">PeterDouglas</a> wrote</p><p>Hey guys,</p><p>The code doesn't seem to work. It doesn't list everything and it definitely is not working in Windows 8. I have emailed Mark @ sysinternals and asked him if he could show me a sample. So far, no answer.</p><p>This problem seems impossible to solve! Such a simple task, so impossible, so complex and NO ONE can do it.</p><p></p></div></blockquote><p></p><p>PETER !</p><p>Not once did you mention this was for Windows 8. &nbsp; <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-7.gif?v=c9' alt='Perplexed' /></p><p>The API is changing so you may want to look at the current Windows 8&nbsp;list for direction: <a href="<a href="http://msdn.microsoft.com/en-us/library/hh448382(v=vs.85">http&#58;&#47;&#47;msdn.microsoft.com&#47;en-us&#47;library&#47;hh448382&#40;v&#61;vs.85</a>).aspx"><a href="http://msdn.microsoft.com/en-us/library/hh448382(v=vs.85">http&#58;&#47;&#47;msdn.microsoft.com&#47;en-us&#47;library&#47;hh448382&#40;v&#61;vs.85</a>).aspx</a></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer/0d738331b8ad4ef39387a0a8013ba253#0d738331b8ad4ef39387a0a8013ba253</link>
		<pubDate>Thu, 09 Aug 2012 19:09:11 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer/0d738331b8ad4ef39387a0a8013ba253#0d738331b8ad4ef39387a0a8013ba253</guid>
		<dc:creator>JohnAskew</dc:creator>
		<slash:comments>22</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/JohnAskew/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - How to get the name of the related DLL for a thread in a process like Process Explorer?</title>
		<description><![CDATA[<p>I SEE!!!!</p><p>@JohnAskew: Is there ANY chance you can give a C# sample?</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer/484cc98b23794792a757a0a900165807#484cc98b23794792a757a0a900165807</link>
		<pubDate>Fri, 10 Aug 2012 01:21:21 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer/484cc98b23794792a757a0a900165807#484cc98b23794792a757a0a900165807</guid>
		<dc:creator>PeterDouglas</dc:creator>
		<slash:comments>22</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/PeterDouglas/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - How to get the name of the related DLL for a thread in a process like Process Explorer?</title>
		<description><![CDATA[<p>It seems that no one on the entire Internet can solve this and provide a working compilable C# sample, for love or money! So odd.</p><p>Serious offer, I will pay money for a working sample.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer/24235fd6754a44148500a0ac0077b056#24235fd6754a44148500a0ac0077b056</link>
		<pubDate>Mon, 13 Aug 2012 07:15:46 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer/24235fd6754a44148500a0ac0077b056#24235fd6754a44148500a0ac0077b056</guid>
		<dc:creator>PeterDouglas</dc:creator>
		<slash:comments>22</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/PeterDouglas/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - How to get the name of the related DLL for a thread in a process like Process Explorer?</title>
		<description><![CDATA[<p></p><blockquote><div class="quoteText"><p></p><p><a class="permalink" title="Post Permalink" href="/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer/484cc98b23794792a757a0a900165807">3 days&nbsp;ago</a>, <a href="/Niners/PeterDouglas">PeterDouglas</a> wrote</p><p>I SEE!!!!</p><p>@JohnAskew: Is there ANY chance you can give a C# sample?</p><p></p></div></blockquote><p></p><p>I don't have Windows 8 loaded anywhere yet.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer/1b5b40944b584e6c8064a0ac011facc9#1b5b40944b584e6c8064a0ac011facc9</link>
		<pubDate>Mon, 13 Aug 2012 17:27:23 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer/1b5b40944b584e6c8064a0ac011facc9#1b5b40944b584e6c8064a0ac011facc9</guid>
		<dc:creator>JohnAskew</dc:creator>
		<slash:comments>22</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/JohnAskew/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - How to get the name of the related DLL for a thread in a process like Process Explorer?</title>
		<description><![CDATA[<p>@<a href="/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer#c1b5b40944b584e6c8064a0ac011facc9">JohnAskew</a>: can't you download the release preview? I could also give you access to my test virtual machine running win8 &#43; visual studio 2012 if you want?</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer/04b2c5ab05e747329aaca0ae0022bda7#04b2c5ab05e747329aaca0ae0022bda7</link>
		<pubDate>Wed, 15 Aug 2012 02:06:29 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer/04b2c5ab05e747329aaca0ae0022bda7#04b2c5ab05e747329aaca0ae0022bda7</guid>
		<dc:creator>PeterDouglas</dc:creator>
		<slash:comments>22</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/PeterDouglas/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - How to get the name of the related DLL for a thread in a process like Process Explorer?</title>
		<description><![CDATA[<p><em>Nothing is withheld from us what we have&nbsp;conceived to do.</em></p><p><a href="http://channel9.msdn.com/Forums/Coffeehouse/Inspiration#cf45aa970baeb4bb49d6ca0ac00e2659e">http://channel9.msdn.com/Forums/Coffeehouse/Inspiration#cf45aa970baeb4bb49d6ca0ac00e2659e</a></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer/1d1efe68bc444c949b31a0ae00f05401#1d1efe68bc444c949b31a0ae00f05401</link>
		<pubDate>Wed, 15 Aug 2012 14:35:00 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer/1d1efe68bc444c949b31a0ae00f05401#1d1efe68bc444c949b31a0ae00f05401</guid>
		<dc:creator>JohnAskew</dc:creator>
		<slash:comments>22</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/JohnAskew/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - How to get the name of the related DLL for a thread in a process like Process Explorer?</title>
		<description><![CDATA[<p>@<a href="/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer#ccb57cbda937e47929840a0a50062a857">felix9</a>: you'd think I would have tested that, since I worked on the team that built the MSDN library URL system. I'd have to look, it could be either our code that is breaking on the parentheses or the rich editor... either way it is worth looking into.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer/00b94783a6014490b369a0af0052052f#00b94783a6014490b369a0af0052052f</link>
		<pubDate>Thu, 16 Aug 2012 04:58:37 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer/00b94783a6014490b369a0af0052052f#00b94783a6014490b369a0af0052052f</guid>
		<dc:creator>Duncan Mackenzie</dc:creator>
		<slash:comments>22</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Duncanma/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - How to get the name of the related DLL for a thread in a process like Process Explorer?</title>
		<description><![CDATA[<p>$500 reward (<a href="http://channel9.msdn.com/Forums/Coffeehouse/No-love-but-money-500">http://channel9.msdn.com/Forums/Coffeehouse/No-love-but-money-500</a>) and NO ONE can solve this?</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer/f1046b832f0d41c6acd6a0af007c02ec#f1046b832f0d41c6acd6a0af007c02ec</link>
		<pubDate>Thu, 16 Aug 2012 07:31:30 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer/f1046b832f0d41c6acd6a0af007c02ec#f1046b832f0d41c6acd6a0af007c02ec</guid>
		<dc:creator>PeterDouglas</dc:creator>
		<slash:comments>22</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/PeterDouglas/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - How to get the name of the related DLL for a thread in a process like Process Explorer?</title>
		<description><![CDATA[<p>@<a href="/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer#c24235fd6754a44148500a0ac0077b056">PeterDouglas</a>:why do you think so, it's just the entire&nbsp;internet won't publish for you entire solutions to a problem&nbsp;you have, as an engineer you should be able to come to a solution on your own with the available hints from this thread</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer/cec90726271348bc8d15a0b3017933a0#cec90726271348bc8d15a0b3017933a0</link>
		<pubDate>Mon, 20 Aug 2012 22:53:20 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/How-to-get-the-name-of-the-related-DLL-for-a-thread-in-a-process-like-Process-Explorer/cec90726271348bc8d15a0b3017933a0#cec90726271348bc8d15a0b3017933a0</guid>
		<dc:creator>Ion Todirel</dc:creator>
		<slash:comments>22</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Ion Todirel/Discussions/RSS</wfw:commentRss>
	</item>
</channel>
</rss>