lnx2050 Posted March 4, 2004 Posted March 4, 2004 (edited) hello, i'd like to know how to get a parameter sended in command line, like in BATCH files ? @echo Off Rem *** Hello.bat *** SET Name=%1 Echo Hello %1 Thx U Ln. Edited March 4, 2004 by lnx2050
lnx2050 Posted March 4, 2004 Author Posted March 4, 2004 (edited) Ho Yeeeees it works, i Thank You Larry $CmdLine[0] = 1 $VAR = $CmdLine[1] Msgbox(4096, "Hello ",$VAR) Edited March 4, 2004 by lnx2050
scriptkitty Posted March 4, 2004 Posted March 4, 2004 I prefer: if $CmdLine[0] >= 1 then ; if command line is given $VAR = $CmdLine[1] Msgbox(4096, "Hello ",$VAR) endif AutoIt3, the MACGYVER Pocket Knife for computers.
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