public void StopWebSite()
        {
            System.DirectoryServices.DirectoryEntry WebSite 
= new System.DirectoryServices.DirectoryEntry("IIS://localhost/w3svc/1");
            WebSite.Invoke(
"Stop"new object[] { });   
        }

        
public void StartWebSite()
        {
            System.DirectoryServices.DirectoryEntry WebSite 
= new System.DirectoryServices.DirectoryEntry("IIS://localhost/w3svc/1");
            WebSite.Invoke(
"Start"new object[] { });
        }

相关文章:

  • 2021-04-23
  • 2022-12-23
  • 2021-10-19
  • 2021-05-20
  • 2021-09-26
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-09-16
  • 2022-12-23
  • 2021-08-24
  • 2021-12-10
  • 2021-12-18
  • 2022-01-23
  • 2021-10-09
相关资源
相似解决方案