如何对 Bios 进行编程以在特定日期和时间自动启动计算机
我想将 BIOS 设置为在特定日期和时间启动计算机。我可以直接在 BIOS 中执行此操作,但我想在程序中执行此操作(用 Delphi 制作)。
我知道我可以通过计划任务来做到这一点,但我特别希望避免使用它们。
我看到其他程序可以做到这一点,所以它是可行的。
有谁知道如何实现这个...?
预先感谢您的任何回复。
I want to set the BIOS to power up the computer at a specific date and time. I can do it directly in BIOS but I want to do it in a program (made with Delphi).
I am aware that I can do this with scheduled tasks but I specifically wish to avoid using them.
I saw other programs that are able to do that so it's doable.
Does anyone know how to implement this...?
Thank you in advance for any reply.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尽管OP在评论中明确表示他不希望使用计划任务,但阅读本文的一些人可能有兴趣知道计划任务是可能的。
这可以通过任务计划程序的 GUI 界面、命令行甚至使用 任务计划程序接口。
Although the OP has explicitly stated in comments that he does not wish to use scheduled tasks, some people reading this may be interested to know that it is possible with scheduled tasks.
This can be done from the task scheduler's GUI interface, from the command line or even in code using the Task Scheduler Interfaces.
您所问的问题是针对主板制造商的。允许任意应用程序修改 BIOS 设置是一种安全风险,通常 BIOS 和操作系统都会阻止。戴尔和惠普都提供与其硬件绑定的软件,可以修改一些系统设置,但我认为这不适用于任何应用程序。我的 HP 笔记本电脑附带了一个实用程序,可以更改一些系统设置,而无需进入 CMOS 设置屏幕,但我见过的大多数管理软件都针对企业服务器和工作站。
http://content.dell.com/us/en /enterprise/by-technology-systems-management.aspx
http://h18000.www1.hp.com/products/servers /management/hpsim/index.html
您还可以查看分布式管理任务组。它是一个标准机构,负责维护查询 BIOS 设置的规范。我还没有深入研究是否也有更改设置的标准。
What you're asking is specific to the board manufacturer. Allowing arbitrary applications to modify bios settings is a security risk and is generally prevented by both the BIOS and OS. Both Dell and HP provide software which is tied to their hardware that can modify some system settings but I don't think this is available to just any application. My HP laptop came with a utility to change a few system settings without needing to go to the CMOS setup screen but most management software I've seen targets enterprise servers and workstations.
http://content.dell.com/us/en/enterprise/by-technology-systems-management.aspx
http://h18000.www1.hp.com/products/servers/management/hpsim/index.html
You can also check out the Distributed Management Taskforce. It is a standards body that maintains specifications for querying BIOS settings. I haven't looked deep enough to see if there is a standard for changing settings as well.