| azimuth40 2003-08-15, 1:55 pm |
| unless you want a new copy of command.com to run simply list each exe on a separate line with a fully qualified file name.
..................
rem this is a batch file
rem this is the first exe
"c:\mydosfolder\something1.exe"
rem command line above is in quotes because rem of greater that 8 letter path segments
rem batch returns here after completion
c:\mydos\some2.com
rem no quotes needed above
command /c some2.exe
rem program above executed via a secondary
rem copy of command.com
exit:
..............
Remember if you are using NT/2K/XP that unless you specifically start a copy of command.com your program will be handled by cmd.exe which has some interaction differences. |