STOP IIS website

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

原文地址:https://www.cnblogs.com/greencolor/p/1787895.html