The information in this article applies to:
SUMMARYThis article describes how to start programs sequentially in Windows using the "start /w" command. MORE INFORMATION
To start programs sequentially in Windows, create a text file containing
the following lines:
start /w <program1.exe> Save the text file with a .bat extension. For example, you could create the following Test.bat file: start /w calc.exe After you save the Test.bat file, double-clicking it causes Calculator to start. After you quit Calculator, Notepad starts. When you use this method, the programs in the batch file are started sequentially. The next program does not start until you quit the previous program. Additional query words: switches command line
Keywords : win95 win98 winnt |
Last Reviewed: April 7, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |