<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Серый форум &mdash; AHK: Добавить ahk-скрипт в автозагрузку Windows]]></title>
	<link rel="self" href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=6230&amp;type=atom" />
	<updated>2017-09-15T12:33:01Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=6230</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Добавить ahk-скрипт в автозагрузку Windows]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=119358#p119358" />
			<content type="html"><![CDATA[<p>На рабочем столе создал ярлык для папки &quot;Автозагрузка&quot;. <br /> В win 8.1:<br />C:\Users\USERNAME\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup<br />и просто копирую в эту папку ярлык скрипта, - и работает.</p>]]></content>
			<author>
				<name><![CDATA[aist51]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=30766</uri>
			</author>
			<updated>2017-09-15T12:33:01Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=119358#p119358</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Добавить ahk-скрипт в автозагрузку Windows]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=115258#p115258" />
			<content type="html"><![CDATA[<p>Попробуйте в начало вставить</p><div class="codebox"><pre><code>SetWorkingDir % A_ScriptDir</code></pre></div><p>либо в #Include прописать полный путь.</p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2017-04-22T22:02:06Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=115258#p115258</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Добавить ahk-скрипт в автозагрузку Windows]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=115257#p115257" />
			<content type="html"><![CDATA[<p>Скрипт при автоматическом запуске после загрузки системы тут же заканчивает свою работу ссылаясь на вложенную библиотеку, которая находится рядом с основным скриптом:<br /><span class="postimg"><img src="http://puu.sh/vsU9S/9b0521f812.png" alt="http://puu.sh/vsU9S/9b0521f812.png" /></span></p><p>При повторном ручном запуске ошибки не возникает. Подскажите, пожалуйста, как решить проблему автозагрузки?</p>]]></content>
			<author>
				<name><![CDATA[becauseim]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=33149</uri>
			</author>
			<updated>2017-04-22T21:46:02Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=115257#p115257</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Добавить ahk-скрипт в автозагрузку Windows]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=51649#p51649" />
			<content type="html"><![CDATA[<p>Гугл выдаёт следущее:</p><div class="quotebox"><blockquote><p>Для удаления (добавления) программы из загрузки системы используйте ветки реестра:<br />HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run (текущий пользователь)<br />HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\RunOnce (текущий пользователь, запуск один раз)<br />HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run (все пользователи)<br />HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce (все пользователи, запуск один раз)<br />HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Run (текущий пользователь, только 64-бит версия)<br />HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\RunOnce (все пользователи, запуск один раз, только 64-бит версия)</p></blockquote></div><p>Последние две ветки только для Windows 7.<br />Кроме того, можно добавить ярлык скрипта в папку автозагрузки, путь к которой содержится во встроенной переменной <em>A_Startup</em> (для текущего пользователя) или <em>A_StartupCommon</em> (для всех пользователей).</p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2011-09-18T10:53:31Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=51649#p51649</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Добавить ahk-скрипт в автозагрузку Windows]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=51644#p51644" />
			<content type="html"><![CDATA[<div class="codebox"><pre><code>#notrayicon
RegWrite, REG_SZ, HKEY_LOCAL_MACHINE, SOFTWARE\Microsoft\Windows\CurrentVersion\Run, {что хотите}, %A_ScriptName%</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Вадим]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27175</uri>
			</author>
			<updated>2011-09-18T10:15:31Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=51644#p51644</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Добавить ahk-скрипт в автозагрузку Windows]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=51638#p51638" />
			<content type="html"><![CDATA[<p>Нужно чтобы при первом запуске скрипт прописался в автозагрузку винды.</p>]]></content>
			<author>
				<name><![CDATA[propostaff]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27213</uri>
			</author>
			<updated>2011-09-18T05:49:10Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=51638#p51638</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Добавить ahk-скрипт в автозагрузку Windows]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=51629#p51629" />
			<content type="html"><![CDATA[<p>В смысле, &quot;скрипты для автозагрузки&quot;? Что они должны делать?</p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2011-09-17T23:20:20Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=51629#p51629</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK: Добавить ahk-скрипт в автозагрузку Windows]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=51627#p51627" />
			<content type="html"><![CDATA[<p>ПОдскажите есть у кого нибудь готовые скрипты для автозагрузки?<br />Если нет подскажите какие параметры реестра создавать?<br />Необходимо чтобы работало в винде XP/7</p>]]></content>
			<author>
				<name><![CDATA[propostaff]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27213</uri>
			</author>
			<updated>2011-09-17T22:04:32Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=51627#p51627</id>
		</entry>
</feed>
