Date: Mon, 1 Mar 1999 17:48:18 +0200 (IST) From: Eli Zaretskii X-Sender: eliz AT is To: Hubert Toullec cc: djgpp AT delorie DOT com Subject: Re: launch programs under NT4 In-Reply-To: <7be4ke$e9i$1@platane.wanadoo.fr> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com On Mon, 1 Mar 1999, Hubert Toullec wrote: > In a certain script, I launched MSACCESS with the following command : > start /W c:/Program Files/.../MSACCESS.EXE > (/W wait for the MSACCESS to finish before continuing the script : this > behaviour is mandatory in my script) If you use "start /w", why do you need `start' at all? Just run MSACCESS.EXE directly, it should do the same, I think. > This works fine under Windows 95/98 because start.exe is an external > command, but under NT, start is an internal command of cmd.exe > > Does anyone know how to get the same behaviour under NT You can always say "cmd /c start /w msaccess.exe" (or replace cmd with %ComSpec%).