Installing a windows service on remote machine using given username

后端 未结 4 2007
无人及你
无人及你 2020-12-08 05:44

What is the best way to install a windows service written in C# (in the standard way) on a remote machine, where I need to provide the username and password it should run as

相关标签:
4条回答
  • 2020-12-08 06:06

    You can use the SC command.

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

    (Note the spaces after the equals signs are important)

    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> 
    
    0 讨论(0)
  • 2020-12-08 06:07

    It might be worth you checking out a utility I wrote which lets you install/uninstall/start/stop windows services on a local or remote machine. If you have a feature you need added let me know (comment/github issues or PM and I'll happily oblige).

    ServiceConfigurator on GitHub

    As @Raj More suggested, it uses WMI invoked from .NET.

    0 讨论(0)
  • 2020-12-08 06:10

    We used to use PsExec to do everything on remote machine. At this time I saw naother solution called PowerShell Remoting, but haven't tried myself.

    0 讨论(0)
  • 2020-12-08 06:20

    Installutil called from WMI invoked from Powershell is one way to go.

    0 讨论(0)
提交回复
热议问题