在 C# 中,我們可以使用 WMI 類中的 Win32_Service 或者 Win32 API 中的函數(shù) ChangeServiceConfig 來修改本地或遠(yuǎn)程計(jì)算機(jī) Windows 服務(wù)登錄身份 (賬戶) 的用戶名和密碼。 1、使用 Win32 API 修改服務(wù)登錄身份信息: 使用 Win32 API 中的函數(shù) ChangeServiceConfig 更改的是服務(wù)控制管理器數(shù)據(jù)庫中指定服務(wù)的配置信息。 private const int SC_MANAGER_ALL_ACCESS = 0x000F003F; private const uint SERVICE_NO_CHANGE = 0xffffffff; //這個(gè)值可以在 winsvc.h 中找到 private const uint SERVICE_QUERY_CONFIG = 0x00000001; private const uint SERVICE_CHANGE_CONFIG = 0x00000002; [DllImport("advapi32.dll", CharSet = CharSet.Unicode, SetLastError = true)] public static extern Boolean ChangeServiceConfig(IntPtr hService, UInt32 nServiceType, UInt32 nStartType,UInt32 nErrorControl,String lpBinaryPathName,String lpLoadOrderGroup, IntPtr lpdwTagId, [In] char[] lpDependencies, String lpServiceStartName, String lpPassword, String lpDisplayName); [DllImport("advapi32.dll", SetLastError = true, CharSet = CharSet.Auto)] static extern IntPtr OpenService(IntPtr hSCManager, string lpServiceName, uint dwDesiredAccess); [DllImport("advapi32.dll", EntryPoint = "OpenSCManagerW", ExactSpelling = true, CharSet = CharSet.Unicode, SetLastError = true)] public static extern IntPtr OpenSCManager(string machineName, string databaseName, uint dwAccess); public static bool ChangeServiceAccountInfo(string serviceName, string username,string password) { try { IntPtr scm_Handle = OpenSCManager(null, null, SC_MANAGER_ALL_ACCESS); if (scm_Handle == IntPtr.Zero) throw new System.Runtime.InteropServices.ExternalException("打開服務(wù)管理器錯(cuò)誤"); IntPtr service_Handle = OpenService(scm_Handle, serviceName,SERVICE_QUERY_CONFIG | SERVICE_CHANGE_CONFIG); if (service_Handle == IntPtr.Zero) throw new System.Runtime.InteropServices.ExternalException("打開服務(wù)錯(cuò)誤"); 2、使用 C# 中 WMI 修改服務(wù)登錄身份信息: 使用 WMI 服務(wù),我們需要添加 System.Management 的引用。 注意:如果您的遠(yuǎn)程計(jì)算機(jī)連接的是 Active Directory 域,那么使用完全限定的用戶名(例如 TestDomainMorgan)而不是簡(jiǎn)單的用戶名(Morgan)。 using System.Management; public static void ChangeServiceAccountInfobyWMI(string serviceName, string username, string password) { string mgmntPath = string.Format("Win32_Service.Name='{0}'", serviceName); using (ManagementObject service = new ManagementObject(new ManagementPath(mgmntPath))) { object[] accountParams = new object[11]; accountParams[6] = username; accountParams[7] = password; uint returnCode = (uint)service.InvokeMethod("Change", accountParams); if (returnCode == 0) { Console.WriteLine("服務(wù)登錄身份信息修改成功!"); } else { Console.WriteLine("服務(wù)登錄身份信息修改失敗"); Console.WriteLine("錯(cuò)誤代碼:" + returnCode); // 此微軟官方支持鏈接,可以查看相應(yīng)的返回代碼的消息: // https://msdn.microsoft.com/en-us/library/aa393660(v=vs.85).aspx } } } 3、使用 C#中的 WMI 修改遠(yuǎn)程計(jì)算機(jī)服務(wù)的登錄身份信息: 使用 WMI 服務(wù),我們需要添加 System.Management 的引用,并且在修改遠(yuǎn)程計(jì)算機(jī)中的服務(wù)信息時(shí),請(qǐng)使用管理員憑據(jù)。 注意:如果您的遠(yuǎn)程計(jì)算機(jī)連接的是 Active Directory 域,那么使用完全限定的用戶名(例如 TestDomainMorgan)而不是簡(jiǎn)單的用戶名(Morgan)。 using System.Management; 原創(chuàng)出處:https:///2015/03/csharp-change-service-account-username-and-password.html |
|