如何让Presto创建具有特定用户名和密码的Windows服务?

时间:2012-07-05 21:16:24

标签: deployment automated-deploy presto

如何让Presto创建具有特定用户名和密码的Windows服务?我会发布我尝试的内容,但我不确定从哪里开始。

1 个答案:

答案 0 :(得分:1)

实际创建服务通常有三个步骤:

enter image description here

首先,实际创建服务:

  

/ c sc create“$(serviceName)$(serviceNameSuffix)”binPath =“$(servicePath)”

enter image description here

其次,配置用户和密码:

  

/ c sc config“$(serviceName)$(serviceNameSuffix)”obj =“$(account)”password =“$(password)”start = auto

enter image description here

第三,启动服务:

enter image description here

正如您所看到的,您只是使用Window的命令提示符来执行这些操作。无论您在命令提示符处执行什么操作,都可以在Presto中完成。