Hi, I want to run four bat file namely,
a.bat b.bat c.bat and d.bat in command prompt. (all files are located in D:\myprog\) Also i want to keep opened command prompts i.e. I want a.bat, b.bat etc to keep running at the same time in differenct command prompts. i used cmd_NamSer = "D:\myprog\a.bat" cmd_NamSer1 = "D:\myprog\b.bat" cmd_NamSer2= "D:\myprog\c.bat" cmd_NamSer3 = "D:\myprog\d.bat" system(cmd_NamSer) system(cmd_NamSer1) system(cmd_NamSer2) system(cmd_NamSer3) but while executing, it opens(executes) only 1st bat file i.e. a.bat To open another one, i have to close 1st command prompt. But i need to keep open all 4 command prompts with bat files running in it. Please help !!! -- Before posting, please read http://watir.com/support. In short: search before you ask, be nice. You received this message because you are subscribed to http://groups.google.com/group/watir-general To post: [email protected] To unsubscribe: [email protected]
