Aug 29, 2006 #1 justride Programmer Jan 9, 2004 251 US how can i create a batch file to launch an executable with parameter arguments... @echo on "c:\crap.exe -Darg=crap" pause the -Darg=crap is not being processed, but the dos window doesnt not display any error, it just executes crap.exe alone. thanks
how can i create a batch file to launch an executable with parameter arguments... @echo on "c:\crap.exe -Darg=crap" pause the -Darg=crap is not being processed, but the dos window doesnt not display any error, it just executes crap.exe alone. thanks
Aug 29, 2006 #2 smah MIS Sep 4, 2002 9,396 US Try: @echo on "c:\crap.exe[!]"[/!] -Darg=crap pause Upvote 0 Downvote
Aug 29, 2006 #3 bcastner IS-IT--Management Aug 13, 2002 29,271 US If you were at a command line, you would in fact type exactly c:\crap.exe -Darg=crap ? I am not sure but try: @echo on CALL "c:\crap.exe -Darg^=crap" pause Upvote 0 Downvote
If you were at a command line, you would in fact type exactly c:\crap.exe -Darg=crap ? I am not sure but try: @echo on CALL "c:\crap.exe -Darg^=crap" pause
Aug 29, 2006 #4 assets Technical User Oct 23, 2002 574 AU If you do not want to see it on the screen consider porting it to a nul Never give up never give in. There are no short cuts to anything worth doing Upvote 0 Downvote
If you do not want to see it on the screen consider porting it to a nul Never give up never give in. There are no short cuts to anything worth doing