Running another program in Windows bat file and not create child process

前端 未结 7 575
悲哀的现实
悲哀的现实 2020-12-01 12:46

I have subversion server with a post-commit hook to do something.

I want the checkin finish soon, not wait the hook script. But by design, the Subversion post-commi

相关标签:
7条回答
  • 2020-12-01 13:36

    Could you use the windows task scheduler command line interface "schtasks /run" to start a job that runs the "another_prog"? You'd have to create the job ahead of time. There also used to be a "SOON" program with the Windows (NT) Resource Kit that would create dynamic entries for the "AT" command scheduler to run a job in a few minutes that would not require setting up a job ahead of time, it can still be found with a little searching.

    0 讨论(0)
提交回复
热议问题