Windows7 通过 API 强制启动到安全模式
有没有办法通过 Windows API 或更改文件在网络支持的安全模式下重新启动计算机。 (Windows 7)
对于 Windows 2000 和 XP,您只需将“/safeboot:network”添加到 boot.ini 文件即可。
但是 Windows 7 中没有这样的文件。
我的目标是使用 Delphi 对其进行编码,但任何语言代码示例将不胜感激。
Is there a way via the Windows API or altering a file to reboot the computer in safemode with Network support. (Windows 7)
For Windows 2000 and XP you could simply add '/safeboot:network' to the boot.ini file.
However with Windows 7 there is no such file.
My goal is to code this using Delphi, but any language code samples would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为你必须编辑 BCD 文件。有一个命令行实用程序 bcdedit 可以执行此操作(将 SAFEBOOT 设置为 NETWORK)。抱歉,我不知道如何使用 delphi 中的 CMD 实用程序。
I think you have to edit the BCD file. there is a command line utility bcdedit that can do this (set SAFEBOOT to NETWORK). I don't know how to use CMD utilities from delphi, sorry.