我正在使用sc.exe命令安装C#windows服务。
C:Windows\System32> sc.exe Create "TestService1" binPath= "C:\Program Files (x86)\Test\TestService1" DisplayName= "TestWindowsService1"
它创造了服务。我能够启动这项服务。我能够使用sc.exe命令创建的许多实例
查看服务
姓名| 说明 |状态|开始输入|登录为
描述部分是空白的,我想设置descriptionm,用sc.exe命令设置服务描述的方法是什么?
答案 0 :(得分:55)
您需要再次调用sc来设置描述。例如:
sc description TestService1 "This is the description of the service.."
有关详细信息,请参阅here。
答案 1 :(得分:10)
不是
sc description TestService1 "TestService1"
根据文档:https://technet.microsoft.com/en-us/library/cc742069.aspx?
答案 2 :(得分:-3)
sc.exe "TestService1" description "This is my service description"