IIS重启及站点停止启用控制【MVC中】

1、IIS启停控制

a、添加System.ServiceProcess引用

     停止IIS服务

     ServiceController sc = new ServiceController("iisadmin");
     if(sc.Status=ServiceControllerStatus.Running)
     sc.Stop();

    重启IIS服务
    ServiceController sc = new ServiceController("iisadmin");
    sc.Start();

    启动页面会报错:

  [Win32Exception (0x80004005): 拒绝访问。]

  解决:进程池中设置"标识"


2、站点启停控制(非IISAdmin)

/// <summary>
        /// 获取站点ID
        /// </summary>
        public string GetServerID()
        {
            string result = string.Empty;
            DirectoryEntry root = new DirectoryEntry("IIS://localhost/W3SVC");
            foreach (DirectoryEntry dir in root.Children)
            {
                if (dir.SchemaClassName == "IIsWebServer")
                {
                    string SiteName = dir.Properties["ServerComment"].Value.ToString();
                    if (SiteName.Equals("IISStart"))//新建的一个IISStart站点
                    {
                         result = dir.Name; //返回ID
                    }
                }
            }
            return result;
        }
调用
 string strId = string.Format("IIS://127.0.0.1/w3svc/{0}",GetServerID());
 DirectoryEntry WebSite = new System.DirectoryServices.DirectoryEntry(strId);
 WebSite.Invoke("Stop", new object[] { });//启用WebSite.Invoke("Start", new object[] { });

关于

"IIS://127.0.0.1/w3svc/{0}"地址:

它的格式是:
IIS://ComputerName/Service/Website/Directory

ComputerName:即操作的服务器的名字,可以是名字也可以是IP,经常用的就是localhost

Service:即操作的服务器,IIS中有Web,也有FTP,还有SMTP这些服务,我们主要是操作IIS的Web功能,因此此处就是”W3SVC”,如果是FTP则应是”MSFTPSVC”

WebSite:一个IIS服务中可以包括很多的站点,这个就用于设置操作的站点。他的值是一个数字,默认是1,表示缺省站点,如果有其它,也是数字。 
但需要注意的是,并不是自增。后面会有一个小程序获得这个值。

Directory:要操作的目录名称,一个站点一般顶层目录为”ROOT”,其它目录则是他的孩子(Child)。

注意:无论启停IIS还是站点可能会报权限错误,注意以管理员方式打开VS

参照:

http://blog.sina.com.cn/s/blog_9840bb7f0100xyxl.html  IIS://localhost/w3svc/1/root
http://www.cnblogs.com/yahle/archive/2008/03/25/1121518.html 停止IIS站点的代码
https://q.cnblogs.com/q/37332/   Win32Exception (0x80004005): 拒绝访问
http://blog.csdn.net/lucky51222/article/details/44265817 C#使用ServiceController控制windows服务
http://www.knowsky.com/886829.html  IIS应用程序池监控
https://www.cnblogs.com/Gyoung/p/3574611.html  C# 操作IIS方法集合

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值