关闭 Windows 并向用户发出警告
我发现 shutdown.exe 可用于关闭或重新启动计算机。但是,向用户发出的警告没有提供任何取消关闭的方法(除了在命令行提示符中执行“shutdown /a”之外)。
是否有其他关闭 Windows 的方法可以为用户提供一些简单的取消方法?
I see that shutdown.exe can be used to shutdown or restart a machine. However, the warning given to the user doesn't offer any way to cancel the shutdown (other than doing "shutdown /a" in a command line prompt).
Is there a different way of shutting down Windows that offers the user some easy way to cancel out?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
编写您自己的程序,调用
ExitWindowsEx
。它可以允许您想要的任何取消操作。
Write your own program that calls
ExitWindowsEx
. It can allow any cancel operations you want.