Aug 29, 2006 #1 justride Programmer Joined Jan 9, 2004 Messages 251 Location 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 Joined Sep 4, 2002 Messages 9,396 Location US Try: @echo on "c:\crap.exe[!]"[/!] -Darg=crap pause Upvote 0 Downvote
Aug 29, 2006 #3 bcastner IS-IT--Management Joined Aug 13, 2002 Messages 29,271 Location 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 Joined Oct 23, 2002 Messages 574 Location 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