What is the best way to change the credentials of

2019-04-28 02:31发布

I need to change the credentials of an already existing Windows service using C#. I am aware of two different ways of doing this.

  1. ChangeServiceConfig, see ChangeServiceConfig on pinvoke.net
  2. ManagementObject.InvokeMethod using Change as the method name.

Neither seems a very "friendly" way of doing this and I was wondering if I am missing another and better way to do this.

2条回答
劳资没心,怎么记你
2楼-- · 2019-04-28 02:51

ChangeServiceConfig is the way that I've done it in the past. WMI can be a bit flaky and I only ever want to use it when I have no other option, especially when going to a remote computer.

查看更多
【Aperson】
3楼-- · 2019-04-28 03:04

Here is one quick and dirty method using the System.Management classes.

using System;
using System.Collections.Generic;
using System.Text;
using System.Management;

namespace ServiceTest
{
  class Program
  {
    static void Main(string[] args)
    {
      string theServiceName = "My Windows Service";
      string objectPath = string.Format("Win32_Service.Name='{0}'", theServiceName);
      using (ManagementObject mngService = new ManagementObject(new ManagementPath(objectPath)))
      {
        object[] wmiParameters = new object[11];
        wmiParameters[6] = @"domain\username";
        wmiParameters[7] = "password";
        mngService.InvokeMethod("Change", wmiParameters);
      }
    }
  }
}
查看更多
登录 后发表回答