<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Серый форум &mdash; AHK: Как можно на удаленном компьютере запустить .exe. Без psexec]]></title>
	<link rel="self" href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=15356&amp;type=atom" />
	<updated>2020-05-13T11:51:00Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=15356</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Как можно на удаленном компьютере запустить .exe. Без psexec]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=139499#p139499" />
			<content type="html"><![CDATA[<p>avr hdmi passthrough. Прямой вывод звука. В программе Kodi.</p>]]></content>
			<author>
				<name><![CDATA[EV]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=40256</uri>
			</author>
			<updated>2020-05-13T11:51:00Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=139499#p139499</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Как можно на удаленном компьютере запустить .exe. Без psexec]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=139490#p139490" />
			<content type="html"><![CDATA[<p>Лично я вижу какие-то огрызки кода.</p>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2020-05-12T20:57:05Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=139490#p139490</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Как можно на удаленном компьютере запустить .exe. Без psexec]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=139484#p139484" />
			<content type="html"><![CDATA[<p><strong>ypppu</strong><br />А AutoHotkey к этому какое имеет отношение? <br />Прямое. CMD run</p>]]></content>
			<author>
				<name><![CDATA[EV]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=40256</uri>
			</author>
			<updated>2020-05-12T18:42:36Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=139484#p139484</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Как можно на удаленном компьютере запустить .exe. Без psexec]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=139482#p139482" />
			<content type="html"><![CDATA[<p>Нужно послать правильный запрос на http://my_computer:8080 что ли?</p>]]></content>
			<author>
				<name><![CDATA[ypppu]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=5974</uri>
			</author>
			<updated>2020-05-12T17:59:19Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=139482#p139482</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Как можно на удаленном компьютере запустить .exe. Без psexec]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=139479#p139479" />
			<content type="html"><![CDATA[<p>localhost:8081/jsonrpc</p>]]></content>
			<author>
				<name><![CDATA[EV]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=40256</uri>
			</author>
			<updated>2020-05-12T17:49:30Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=139479#p139479</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Как можно на удаленном компьютере запустить .exe. Без psexec]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=139478#p139478" />
			<content type="html"><![CDATA[<p>Kodi<br /><strong>ypppu</strong><br />&nbsp; </p><div class="codebox"><pre><code>    Run, %comspec% /c curl -i -X POST -d &quot;{\&quot;jsonrpc\&quot;:\&quot;2.0\&quot;`,\&quot;method\&quot;:\&quot;Settings.SetSettingValue\&quot;`, \&quot;params\&quot;:{\&quot;setting\&quot;:\&quot;audiooutput.audiodevice\&quot;`,\&quot;value\&quot;:\&quot;DIRECTSOUND:{32190067-FAEC-41A6-950A-F0227F9DB866}\&quot;}`,\&quot;id\&quot;:1}&quot; -H &quot;content-type: application/json;&quot; http://localhost:8081/jsonrpc,, Hide
	
    Run, %comspec% /c curl -i -X POST -d &quot;{\&quot;jsonrpc\&quot;:\&quot;2.0\&quot;`,\&quot;method\&quot;:\&quot;Settings.SetSettingValue\&quot;`, \&quot;params\&quot;:{\&quot;setting\&quot;:\&quot;audiooutput.channels\&quot;`,\&quot;value\&quot;:8}`,\&quot;id\&quot;:1}&quot; -H &quot;content-type: application/json;&quot; http://localhost:8081/jsonrpc,,Hide
	
    Run, %comspec% /c curl -i -X POST -d &quot;{\&quot;jsonrpc\&quot;:\&quot;2.0\&quot;`,\&quot;method\&quot;:\&quot;Settings.SetSettingValue\&quot;`, \&quot;params\&quot;:{\&quot;setting\&quot;:\&quot;audiooutput.passthrough\&quot;`,\&quot;value\&quot;:true}`,\&quot;id\&quot;:1}&quot; -H &quot;content-type: application/json;&quot; http://localhost:8081/jsonrpc,, Hide
	
    Run, %comspec% /c curl -i -X POST -d &quot;{\&quot;jsonrpc\&quot;:\&quot;2.0\&quot;`,\&quot;method\&quot;:\&quot;Settings.SetSettingValue\&quot;`, \&quot;params\&quot;:{\&quot;setting\&quot;:\&quot;audiooutput.passthroughdevice\&quot;`,\&quot;value\&quot;:\&quot;WASAPI:default\&quot;}`,\&quot;id\&quot;:1}&quot; -H &quot;content-type: application/json;&quot; http://localhost:8081/jsonrpc,, Hide
	
    Run, %comspec% /c curl -i -X POST -d &quot;{\&quot;jsonrpc\&quot;:\&quot;2.0\&quot;`,\&quot;method\&quot;:\&quot;GUI.ShowNotification\&quot;`,\&quot;params\&quot;:{\&quot;title\&quot;:\&quot;AUDIO OUTPUT\&quot;`,\&quot;message\&quot;:\&quot;AVR\&quot;`,\&quot;image\&quot;:\&quot;C:/Users/Home/Documents/ISO/speaker3.png\&quot;}`,\&quot;id\&quot;:1}&quot; -H &quot;content-type: application/json;&quot; http://localhost:8081/jsonrpc,,Hide</code></pre></div>]]></content>
			<author>
				<name><![CDATA[EV]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=40256</uri>
			</author>
			<updated>2020-05-12T17:47:46Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=139478#p139478</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Как можно на удаленном компьютере запустить .exe. Без psexec]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=139474#p139474" />
			<content type="html"><![CDATA[<p>Я так понял, что есть какой-то экзешник, который надо запускать из вне.<br />Для этого удобна psexec.<br />Ей сделали ревёрсинженеринг и выложили алгоритм тут:<br /><a href="https://www.ntkernel.com/inside-psexec-remote-administration/">https://www.ntkernel.com/inside-psexec- … istration/</a></p>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2020-05-12T16:49:05Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=139474#p139474</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Как можно на удаленном компьютере запустить .exe. Без psexec]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=139470#p139470" />
			<content type="html"><![CDATA[<p>О чём вообще разговор? Удалённый компьютер будет периодически откуда-то скачивать файлик с заданием и выполнять его?</p>]]></content>
			<author>
				<name><![CDATA[ypppu]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=5974</uri>
			</author>
			<updated>2020-05-12T15:19:26Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=139470#p139470</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Как можно на удаленном компьютере запустить .exe. Без psexec]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=139465#p139465" />
			<content type="html"><![CDATA[<p>И как это запустит экзешник на удаленном компьютере?</p>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2020-05-12T11:55:05Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=139465#p139465</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Как можно на удаленном компьютере запустить .exe. Без psexec]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=139459#p139459" />
			<content type="html"><![CDATA[<div class="codebox"><pre><code>Run, %comspec% /c curl -i -X POST -d &quot;{\&quot;jsonrpc\&quot;: \&quot;2.0\&quot;`, \&quot;method\&quot;: \&quot;Application.SetVolume\&quot;`, \&quot;params\&quot;: { \&quot;volume\&quot;: 50 }`,\&quot;id\&quot;: 1}&quot; -H &quot;content-type:application/json&quot; http://localhost:8080/jsonrpc</code></pre></div><p>Kodi.</p>]]></content>
			<author>
				<name><![CDATA[EV]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=40256</uri>
			</author>
			<updated>2020-05-11T21:59:19Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=139459#p139459</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Как можно на удаленном компьютере запустить .exe. Без psexec]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=139458#p139458" />
			<content type="html"><![CDATA[<p>http://localhost:8080/jsonrpc?</p>]]></content>
			<author>
				<name><![CDATA[EV]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=40256</uri>
			</author>
			<updated>2020-05-11T21:51:25Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=139458#p139458</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Как можно на удаленном компьютере запустить .exe. Без psexec]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=139457#p139457" />
			<content type="html"><![CDATA[<div class="quotebox"><blockquote><p>Как можно на удаленном компьютере запустить .exe.</p></blockquote></div><p> А AutoHotkey к этому какое имеет отношение? Если у Вас есть доступ к тому компьютеру, то AutoHotkey не нужна. А если нету, то и AutoHotkey не поможет.</p>]]></content>
			<author>
				<name><![CDATA[ypppu]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=5974</uri>
			</author>
			<updated>2020-05-11T20:01:35Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=139457#p139457</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Как можно на удаленном компьютере запустить .exe. Без psexec]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=139455#p139455" />
			<content type="html"><![CDATA[<p>Ищите опен-сорс аналоги psexec и переводите на ahk.</p>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2020-05-11T17:54:52Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=139455#p139455</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK: Как можно на удаленном компьютере запустить .exe. Без psexec]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=139453#p139453" />
			<content type="html"><![CDATA[<div class="codebox"><pre><code>Run, %comspec% /c psexec -i \\192.168.1.35 -u Home -p foresters cmd /c start &quot;&quot; &quot;C:\Users\Home\Documents\Script\SynchronizesTime.exe&quot;,, Hide</code></pre></div>]]></content>
			<author>
				<name><![CDATA[EV]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=40256</uri>
			</author>
			<updated>2020-05-11T17:14:50Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=139453#p139453</id>
		</entry>
</feed>
