MCT 0 Posted March 2, 2005 i wanna run a script like hideme commandline1 commandline2 but my script isnt working Run($CmdLine[1] "" $cmdline[2] & "" , "", @SW_HIDE ) Share this post Link to post Share on other sites
SlimShady 1 Posted March 2, 2005 Use spaces between parameters. Or make 2 Run functions. Tip: Use $CmdLineRaw: Run($CmdLineRaw , "", @SW_HIDE) Share this post Link to post Share on other sites
Blue_Drache 260 Posted March 2, 2005 (edited) Use spaces between parameters. Or make 2 Run functions.Tip:Use $CmdLineRaw: Run($CmdLineRaw , "", @SW_HIDE)<{POST_SNAPBACK}>Also, the syntax you have for your run statement is off...Run($cmdline[1] & " " & $cmdline[2] & " ","",@SW_HIDE)note the spaces inside the quotes before the first comma, and of course, the ampersands.Ampersands link variables and strings together within the same grouping and function reference. Edited March 2, 2005 by Blue_Drache Lofting the cyberwinds on teknoleather wings, I am...The Blue Drache Share this post Link to post Share on other sites