Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the best way to change the credentials of a Windows service using C#

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.

like image 229
Maurice Avatar asked Sep 24 '08 07:09

Maurice


2 Answers

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);
      }
    }
  }
}
like image 73
Magnus Johansson Avatar answered Oct 30 '22 08:10

Magnus Johansson


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.

like image 24
Adam Ruth Avatar answered Oct 30 '22 10:10

Adam Ruth