|
发表于 2024-1-16 22:55:09
|
显示全部楼层
本帖最后由 乔治 于 2024-1-16 22:56 编辑
除了引导记录问题修复外,如果还不能顺利启动,遇到蓝屏inaccessible boot device,则需要离线进注册表修改键值,让系统优先加载usb协议。参见外网讨论:
make Windows load the USB drivers sooner:
Press WinR, type regedit and hit Enter
Enter HKLM\SYSTEM\HardwareConfig\ in the address bar at the top
On the left, choose the entry with the UUID of the boot partition
Change BootDriverFlags's value to 14 (hexadecimal)
refer to:
The operating system can promote a driver's StartType to be a boot start driver depending on the BootFlags value specified in the driver's INF. You can specify one or more (ORed) of the following numeric values in the INF file, expressed as a hexadecimal value:
If a driver should be promoted to be a boot start driver on network boot, specify 0x1 (CM_SERVICE_NETWORK_BOOT_LOAD).
If a driver should be promoted on booting from a VHD, specify 0x2 (CM_SERVICE_VIRTUAL_DISK_BOOT_LOAD)
If a driver should be promoted while booting from a USB disk, specify 0x4 (CM_SERVICE_USB_DISK_BOOT_LOAD).
If a driver should be promoted while booting from SD storage, specify 0x8 (CM_SERVICE_SD_DISK_BOOT_LOAD)
If a driver should be promoted while booting from a disk on a USB 3.0 controller, specify 0x10 (CM_SERVICE_USB3_DISK_BOOT_LOAD).
If a driver should be promoted while booting with measured boot enabled, specify 0x20 (CM_SERVICE_MEASURED_BOOT_LOAD).
If a driver should be promoted while booting with verifier boot enabled, specify 0x40 (CM_SERVICE_VERIFIER_BOOT_LOAD).
If a driver should be promoted on WinPE boot, specify 0x80 (CM_SERVICE_WINPE_BOOT_LOAD) |
|