sosimple Posted March 31, 2007 Posted March 31, 2007 Hi. I have this: RunWait(@ComSpec & ' /c wget --read-timeout=60 --http-user=mynick --http-password=mypass "http://192.168.0.1/wizard.htm"', "", @SW_HIDE) With it I send the pass and the nick of the modem ,to the modem for login, by a program named wget ,which runs in a dos window. It works fine. I want to change it a litle. I have made this variables : $routerSite="http://192.168.0.1/wizard.htm" $mynick=mynick $mypass=mypass I want to put this variables to the initial command. Can you help? I try: RunWait(@ComSpec & " /c wget --read-timeout=60 --http-user=" & $mynick & "--http-password=" &mypass & " " &$routerSite, "", @SW_HIDE) But doesnt work ....
Developers Jos Posted March 31, 2007 Developers Posted March 31, 2007 $mynick="mynick" $mypass="mypass" RunWait(@ComSpec & " /c wget --read-timeout=60 --http-user=" & $mynick & " --http-password=" & $mypass & ' "' & $routerSite & '"', "", @SW_HIDE) SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
gamerman2360 Posted March 31, 2007 Posted March 31, 2007 (edited) $routerSite="http://192.168.0.1/wizard.htm" $mynick="mynick" $mypass="mypass" RunWait(@ComSpec & " /c wget --read-timeout=60 --http-user=" & $mynick & " --http-password=" & $mypass & " " & $routerSite, "", @SW_HIDE)oÝ÷ Ø-«mêk¡¹^ l º()í êmªê-ZÕZ+kx,ªê-"Ü(ºWfjG¢¶Ê2¢ê')ÞyÛh·*^jëh×6Opt("ExpandVarStrings", 1) $routerSite="http://192.168.0.1/wizard.htm" $mynick="mynick" $mypass="mypass" RunWait("@ComSpec@ /c wget --read-timeout=60 --http-user=$mynick$ --http-password=$mypass$ $routerSite$", "", @SW_HIDE) Edit.. 6 mins too late Edited March 31, 2007 by gamerman2360
sosimple Posted March 31, 2007 Author Posted March 31, 2007 $routerSite="http://192.168.0.1/wizard.htm"$mynick="mynick"$mypass="mypass"RunWait(@ComSpec & " /c wget --read-timeout=60 --http-user=" & $mynick & " --http-password=" & $mypass & " " & $routerSite, "", @SW_HIDE) Thanks very match to all. I made it finaly. The above works ok if i change this:$routerSite='"http://192.168.0.1/wizard.htm"' . It needed the symbol ' at the begining and the end...
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