0

使用此 c# 代码,我可以获得我的 Windows 服务的用户

        System.Management.SelectQuery sQuery = new System.Management.SelectQuery(string.Format("select Name,startname from Win32_Service where name ='MyWindowsServices' ")); 

            using (System.Management.ManagementObjectSearcher mgmtSearcher = new System.Management.ManagementObjectSearcher(sQuery))
            {
                foreach (System.Management.ManagementObject service1 in mgmtSearcher.Get())
                {

            //If not local system , then associated with different user                                  
             if(service1["startname"].ToString().ToLower()!="localsystem")
                               {
                             service1["startname"].ToString()).ToString()
                               }
                   }
               }

这是我的 installshield 脚本,它创建了我的 Windows 服务安装。IE。如果系统已经安装了我的 windows 服务,当他们再次重新安装时,我需要确保我需要指向运行 windows 服务的任何用户。(如果它的本地系统应该指向本地系统,如果它是一个特定的用户,比如有密码的shareye500,那么它应该指向shareye500(用户)并弹出(如设置服务登录)密码应该显示)。

Set objCreate = objWMIService.Get("Win32_BaseService")


Get Window Service 
Set colListOfServices = objWMIService.ExecQuery _
 ("Select * from Win32_Service Where Name = 'MyWindowsServices'")
'First Stop and Delete service and then install
For Each objService in colListOfServices  

//我获取服务关联的用户名

 startName=objService.StartName   
    objService.StopService()   
    Next   

'I have delete service logic & then i install Window Service again

objCreate.Create "MyWindowsServices" ,"My Windows Service Description" ,
"c:\test\" & "MyWindowsServices.exe", OWN_PROCESS, NORMAL_ERROR_CONTROL,
 "Automatic", NOT_INTERACTIVE, startName, ""  

但是,当我以上述语法传递 startName 时,我的安装失败,但如果我传递 Null,它会使用 localsystem 用户帐户创建 Windows 服务安装。

如何获取与 Windows 服务关联的用户帐户并通过 installshield 脚本将其分配回安装?


  System.Management.SelectQuery sQuery = new System.Management.SelectQuery(string.Format("select startname from Win32_Service where name ='MyWindowsService' ")); 
            using (System.Management.ManagementObjectSearcher mgmtSearcher = new System.Management.ManagementObjectSearcher(sQuery))
            {
                foreach (System.Management.ManagementObject service in mgmtSearcher.Get())
                {
                    if (service["startname"].ToString().ToLower() != "localsystem" || service["startname"].ToString().ToLower() != "localservice")
                    {
                        this.ServiceProcessInstaller1.Account = System.ServiceProcess.ServiceAccount.User;
                        this.ServiceProcessInstaller1.Username = service["startname"].ToString();
                    }
                    else
                    {

                        this.ServiceProcessInstaller1.Account = System.ServiceProcess.ServiceAccount.LocalSystem;
                        this.ServiceProcessInstaller1.Password = null;
                        this.ServiceProcessInstaller1.Username = null;
                    }

                }
            }

我有这个逻辑,我需要做的就是把它放在 installscript(在 vb 中),但是我正在努力如何在 installscript 中使用 ManagementObject。

4

1 回答 1

0

这种方法行不通。首先,虽然您可以很容易地获取服务帐户的用户名,但您不能调用方法来获取该帐户的密码(一个明显的安全限制)。

删除服务将顺利进行,但 Create 方法需要除 LocalSystem 以外的任何帐户的用户名和密码(再次,为了安全),您不会完全拥有。这对于 LocalSystem 以外的任何帐户都是一个问题。

为什么您必须删除并重新安装您的服务?您可以简单地停止服务并更新服务调用的底层可执行文件/dll吗?您甚至可以使用 API 函数更改服务的命令行...

于 2012-05-03T02:21:44.527 回答