<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Серый форум &mdash; AHK: Получение название подпроцессов по названию процесса]]></title>
	<link rel="self" href="http://forum.script-coding.com/extern.php?action=feed&amp;tid=15034&amp;type=atom" />
	<updated>2019-10-27T14:15:42Z</updated>
	<generator>PunBB</generator>
	<id>http://forum.script-coding.com/viewtopic.php?id=15034</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Получение название подпроцессов по названию процесса]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=136468#p136468" />
			<content type="html"><![CDATA[<p>Зато sql, для ленивых удобно.</p>]]></content>
			<author>
				<name><![CDATA[stealzy]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=31937</uri>
			</author>
			<updated>2019-10-27T14:15:42Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=136468#p136468</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Получение название подпроцессов по названию процесса]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=136466#p136466" />
			<content type="html"><![CDATA[<p>Дополнительный ресурсоёмкий медленный объект, без использования которого можно обойтись. У нас же не VBS, есть доступ к winapi.</p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2019-10-27T13:53:44Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=136466#p136466</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Получение название подпроцессов по названию процесса]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=136464#p136464" />
			<content type="html"><![CDATA[<p><strong>stealzy</strong>, а WMI-то зачем?</p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2019-10-27T13:20:12Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=136464#p136464</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Получение название подпроцессов по названию процесса]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=136463#p136463" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[stealzy]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=31937</uri>
			</author>
			<updated>2019-10-27T13:00:58Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=136463#p136463</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Получение название подпроцессов по названию процесса]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=136456#p136456" />
			<content type="html"><![CDATA[<p>Процесс по названию имеет смысл получать только если он с таким названием единственный. Это так в вашем случае?</p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2019-10-27T08:18:15Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=136456#p136456</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Получение название подпроцессов по названию процесса]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=136455#p136455" />
			<content type="html"><![CDATA[<p><strong>teadrinker</strong><br />Хорошо.<br />Дочерние процессы. А название процесса не играет роли, любое.</p>]]></content>
			<author>
				<name><![CDATA[kangar]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=39404</uri>
			</author>
			<updated>2019-10-27T08:07:53Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=136455#p136455</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Получение название подпроцессов по названию процесса]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=136451#p136451" />
			<content type="html"><![CDATA[<p>У вас тут нет названия процесса. Как нет и такого понятия, как «подпроцесс».</p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2019-10-26T22:33:15Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=136451#p136451</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK: Получение название подпроцессов по названию процесса]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=136450#p136450" />
			<content type="html"><![CDATA[<p>Добрый вечер.<br />Вопрос следующий - как получить все подпроцессы (см.изображение) по названию процесса?</p>]]></content>
			<author>
				<name><![CDATA[kangar]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=39404</uri>
			</author>
			<updated>2019-10-26T15:13:04Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=136450#p136450</id>
		</entry>
</feed>
