我们正在建立一个新的环境,我正在编写批处理文件,以便在群集中的多台计算机上使用。一致性是我的朋友。 :)
命令行只列出参数并设置errorlevel = 1639。
d:\services\WFCContainerStatus>sc config ContainerStatusService start=auto
DESCRIPTION:
Modifies a service entry in the registry and Service Database.
USAGE:
sc <server> config [service name] <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|adapt>
start= <boot|system|auto|demand|disabled|delayed-auto>
error= <normal|severe|critical|ignore>
binPath= <BinaryPathName>
group= <LoadOrderGroup>
tag= <yes|no>
depend= <Dependencies(separated by / (forward slash))>
obj= <AccountName|ObjectName>
DisplayName= <display name>
password= <password>
d:\services\WFCContainerStatus>echo %errorlevel%
1639
查找错误代码至少可以说是一次尝试。尝试使用net helpmsg就像usefil一样。
d:\services\WFCContainerStatus>net helpmsg 1639
Invalid command line argument. Consult the Windows Installer SDK for detailed command line help.
我确信这是微不足道的,我做错了,而我却根本没有看到它。
有没有人对此有任何想法?
答案 0 :(得分:5)
显然,我需要学会阅读,因为我的答案就在我面前。
d:\services\WFCContainerStatus>sc config ContainerStatusService start= auto
[SC] ChangeServiceConfig SUCCESS
正如帮助文本所说,“等号和值之间需要一个空格。”添加空间,一切正常。