MarkMarkMark Posted April 22, 2005 Posted April 22, 2005 Hej guys... Is there a function in Autoit to give a net send? I can do it now with run("cmd.exe") then send a keystroke "net send * test" but is there a easy way for it?
nobby Posted April 22, 2005 Posted April 22, 2005 $msg = inputBox("MESSAGE", "Type the message") RunWait(@ComSpec & ' /c net send * ' & $msg , @ScriptDir, @SW_HIDE) Can't test it but it should work CheersNobby
buzz44 Posted April 22, 2005 Posted April 22, 2005 (edited) You can check out this topic.http://www.autoitscript.com/forum/index.php?showtopic=9884Thats the 'new net send', but it also contains lots of others that have been posted.I think you can also use.$computer = "Insert computer name" $msg = "hello" _RunDOS("net send " & $computer & " " & $msg) Edited April 22, 2005 by Burrup qq
buzz44 Posted April 22, 2005 Posted April 22, 2005 No, pretty sure you need a BETA version of AutoIt but. qq
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now