1

我需要从批处理文件(使用sc start XXX)启动服务,但前提是它配置了自动启动类型。

我阅读了的说明,sc /?并尝试先调用sc qc XXX命令以查询其配置,然后在结果上使用 findstr,但在sc qc XXX命令后出现以下错误:

[SC] QueryServiceConfig FAILED 122:

The data area passed to a system call is too small.

[SC] GetServiceConfig needs 718 bytes

指定的服务不作为已安装的服务存在。

这很奇怪,因为我可以sc config XXX从命令行调用和停止/启动它。

我错过了什么吗?有更好的方法吗?

4

1 回答 1

8

好的,我刚刚想通了。

首先,我必须道歉,因为原来的错误实际上是:

[SC] QueryServiceConfig FAILED 122:

The data area passed to a system call is too small.

[SC] GetServiceConfig needs 718 bytes

并不是

[SC] OpenService FAILED 1060:

正如我第一次说的。

显然,我必须明确地为我的服务添加一个缓冲区大小:sc qc XXX 1000

之后,我注意到 BINARY_PATH_NAME 字段对于 XXX 来说非常长,所以我猜默认内存分配是不够的。

现在,由于我的职业生涯基本上欠 StackOverflow,我将发布我的完整代码 :)

rem start a service, but only if it is configured as automatic, and only if it isn't running already
for /F "tokens=3 delims=: " %%H in ('sc qc %xxx% 1000^| findstr "START_TYPE"') do (
    if /I "%%H" EQU "AUTO_START" (
        rem check if service is stopped
        for /F "tokens=3 delims=: " %%H in ('sc query %xxx% ^| findstr "STATE"') do (
            if /I "%%H" EQU "STOPPED" (
                echo net start %xxx%
                net start %xxx%
            ) else (
                echo %xxx% is already running
            )
        )
    ) else (
        echo Skipping %xxx% since it's not defined as automatic start
    )
)
于 2013-10-09T07:51:40.093 回答