English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

Is there a DOS command that can be executed in a batch file that launches a program, and continues with the rest of the batch before the launched program ends? (CALL does not continue with the batch until the launched program ends).

2007-03-28 10:52:57 · 2 answers · asked by New to Yahoo 1 in Computers & Internet Programming & Design

2 answers

If you really mean DOS, as in MS-DOS, then no, because MS-DOS is not a multi-tasking operating system. If you are referring to the Win32 Command Processor, stop calling it DOS. It is a much more powerful command-line interpreter than the old MS-DOS one, and it has approximately equivalent power to Unix shells (except that most people don't realise it.)

The command you are looking for is:

START command

where 'command' can be any command that can be typed on a command line, including a program name.

For advanced usage and full syntax of the START command, type START/? and for help on all other cmd.exe commands, enter the following command:

"%Windir%\Help\ntcmds.chm"

2007-03-28 12:27:24 · answer #1 · answered by Klint 2 · 0 0

start program.exe


that should work

2007-03-28 18:08:36 · answer #2 · answered by chaessigbikerboy 2 · 0 0

fedest.com, questions and answers