使用给定的用户名在远程计算机上安装Windows服务

时间:2009-07-21 12:54:32

标签: c# .net msbuild windows-services

在远程计算机上安装用C#编写的Windows服务(以标准方式)的最佳方法是什么?我需要提供应该运行的用户名和密码?

我将从MSBuild运行它作为集成测试的一部分。

编辑:我没有msi而且我不想创建一个。

4 个答案:

答案 0 :(得分:26)

您可以使用SC命令。

  

sc.exe \\remotecomputer create newservice binpath= C:\Windows\System32\Newserv.exe start= auto obj= DOMAIN\username password= pwd

(注意等号后的空格很重要)

Creates a service entry in the registry and Service Database.
SYNTAX: 
sc create [service name] [binPath= ] <option1> <option2>...
CREATE OPTIONS:
NOTE: The option name includes the equal sign.
 type= <own|share|interact|kernel|filesys|rec>
       (default = own)
 start= <boot|system|auto|demand|disabled>
       (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> 

答案 1 :(得分:1)

从Powershell调用的WMI调用的Installutil是一种方法。

答案 2 :(得分:0)

我们曾经使用PsExec来做远程机器上的所有事情。 这时我看到了另一个称为PowerShell Remoting的解决方案,但还没有尝试过。

答案 3 :(得分:0)

您可能值得查看我编写的实用程序,该实用程序允许您在本地或远程计算机上安装/卸载/启动/停止Windows服务。如果你有一个功能,你需要添加让我知道(评论/ github问题或PM,我很乐意)。

ServiceConfigurator on GitHub

正如@Raj更多建议,它使用从.NET调用的WMI。