View Single Post
Old 02-09-2005, 03:18 PM   #13 (permalink)
Pellaz
Addict
 
Location: Texas
Thanks for your patience and help Dilbert, I appreciate it.

The pipes are there because the information I was able to find on my own suggested that as a way to start multiple processes via a batch. The sample with the pipes in it does everything I want to a T except closing the cmd.exe window, and every other method I tried I couldn't get to work even that well.

As per your suggestion, I tried this one:
Code:
start "path1.exe" "file"
start "c:\Path2.exe"
start "c:\Path3.exe"
start explorer URL
This only comes up partialy functional for me. Lines 1 and 4 go off just like they should. The initial cmd window closes as I'd like with this one. But now, lines 2 and 3 don't actualy start the programs, but rather open up a cmd window titled "c:\path2/3.exe" with a prompt at wherever the batch file is located. I built the second batch by deleting the pipes, inserting the starts and breaks, so I know there aren't any typos in the paths.
__________________
" ' Big Mouth.
Remember it took three of you to kill me.
A god, a boy, and, last and least, a hero.' "
Pellaz is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76