<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[PID vom explorer]]></title><description><![CDATA[<p>Gibt es eine funktion mit der man nur mit namen von der exe die pid rausbekommt???</p>
<p>oder geht das nur mit GetWindowThreadProcessId und wenn wie find ich das handle vom explorer???</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/103076/pid-vom-explorer</link><generator>RSS for Node</generator><lastBuildDate>Fri, 01 May 2026 11:09:37 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/103076.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 04 Mar 2005 15:29:42 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to PID vom explorer on Fri, 04 Mar 2005 15:29:42 GMT]]></title><description><![CDATA[<p>Gibt es eine funktion mit der man nur mit namen von der exe die pid rausbekommt???</p>
<p>oder geht das nur mit GetWindowThreadProcessId und wenn wie find ich das handle vom explorer???</p>
]]></description><link>https://www.c-plusplus.net/forum/post/737567</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/737567</guid><dc:creator><![CDATA[PID???]]></dc:creator><pubDate>Fri, 04 Mar 2005 15:29:42 GMT</pubDate></item><item><title><![CDATA[Reply to PID vom explorer on Fri, 04 Mar 2005 16:43:09 GMT]]></title><description><![CDATA[<pre><code>#include	&lt;windows.h&gt;
#include	&lt;tlhelp32.h&gt;

...

BOOL			bOk=FALSE;
HANDLE			hSnapshot;
PROCESSENTRY32	sData;

	hSnapshot=CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS,0);

	sData.dwSize=sizeof(sData);
	if(!Process32First(hSnapshot,&amp;sData))return FALSE;

	do	{
		printf(&quot;\nName=%s\t%PID=%i&quot;,sData.szExeFile,sData.th32ProcessID);
		}while(Process32Next(hSnapshot,&amp;sData));

	CloseHandle(hSnapshot);
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/737625</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/737625</guid><dc:creator><![CDATA[az]]></dc:creator><pubDate>Fri, 04 Mar 2005 16:43:09 GMT</pubDate></item></channel></rss>