以编程方式立即关闭 Windows 机器电源

发布于 2024-09-07 18:56:35 字数 99 浏览 6 评论 0原文

我可以创建一个简单的程序来立即关闭 Windows 机器吗?我希望这种行为就像按下 PWR OFF/RESET 按钮一样。于是立即断电。有什么方法可以向主板发送软件中断来实现这一点吗?

Can I create a simple program to power off the windows machine immediately? I would like the behavior to be like pressing PWR OFF/RESET button. So the power is cut off immediately. Is there any way to send a software interrupt to motherboard to make this happen?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

假面具 2024-09-14 18:56:35

您可以使用 MASM 等汇编语言轻松完成此操作。
这是来自 Microsoft 的小教程: http://support.microsoft.com/kb/68805

另外您可以尝试执行int 19h汇编命令。

但我不确定这些方法在win2k及更高版本下是否有效。
为了让它们工作,你应该创建一个驱动程序。

You can easily do this in assembly language like MASM.
Here's small tutorial from Microsoft: http://support.microsoft.com/kb/68805

Also you can try to execute int 19h assembly command.

But I'm not sure if theese methods will work under win2k and later.
To get them working you should create a driver then.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文