C # How to stop and enable the IIS 7.0 site

Source: Internet
Author: User
 
 
CodeYou need to introduce a Microsoft. Web. Administration. dll file in the \ windows \ system32 \ inetsrv directory.
 
Core code:
          /// <Summary>          /// Close other sites. Only websites with names entered are enabled.           /// </Summary>          /// <Param name = "startsitename"> </param>          Private   Static   Void Startwebsite ( String Startsitename) {var WebManager = New Microsoft. Web. Administration. servermanager (); var startsite = WebManager. sites [startsitename]; If (Startsite = Null ) {Console. writeline (" Can't not find site: {0} ", Startsitename ); Return ;} Foreach (VAR site In WebManager. Sites ){ If (Site. Name! = Startsitename) site. Stop ();} startsite. Start ();}

 

Iis6.0 stop and start method reference

http://www.cnblogs.com/yahle/archive/2008/03/25/1121518.html

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.