以编程方式立即关闭 Windows 机器电源
我可以创建一个简单的程序来立即关闭 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 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.