0

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.

  1. process.init("hg.exe");
  2. args["update"];
  3. process.run(true,args,args.lenght);

But I am confused how I am going to use hstart.exe on top of it

Any suggestions ?

Nitesh
  • 553
  • 2
  • 10
  • 26
  • Maybe http://stackoverflow.com/questions/298562/windows-xp-or-vista-how-can-i-run-a-batch-file-in-the-background-no-windows-dis could help? – VonC Jul 06 '10 at 20:47

1 Answers1

0

Just pass hg commands as arguments in hstart.exe...that will do the trick !!!

Nitesh
  • 553
  • 2
  • 10
  • 26