1

我正在使用该命令安装一些服务,installutils但是在使用该命令安装这些服务时遇到了巨大的麻烦SC create。这两种模式有什么区别。我没有从命令中得到任何错误,而是一系列选项。这是我正在使用的格式:

SC create ZAM displayname= "ZAM" binpath="E:\ZAM\ZAM.exe" start=auto 

我得到以下信息:

DESCRIPTION:
        Creates a service entry in the registry and Service Database.
USAGE:
        sc <server> create [service name] [binPath= ] <option1> <option2>...

OPTIONS:
NOTE: The option name includes the equal sign.
      A space is required between the equal sign and the value.
 type= <own|share|interact|kernel|filesys|rec>
       (default = own)
 start= <boot|system|auto|demand|disabled|delayed-auto>
       (default = demand)
 error= <normal|severe|critical|ignore>
       (default = normal)
 binPath= <BinaryPathName>
 group= <LoadOrderGroup>
 tag= <yes|no>
 depend= <Dependencies(separated by / (forward slash))>
 obj= <AccountName|ObjectName>
       (default = LocalSystem)
 DisplayName= <display name>
 password= <password>

我不明白可能出了什么问题?

4

2 回答 2

6

我建议不要直接调用“sc”,而是使用New-Service. 参数是直接翻译。它在默认的 powershell 模块中可用。

于 2013-10-25T17:26:50.440 回答
3

这个问题很常见。sc 命令中带有等号的所有参数必须具有相同的格式:

parameter=<SPACE>value

照原样。需要空间

于 2013-10-25T16:39:34.810 回答