Ribao Posted March 30, 2013 Posted March 30, 2013 #RequireAdmin #include Global $var1 $var1 = InputBox("Enter your connection name","") _RunDos("netsh interface ipv4 set subinterface") RunWait ( @ComSpec & " /c netsh interface ip set dns $var1 static 8.8.8.8" ) RunWait ( @ComSpec & " /c netsh interface ip add dns $var1 8.8.4.4" )It ins't working...I know, I am a newbie
FireFox Posted March 30, 2013 Posted March 30, 2013 (edited) Hi, Welcome to the autoit forum You need to cast the variables like this : #RequireAdmin #include <Process.au3> Global $var1 = "" $var1 = InputBox("Enter your connection name", "") _RunDos("netsh interface ipv4 set subinterface") RunWait(@ComSpec & " /c netsh interface ip set dns " & $var1 & " static 8.8.8.8") RunWait(@ComSpec & " /c netsh interface ip add dns " & $var1 & " 8.8.4.4") Edit: I was searching for the word: There is no string interpolation like in php. Br, FireFox. Edited March 30, 2013 by FireFox
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