启动自重启的 C# 代码?
我想编写一个程序,该程序将在特定的 Web 服务器上运行,并定期浏览到由同一 Web 服务器 (IIS) 托管的页面以检查某些文本。如果发现某个条件成立,它将启动服务器(它所在的服务器)的重新启动。
我可以处理检查网页部分,这非常简单。但是重启之后呢?
有哪些 .NET 对象可以帮助解决这个问题,您能为我提供一些伪代码吗?我认为这应该非常简单,因为我猜测有一些内置的东西。
I want to write a program that will run on a specific web server and periodically browse to a page that is being hosted by that same web server (IIS) to check for certain text. If a certain condition was found to be true, it would initiate a reboot of the server (the one it is residing on).
I can handle the checking the webpage part, that's pretty simple. But what about the reboot?
What .NET objects are available that can help with this and can you throw down some pseudo code for me? I assume this should be pretty simple as I'm guessing there are things built in for this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需使用 System.Diagnostic.Process 执行此命令即可
Just execute this command with
System.Diagnostic.Process
我使用这段代码重新启动、注销和其他我的服务器......我希望这就是你想要的。
使用:
代码:
像这样重新启动:
如果您想强制重新启动,无论什么:
如果您只想在电脑挂起或花费很长时间时强制重新启动:
I used this code to reboot, logoff and other my servers... I hope this is what you want.
Using:
Code:
Reboot like so:
If you want to force reboot no meter what:
If you want to force reboot only if the pc hangs or it takes to long: