<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Серый форум &mdash; AHK: медленное выполнение Run uTorrent с загруженным торент файлом]]></title>
	<link rel="self" href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=15222&amp;type=atom" />
	<updated>2020-03-05T08:21:18Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=15222</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: медленное выполнение Run uTorrent с загруженным торент файлом]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=138323#p138323" />
			<content type="html"><![CDATA[<p>Что интересно, если торрент файл без расширения, то Eset не тормозит запуск.<br />По этому чтобы не снижать степень защиты (так как добавление в исключение ThreatSaense torrent расширения не устраняет замедление запуска, помогает только отключение сканирование при открытии файла в ThreatSaense. Дополнительно для ускорения запуска самого uTorrent клиента в расширенных настройках ThreatSaense снял галку с &quot;расширенная эвристика запуска файлов&quot; и uTorrent клиент вместо 6-7 сек. запускается ~3сек) и иметь скорость запуска, решил отрубить расширение у торрент фалов.<br /></p><div class="codebox"><pre><code>path = %1%
SplitPath, path , OutFileName, OutDir, OutExtension, OutNameNoExt, OutDrive
FileMove, %path%, C:\Temp\%OutNameNoExt%
run, C:\staff\Progs\uTorrent\uTorrent.exe /MINIMIZED C:\Temp\%OutNameNoExt%</code></pre></div><p>Весь код выглядит так.<br /></p><div class="codebox"><pre><code>#NoEnv
#WinActivateForce
#SingleInstance, force
SetTitleMatchMode, 2
path = %1%
SplitPath, path , OutFileName, OutDir, OutExtension, OutNameNoExt, OutDrive
FileMove, %path%, C:\Temp\%OutNameNoExt%
run, C:\staff\Progs\uTorrent\uTorrent.exe /MINIMIZED C:\Temp\%OutNameNoExt%
WinWait, Добавление нового торрента, , 12
WinActivate, Добавление нового торрента
ControlGetPos, x, y, w, h, Button15, Добавление нового торрента
MouseMove, X + 15, Y + 10 , 0
run, C:\staff\uTorrent_osd.exe
return</code></pre></div>]]></content>
			<author>
				<name><![CDATA[OmTatSat]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=33453</uri>
			</author>
			<updated>2020-03-05T08:21:18Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=138323#p138323</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: медленное выполнение Run uTorrent с загруженным торент файлом]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=138321#p138321" />
			<content type="html"><![CDATA[<p>Виновник задержки Eset smart security.</p>]]></content>
			<author>
				<name><![CDATA[OmTatSat]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=33453</uri>
			</author>
			<updated>2020-03-04T23:57:44Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=138321#p138321</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: медленное выполнение Run uTorrent с загруженным торент файлом]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=138319#p138319" />
			<content type="html"><![CDATA[<p>Run %comspec% /c &quot;&quot;C:\staff\Progs\uTorrent\uTorrent.exe&quot; /MINIMIZED %1%&quot;, ,Hide<br />Даёт запуск тоже в 6-7 секунд.</p>]]></content>
			<author>
				<name><![CDATA[OmTatSat]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=33453</uri>
			</author>
			<updated>2020-03-04T21:35:51Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=138319#p138319</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: медленное выполнение Run uTorrent с загруженным торент файлом]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=138318#p138318" />
			<content type="html"><![CDATA[<p>Проверил, примерно через 2 секунды после запуска команды&nbsp; run, C:\staff\Progs\uTorrent\uTorrent.exe /MINIMIZED %1% <br />файл в проводнике уже виден, но возможно(скорее всего) он доступен ещё раньше, просто проводник обновляется с задержкой.</p>]]></content>
			<author>
				<name><![CDATA[OmTatSat]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=33453</uri>
			</author>
			<updated>2020-03-04T21:22:54Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=138318#p138318</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK: медленное выполнение Run uTorrent с загруженным торент файлом]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=138315#p138315" />
			<content type="html"><![CDATA[<p>Здравствуйте, при запуске<br />run, C:\staff\Progs\uTorrent\uTorrent.exe /MINIMIZED %1%<br />окно торента появляется через 6-7 секунд.</p><p>При запуске того же файла так<br />run, C:\staff\Progs\uTorrent\uTorrent.exe /MINIMIZED &quot;C:\Users\Sat\AppData\Local\Temp\trigger.2020.satrip.1-15-seriya-3.torrent&quot;<br />окно торента появляется через 2 секунды.</p><p>В чём может быть дело? Как можно ускорить запуск?</p>]]></content>
			<author>
				<name><![CDATA[OmTatSat]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=33453</uri>
			</author>
			<updated>2020-03-04T20:48:59Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=138315#p138315</id>
		</entry>
</feed>
