KenzoIT Posted March 5, 2010 Posted March 5, 2010 Hi everyone, I have some problems with my code. $user= "Kenzo" $passwd = "111111" $yes = "y" $rc = _RunDOS("telnet 110.120.200.134") WinWait("Telnet", "", 4) Send = ($yes) send = ("{Enter}") WinWait("Telnet", "", 2) Send = ("$user") send = ("{Enter}") WinWait("Telnet", "", 2) Send = ($passwd) send = ("{Enter}") WinWait("Telnet", "", 2) $rc = _RunDOS("net start messenger") send = ("{Enter}") It doesn't work. Please help me fix the problem. Thanks all !
PsaltyDS Posted March 5, 2010 Posted March 5, 2010 Send = ("$user")Is your user name really "$user" or did you mean to use the contents of that variable (without the quotes around it), and look again through the help file. The syntax for that function is: Send($user) Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
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