1

我注意到每当我启动服务(通过cmd启动批处理文件)时,多个单词用空格分隔,cmd提示服务名称无效

工作批处理文件:

@echo off
net start AdobeARMService

不工作的批处理文件:

@echo off
net start Sample Windows Service

如何使用空间运行服务?

4

1 回答 1

1

没关系,我有它的工作。只需在具有多个单词的服务上加上引号..

样本:

@echo off
net start "Sample Windows Service"
于 2012-12-05T04:11:31.473 回答