What I trying to do is to run hg commands using firefox extension without showing command prompt window all the time.
I initiate process with hg.exe file and then execute hg commands by passing arguments in to it.
- process.init("hg.exe");
- args["update"];
- process.run(true,args,args.lenght);
But I am confused how I am going to use hstart.exe on top of it
Any suggestions ?