Posts: 44
Threads: 12
Joined: Apr 2006
I know how to start a macro on a remote pc but how do I start it on a certain "user" on that pc. Right now it only works on the active user.
net "71.00.000.00" "pass123" "marco"
how do I start the macro on pc 71.00.000.00/user2
Posts: 175
Threads: 43
Joined: Jun 2004
Can you set each user a different port "Options->Security->Network..." (default is 8177)? Then send the message to the specified port. Just a thought.
!!!untested!!!
user 1
net "71.00.000.00:8177" "pass123" "marco"
user2
net "71.00.000.00:8178" "pass123" "marco"
Matt B
Matt B
Posts: 12,097
Threads: 142
Joined: Dec 2002
Currently it is not possible. Before switching user, QM stops listening on the port.
Some triggers, eg file triggers, work on inactive user sessions too. Try to run another macro on active user session. The macro could modify some file. The real macro could have file trigger...
Posts: 44
Threads: 12
Joined: Apr 2006
Yeah youve showed me how to work with file triggers alil.. Ill see if I can figure the rest out.
thanks, nate