<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Серый форум &mdash; AHK: Получение название подпроцессов по названию процесса]]></title>
		<link>http://forum.script-coding.com/viewtopic.php?id=15034</link>
		<atom:link href="http://forum.script-coding.com/extern.php?action=feed&amp;tid=15034&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[Недавние сообщения в теме «AHK: Получение название подпроцессов по названию процесса».]]></description>
		<lastBuildDate>Sun, 27 Oct 2019 14:15:42 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: AHK: Получение название подпроцессов по названию процесса]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=136468#p136468</link>
			<description><![CDATA[<p>Зато sql, для ленивых удобно.</p>]]></description>
			<author><![CDATA[null@example.com (stealzy)]]></author>
			<pubDate>Sun, 27 Oct 2019 14:15:42 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=136468#p136468</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Получение название подпроцессов по названию процесса]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=136466#p136466</link>
			<description><![CDATA[<p>Дополнительный ресурсоёмкий медленный объект, без использования которого можно обойтись. У нас же не VBS, есть доступ к winapi.</p>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Sun, 27 Oct 2019 13:53:44 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=136466#p136466</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Получение название подпроцессов по названию процесса]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=136464#p136464</link>
			<description><![CDATA[<p><strong>stealzy</strong>, а WMI-то зачем?</p>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Sun, 27 Oct 2019 13:20:12 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=136464#p136464</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Получение название подпроцессов по названию процесса]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=136463#p136463</link>
			<description><![CDATA[<div class="codebox"><pre><code>parentPid := 3696

Gui Add, ListView, w500 h300, PID|Name|Caption|Command line
for prc in ComObjGet( &quot;winmgmts:&quot; ).ExecQuery(&quot;Select * from Win32_Process WHERE ParentProcessId = &quot; parentPid) {
	LV_Add(&quot;&quot;, prc.ProcessId, prc.Name, prc.Caption, prc.CommandLine)
	LV_ModifyCol()
}
Gui Show,, % &quot;Process with PID=&quot; parentPid &quot; child processes list:&quot;
Return

GuiClose:
GuiEscape:
	ExitApp</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (stealzy)]]></author>
			<pubDate>Sun, 27 Oct 2019 13:00:58 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=136463#p136463</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Получение название подпроцессов по названию процесса]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=136456#p136456</link>
			<description><![CDATA[<p>Процесс по названию имеет смысл получать только если он с таким названием единственный. Это так в вашем случае?</p>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Sun, 27 Oct 2019 08:18:15 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=136456#p136456</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Получение название подпроцессов по названию процесса]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=136455#p136455</link>
			<description><![CDATA[<p><strong>teadrinker</strong><br />Хорошо.<br />Дочерние процессы. А название процесса не играет роли, любое.</p>]]></description>
			<author><![CDATA[null@example.com (kangar)]]></author>
			<pubDate>Sun, 27 Oct 2019 08:07:53 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=136455#p136455</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Получение название подпроцессов по названию процесса]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=136451#p136451</link>
			<description><![CDATA[<p>У вас тут нет названия процесса. Как нет и такого понятия, как «подпроцесс».</p>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Sat, 26 Oct 2019 22:33:15 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=136451#p136451</guid>
		</item>
		<item>
			<title><![CDATA[AHK: Получение название подпроцессов по названию процесса]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=136450#p136450</link>
			<description><![CDATA[<p>Добрый вечер.<br />Вопрос следующий - как получить все подпроцессы (см.изображение) по названию процесса?</p>]]></description>
			<author><![CDATA[null@example.com (kangar)]]></author>
			<pubDate>Sat, 26 Oct 2019 15:13:04 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=136450#p136450</guid>
		</item>
	</channel>
</rss>
