Possible Duplicate:
How do I run a bat file in the background from another bat file?
I want to make a bat file that run a local server (Seleneium grid2 *.jar) and then excute command to assign nodes to it. My problem is that when I call this
java -jar selenium-server-standalone-2.28.0.jar -role hub
call assign-node.bat
The bat file runs the server and keeps listening without running the second command (call)!
What is the best way to do it ?
Thanks