Hallo,
ich würde gerne meinen 2ten pc mit einem programm kontrollieren
also das ich auf meinem main pc eine oberfläche habe und der dann auf meinem 2ten pc etwas ausführt.
Bis jetzt wollt ich das mit TCP unso machen
finde nur nich wirklich einen anfang ![]()
Sender
[autoit]
TCPStartup
[/autoit] [autoit][/autoit] [autoit]While 200
TCPSend($socket)
WEND
Empfänger
[autoit]
TCPStartup()
[/autoit] [autoit][/autoit] [autoit]$IP = "127.0.0.1"
$Port = "4444"
While 200
If TCPListen($IP,$Port) Then
Send("{F9}")
MsgBox(0,"Send","Send")
EndIf
WEND
MfG
Luci