I have to execute two batch files through a single batch file. One batch file has a command for starting a server application and other is a client application. so the condition is that once the server is up, only then client should try to hit server.
I have tried following thing,
parent.bat has a following content
start server.bat
start client.bat
and found that both applications are running separately but could not achieve the order in which it should be.