<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Серый форум &mdash; AHK: Скрытие процесса в диспетчере задач Windows]]></title>
	<link rel="self" href="http://forum.script-coding.com/extern.php?action=feed&amp;tid=7472&amp;type=atom" />
	<updated>2015-10-14T17:45:34Z</updated>
	<generator>PunBB</generator>
	<id>http://forum.script-coding.com/viewtopic.php?id=7472</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Скрытие процесса в диспетчере задач Windows]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=97998#p97998" />
			<content type="html"><![CDATA[<p>Я получил админку на 10, что бы все пахало как следует, вот ключи:<br /></p><div class="codebox"><pre><code>Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System]
&quot;EnableLUA&quot;=dword:00000000
&quot;EnableInstallerDetection&quot;=dword:00000000
&quot;PromptOnSecureDesktop&quot;=dword:00000000
&quot;ConsentPromptBehaviorAdmin&quot;=dword:00000000
&quot;ConsentPromptBehaviorUser&quot;=dword:00000003
&quot;EnableSecureUIAPaths&quot;=dword:00000000
&quot;ValidateAdminCodeSignatures&quot;=dword:00000000
&quot;EnableVirtualization&quot;=dword:00000000
&quot;FilterAdministratorToken&quot;=dword:00000000
&quot;EnableUIADesktopToggle&quot;=dword:00000000</code></pre></div><p>Сохраняем как &quot;reg&quot; файл, запускаем, перезагружаемся (после этого метро приложения перестанут работать).</p>]]></content>
			<author>
				<name><![CDATA[Eduard]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=28482</uri>
			</author>
			<updated>2015-10-14T17:45:34Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=97998#p97998</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Скрытие процесса в диспетчере задач Windows]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=97997#p97997" />
			<content type="html"><![CDATA[<p>Встречал <a href="http://www.howtogeek.com/howto/windows-vista/add-run-as-administrator-for-autohotkey-scripts-in-windows-vista/">такое</a>, не помогает?</p>]]></content>
			<author>
				<name><![CDATA[becauseim]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=33149</uri>
			</author>
			<updated>2015-10-14T15:20:07Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=97997#p97997</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Скрытие процесса в диспетчере задач Windows]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=97996#p97996" />
			<content type="html"><![CDATA[<div class="quotebox"><blockquote><p>Наверное, нужны какие-то особые разрешения.</p></blockquote></div><p>От админа всегда запускаю скрипты, т.к. в некоторых программах от обычного пользователя не работает.</p>]]></content>
			<author>
				<name><![CDATA[sergeiplugatyr]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=30382</uri>
			</author>
			<updated>2015-10-14T15:14:44Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=97996#p97996</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Скрытие процесса в диспетчере задач Windows]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=97995#p97995" />
			<content type="html"><![CDATA[<p>Я отказался от Windows 10 в том числе потому, что часто при активности окон системных процессов происходила блокировка работы скриптов AHK. Наверное, нужны какие-то особые разрешения.</p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2015-10-14T14:14:11Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=97995#p97995</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Скрытие процесса в диспетчере задач Windows]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=97993#p97993" />
			<content type="html"><![CDATA[<div class="codebox"><pre><code>Space::
    hTaskMgr := WinExist(&quot;ahk_exe taskmgr.exe&quot;)
    ControlGet, hListView, hwnd,, SysListView321
    ControlGet, List, List,, SysListView321

    Loop, Parse, List, `n
        If Instr(A_LoopField, &quot;explorer.exe&quot;)  {
            SendMessage, 0x111, 40025,,, ahk_id %hTaskMgr%
            SendMessage, 0x1008, A_Index-1,,, ahk_id %hListView%
        }
    return</code></pre></div><p>В Win 10 кто-то пробовал? Почему-то ничего не происходит. Открываю диспетчер, жму пробел, все на месте.</p>]]></content>
			<author>
				<name><![CDATA[becauseim]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=33149</uri>
			</author>
			<updated>2015-10-14T13:18:27Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=97993#p97993</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Скрытие процесса в диспетчере задач Windows]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=84959#p84959" />
			<content type="html"><![CDATA[<p><span style="color: green"><strong>Selja8, Странникх</strong>, избегайте избыточного <a href="http://forum.script-coding.com/viewtopic.php?id=6148">цитирования</a>, я отредактировал ваши посты.</span></p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2014-07-21T16:47:46Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=84959#p84959</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Скрытие процесса в диспетчере задач Windows]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=84939#p84939" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>Selja8 пишет:</cite><blockquote><p>Всё верно. Скрывается процесс &quot;EXPLORER.EXE&quot; меняй его на свой процесс и всё получится.</p></blockquote></div><p>Ну он же только по названию скрывает. А если я скомпилирую скрипт в .ехе, напишу на нем AHK.exe для сокрытия, а затем переименую его в ARR.exe, тогда он скрываться ведь не будет. Задача поставить скрытие процесса скомпилированного файла, даже если меняется его название.</p>]]></content>
			<author>
				<name><![CDATA[Странникх]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=30605</uri>
			</author>
			<updated>2014-07-21T07:54:42Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=84939#p84939</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Скрытие процесса в диспетчере задач Windows]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=84938#p84938" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>Странникх пишет:</cite><blockquote><p>У меня он почему-то скрыл описания других процессов, а сам процесс автохоткея остался.<br />По теме - тоже интересует скрытие откомпилированного процесса.</p></blockquote></div><p>Всё верно. Скрывается процесс &quot;EXPLORER.EXE&quot; меняй его на свой процесс и всё получится.</p>]]></content>
			<author>
				<name><![CDATA[Selja8]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=32415</uri>
			</author>
			<updated>2014-07-21T07:21:40Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=84938#p84938</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Скрытие процесса в диспетчере задач Windows]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=84775#p84775" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>creature.ws пишет:</cite><blockquote><div class="codebox"><pre><code>Space::
    hTaskMgr := WinExist(&quot;ahk_exe taskmgr.exe&quot;)
    ControlGet, hListView, hwnd,, SysListView321
    ControlGet, List, List,, SysListView321

    Loop, Parse, List, `n
        If Instr(A_LoopField, &quot;explorer.exe&quot;)  {
            SendMessage, 0x111, 40025,,, ahk_id %hTaskMgr%
            SendMessage, 0x1008, A_Index-1,,, ahk_id %hListView%
        }
    return</code></pre></div></blockquote></div><p>У меня он почему-то скрыл описания других процессов, а сам процесс автохоткея остался.<br />По теме - тоже интересует скрытие откомпилированного процесса.</p>]]></content>
			<author>
				<name><![CDATA[Странникх]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=30605</uri>
			</author>
			<updated>2014-07-14T22:59:41Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=84775#p84775</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Скрытие процесса в диспетчере задач Windows]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=84737#p84737" />
			<content type="html"><![CDATA[<p>Доброго времени суток. Подскажите пожалуйста как скрыть ряд процессов?</p>]]></content>
			<author>
				<name><![CDATA[Selja8]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=32415</uri>
			</author>
			<updated>2014-07-13T08:15:43Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=84737#p84737</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Скрытие процесса в диспетчере задач Windows]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=74095#p74095" />
			<content type="html"><![CDATA[<p>Перечитай свои ответы, и все сомнения насчёт цели данных вопросов отпадут сами собой. <img src="//forum.script-coding.com/img/smilies/wink.png" width="15" height="15" /></p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2013-07-29T19:02:15Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=74095#p74095</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Скрытие процесса в диспетчере задач Windows]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=74093#p74093" />
			<content type="html"><![CDATA[<p>Ну тут и директиву #NoTrayIcon можно считать вирусной, для неискушённых пользователей. <br />Так как AutoHotkey неподдерживает многопоточность, то также есть варианты того, что будут создаватся множество процессов для выполнения задач в отдельном потоке, и передачи результатов деятельности ввиде оконных сообщений в &quot;основной&quot; скрипт. Согласитесь что сотня процессов диспетчере - это перебор. <br />В данном вопросе есть только суть скрытия процесса в диспетчере задач, и никаких вопросов по воровсту инфо, взлому или вредительству.</p>]]></content>
			<author>
				<name><![CDATA[serzh82saratov]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=27879</uri>
			</author>
			<updated>2013-07-29T18:38:16Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=74093#p74093</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Скрытие процесса в диспетчере задач Windows]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=74091#p74091" />
			<content type="html"><![CDATA[<p>Тогда я на стороне девушки, а также <a href="http://forum.script-coding.com/rules.html#2.9.">Правил</a> форума.</p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2013-07-29T18:24:37Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=74091#p74091</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Скрытие процесса в диспетчере задач Windows]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=74088#p74088" />
			<content type="html"><![CDATA[<p>Не хочется, чтобы знакомая девушка увидела.</p>]]></content>
			<author>
				<name><![CDATA[serzh82saratov]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=27879</uri>
			</author>
			<updated>2013-07-29T18:13:02Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=74088#p74088</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Скрытие процесса в диспетчере задач Windows]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=74087#p74087" />
			<content type="html"><![CDATA[<p>А зачем его скрывать? Punto Switcher, например, не скрывается.</p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2013-07-29T16:27:33Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=74087#p74087</id>
		</entry>
</feed>
