Can't think of any one specific manual/location that mentions that, been a while since I've actually read any type of Guide, but it is something that barely gets mentioned.
It's just the way batch files work when you call another program, even when not using the Call statement. The batch file waits until the program is finished before continuing.
The Start command has a
Wait switch so it will wait for the started application to finish, implying it won't wait if you don't use that switch. A Catch22, as you have to know about
Start and that switch to realize you need it.
I've found the sites listed below to be very helpful, and the Built-in help is also very useful -
Start | Help and Support, Search on
Command line reference, or
Command line reference A-Z
You can also type
Help in a command prompt for a list of commands, then type the command followed by
/? for help on specific commands.
And yes, you are the one who can Mark this Solved
DOS and VB Scripting Links: An A-Z Index of the Windows XP command line Command-line reference A-Z Using batch parameters Windows 95/98/ME Batch file Tutorial (Still a good basic reference for WinNT/2K/XP)
Batch File Functions for NT4/2000/XP/2003 Rob van der Woude's Scripting Pages Microsoft Script Center Beginners Guides: WindowsXP Command Prompt Beginners Guides: Understanding and Creating Batch Files