XP Clients Only!!!!
Vbscript code:
'start
set shell = createobject("wscript.shell")
dim strComputerName
strComputerName=WScript.Arguments.Item(0)
shell.run "hcp://CN=Microsoft%20Corporation,L=Redmond,S=Washington, C=US/Remote%20Assistance/Escalation/Unsolicited/Unsolicitedrcui.htm"
shell.AppActivate("Help and Support Center")
wscript.sleep 2000
shell.sendkeys "{TAB 9}"
shell.sendkeys strComputerName
wscript.sleep 500
shell.sendkeys "%c"
'end
Save the code as RA-offer.vbs. The code takes one argument: a computer name or ip address.
Hyena Tool:
Offer Remote Assistance
cscript \\server\share\ra-offer.vbs "%E%"
Using the tool and script together you will be presented with a Help and Support Center window with the "You are connected to:" box already populated.
I won't go into further detail at the moment, but here's a link that automates the remote assistance viewing process:
"Auto Accept and Take Control for Remote Assistance" http://www.anetforums.com/posts.aspx?ThreadIndex=3115
Vbscript code:
'start
set shell = createobject("wscript.shell")
dim strComputerName
strComputerName=WScript.Arguments.Item(0)
shell.run "hcp://CN=Microsoft%20Corporation,L=Redmond,S=Washington, C=US/Remote%20Assistance/Escalation/Unsolicited/Unsolicitedrcui.htm"
shell.AppActivate("Help and Support Center")
wscript.sleep 2000
shell.sendkeys "{TAB 9}"
shell.sendkeys strComputerName
wscript.sleep 500
shell.sendkeys "%c"
'end
Save the code as RA-offer.vbs. The code takes one argument: a computer name or ip address.
Hyena Tool:
Offer Remote Assistance
cscript \\server\share\ra-offer.vbs "%E%"
Using the tool and script together you will be presented with a Help and Support Center window with the "You are connected to:" box already populated.
I won't go into further detail at the moment, but here's a link that automates the remote assistance viewing process:
"Auto Accept and Take Control for Remote Assistance" http://www.anetforums.com/posts.aspx?ThreadIndex=3115
Comment