RE: [Request] '!remote' send remote assistance request
you just have to send "/assist" to request the remote-session, which you can do by e.g. an autoresponse script. or write you´r own to send the "/assist" and to load an external "exe" programm
(you can create a script "exe" e.g. with autoit (google it) )
here is the script you can use to press the right buttons ... (script language : autoit)
the scipt is optimized for german users. you have to rename the window titles ... (remoteunterstützung = remotesession??)
have fun with it
----------------------------------------------------------------------
WinWaitActive("Remoteunterstützung")
AutoItSetOption("SendKeyDelay", 400)
Send("{TAB}")
Sleep(2000)
Send("{SPACE}")
WinWaitActive("Remoteunterstützung -- Web Page Dialog")
AutoItSetOption("SendKeyDelay", 400)
Send("{TAB}")
Sleep(2000)
Send("{SPACE}")
; Finished!
____________________________________________
|