Continue IIS website

  this.serviceController1 = new ServiceController();
            this.serviceController1.ServiceName = "W3SVC";
            if (this.serviceController1.Status == ServiceControllerStatus.Paused)
            {
                try
                {
                    this.serviceController1.Continue();
                    this.serviceController1.WaitForStatus(ServiceControllerStatus.Running);
                    MessageBox.Show("已经继续Internet信息服务默认网站。", "信息提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
                }
                catch (Exception ex)
                {
                    MessageBox.Show(ex.Message, "信息提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
                }
            }

posted @ 2010-07-29 14:59  greencolor  阅读(121)  评论(0编辑  收藏  举报