tiger223 0 Posted March 26, 2004 Share Posted March 26, 2004 $CmdLine[0] = 1 $VAR = $CmdLine[1] Run("D:\uptime.exe ip:$VAR /cmd", "", @SW_MINIMIZE) For some reason when i run the autoit script the commandline doesn't get parsed. I remember in the old AutoIT %1% would simply work. If anyone could help me fix this script it would be great. Thanks. Link to post Share on other sites
Developers Jos 2,852 Posted March 26, 2004 Developers Share Posted March 26, 2004 The variable shouldn't be inside a string .... Give it a try this way: if $CmdLine[0] > 0 then Run("D:\uptime.exe ip:" & $CmdLine[1] & " /cmd", "", @SW_MINIMIZE) endif 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. Link to post Share on other sites
tiger223 0 Posted March 26, 2004 Author Share Posted March 26, 2004 Thanks alot JdeB works Link to post Share on other sites
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