lnx2050 0 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 Share this post Link to post Share on other sites
lnx2050 0 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 Share this post Link to post Share on other sites
scriptkitty 1 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. Share this post Link to post Share on other sites