在Windows bat文件中运行另一个程序而不创建子进程

时间:2009-10-08 07:40:04

标签: windows process batch-file

我有一个带有post-commit钩子的subversion服务器来做某事。

我希望很快完成签入,而不是等待钩子脚本。 但是按照设计,Subversion post-commit钩子脚本将一直运行,直到所有进程退出,所以使用类似的东西:

启动another_prog ...

在hook bat文件中没有用。

所以我想知道如何在Windows bat文件中运行另一个程序,该程序不会创建子进程或让子进程从父进程分离。

7 个答案:

答案 0 :(得分:18)

同步。第二个记事本在你关闭第一个记事本之前不会启动。

notepad.exe c:\temp\a.txt
notepad.exe c:\temp\b.txt

异步:即使你没有关闭第一个记事本,第二个记事本也会启动。

start notepad.exe c:\temp\a.txt
start notepad.exe c:\temp\b.txt

有关启动命令的更多信息:
http://www.robvanderwoude.com/ntstart.php

编辑:以下评论由原作海报@zhongshu在其他地方发表。我只是在这里复制它:

  

启动cmd / c因为SVN无效   post-commit hook会等待   钩子和子进程创建   钩出口。这是SVN的设计。   我找到了解决方案,请参考:   http://svn.haxx.se/users/archive-2008-11/0301.shtml

假设他知道他在说什么,我错了......不值得。

答案 1 :(得分:12)

我找到了一个方法来解决我的问题,编译以下c代码并将exe输出命名为runjob.exe,然后在hook bat文件中,使用“runjob another_prog”,现在没问题。

#include <windows.h> 
#include <stdio.h> 
#include <tchar.h> 
int _tmain() 
{ 
    char * pCmd = ::GetCommandLine(); 
    // skip the executable 
    if (*pCmd++ == L'"')
    {
        while (*pCmd++ != L'"'); 
    }
    else 
    {
        while (*pCmd != NULL && *pCmd != L' ') 
            ++pCmd; 
    }

    while (*pCmd == L' ')
        pCmd++; 

    STARTUPINFO si; 
    ZeroMemory( &si, sizeof(si) ); 
    si.cb = sizeof(si); 
    PROCESS_INFORMATION pi; 
    ZeroMemory( &pi, sizeof(pi) ); 

    // Start the child process. 
    BOOL result = CreateProcess 
    ( 
        NULL, // No module name (use command line) 
        pCmd, // Command line 
        NULL, // Process handle not inheritable 
        NULL, // Thread handle not inheritable 
        FALSE, // Set bInheritHandles to FALSE 
        DETACHED_PROCESS, // Detach process 
        NULL, // Use parent's environment block 
        NULL, // Use parent's starting directory 
        &si, // Pointer to STARTUPINFO structure 
        &pi // Pointer to PROCESS_INFORMATION structure (returned) 
    ); 
    if (result) return 0; 

    char msg[2048]; 
    FormatMessage 
    ( 
        FORMAT_MESSAGE_FROM_SYSTEM, 
        NULL, 
        ::GetLastError(), 
        MAKELANGID(LANG_NEUTRAL, SUBLANG_SYS_DEFAULT), 
        msg, sizeof(msg), 
        NULL 
    ); 
    fputs(msg, stderr); 
    _flushall(); 

    return -1; 
} 

答案 2 :(得分:6)

您可以做的是创建一个计划任务,执行批处理脚本或长时间运行的其他可执行文件。将其设置为过去运行一次,并且在不再安排运行时不将其设置为删除任务。然后在Subversion钩子脚本中,将以下行放在:

schtasks /run /tn NameOfYourTaskHere

我通过测试确认我的计划任务运行Notepad ++,Notepad ++可执行文件显示为svchost.exe的子项,而不是我执行schtasks命令的cmd.exe窗口。

答案 3 :(得分:4)

使用:

start cmd /c "your command"

干杯。

答案 4 :(得分:1)

尝试cmd /c "your command"

答案 5 :(得分:1)

您是否可以使用Windows任务调度程序命令行界面“schtasks / run”来启动运行“another_prog”的作业?你必须提前创造这份工作。还有一个带有Windows(NT)资源工具包的“SOON”程序,它将为“AT”命令调度程序创建动态条目,以便在几分钟内运行作业,而不需要提前设置作业,它仍然可以通过一点点搜索找到。

答案 6 :(得分:0)

您可以创建混合批处理/ JScript文件(即能够运行嵌入式JScript的批处理文件),其中JScript部件将以分离模式运行 another_prog shell.Run(prog, 0, false)

@if (@X)==(@Y) @end /* JScript comment
    rem put any batch code that runs before another_prog here
    @cscript //E:JScript //nologo "%~f0" "another_prog" 0 false
    rem put any batch code that runs after another_prog here

    exit /b %errorlevel%
@if (@X)==(@Y) @end JScript comment */

var ARGS = WScript.Arguments;
var shell = new ActiveXObject("WScript.Shell");
shell.Run(ARGS.Item(0),ARGS.Item(1),ARGS.Item(2));`