MarkMarkMark 0 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? Share this post Link to post Share on other sites
nobby 0 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 Share this post Link to post Share on other sites
buzz44 1 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 Share this post Link to post Share on other sites
MarkMarkMark 0 Posted April 22, 2005 _RunDOS invalid function name? Share this post Link to post Share on other sites
buzz44 1 Posted April 22, 2005 No, pretty sure you need a BETA version of AutoIt but. qq Share this post Link to post Share on other sites