Programmatically restart IIS7 (C#)

耗尽温柔 提交于 2020-01-24 13:29:05

问题


Is it possible to restart IIS7 using C#? If so, how?


回答1:


System.Diagnostics.Process.Start(@"C:\windows\system32\iisreset.exe");

should do the trick :)

Dan




回答2:


Just execute the command-line option using System.Diagnostics.Process.Start();



来源:https://stackoverflow.com/questions/1315654/programmatically-restart-iis7-c

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!