Well i got it to work incase anybody is interested.
My 1.bat contains the below command and start\'s 2.bat in a different window. When 2.bat close\'s, no just by EOF like what CALL does...but actually when you close the window by \"pushing the x\"...it works without no prompts and carries on like it is a call function...seeing this let\'s you know it is simple..but can be overlooked obviously if your me. Took me almost 2 days off and on to figure it out.
(this is on 2k. 98\'s START/W does not give a prompt so its fine on it)
START /W CMD /C START /B /W 2.BAT
(note: without the /B 3 windows would be opened 1. for the first start, 1 for the second, and 1 for the .bat.)
obviously it start\'s another 32bit command processor and waits for that process to finsh. Since it is waiting for cmd to close..it does not matter how the .bat file terminates because the first START cares less. Thus no prompt.
If you would do CMD /C START /W 2.BAT or START /W 2.BAT, and close 2.BAT by \"pushing the x\", you would recieve a prompt of \"^CTerminate Batch job? (Y/N). Why? i dont know, it dont in win98. i can only guess it is because if your terminating the batch manually you most *likely* want to terminate the batch. There really should be a switch to turn that prompt off...but there is not.