欢迎来到代码驿站!

.NET代码

当前位置:首页 > 软件编程 > .NET代码

怎么利用c#修改services的Startup type

时间:2021-01-06 11:23:32|栏目:.NET代码|点击:

我们知道大部分的services的操作可以通过ServiceController来实现,包括services的开启,停止,暂停,还有获取service的status。但是这里关于services的修改Startup type这点,貌似ServiceController不好做到,我们可以这样来做:

复制代码 代码如下:

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

namespace ServicesStartup
{
    class Program
    {
        public enum StartupType
        {
            Automatic,
            Disabled,
            Manual
        }

        public static void SetStartupType(string serviceName, StartupType startupType)
        {
            string type = startupType.ToString();
            try
            {
                ManagementPath mp = new ManagementPath(string.Format("Win32_Service.Name='{0}'", serviceName));
                if (mp != null)
                {
                    using (ManagementObject mo = new ManagementObject(mp))
                    {
                        object[] parameters = new object[1] { type };
                        mo.InvokeMethod("ChangeStartMode", parameters);                       
                    }
                }
            }
            catch (ManagementException ex)
            {
                Console.WriteLine("An error occured while trying to searching the WMI method: " + ex.ToString());
            }

        }

        static void Main(string[] args)
        {
            SetStartupType("gupdate", StartupType.Automatic); 
            Console.ReadKey();
        }
    }
}


上面使用了ManagementPath类,或者你也可以这样:
复制代码 代码如下:

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

namespace ServicesStartup
{
    class Program
    {
       static void Main(string[] args)
        {
            try
            {
                ManagementObject classInstance = new ManagementObject("root\\CIMV2",
                    "Win32_Service.Name='gupdate'", null);

                // Obtain in-parameters for the method.
                ManagementBaseObject inParams = classInstance.GetMethodParameters("ChangeStartMode");
                // Add the input parameters.
                inParams["StartMode"] = "Automatic";               

                // Execute the method and obtain the return values.
                ManagementBaseObject outParams = classInstance.InvokeMethod("ChangeStartMode", inParams, null);

                // List outParams
                Console.WriteLine("Out parameters:");
                Console.WriteLine("ReturnValue: " + outParams["ReturnValue"]);
            }
            catch (ManagementException err)
            {
                Console.WriteLine("An error occured while trying to execute the WMI emthod: " + err.ToString());
            }
            Console.ReadKey();
        }
    }
}


这段代码使用的是ManagementObject类,里面输出的ReturnValue是一个标志,如果值为0就是修改成功了。

这里需要注意的一点:C#必须以管理员的权限运行才能达到效果的,不然service的startmode修改是没有效果的。

上一篇:asp.net安全、实用、简单的大容量存储过程分页第1/2页

栏    目:.NET代码

下一篇:在ASP.NET 2.0中操作数据之二十九:用DataList和Repeater来显示数据

本文标题:怎么利用c#修改services的Startup type

本文地址:http://www.codeinn.net/misctech/41448.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有