First let me describe the symptoms. After performing a restore from a WIM file using ImageX, you reboot your computer. But instead of Windows loading you get an error screen saying:
Status: 0xc000000e
Info: The boot selection failed because a required device is inaccessible.
The problem here is the Boot Configuration Data (BCD) info. Windows stores the boot information in a BCD file and for whatever reason the BCD from the image file is not compatible with the new system after restoring the image.
To correct this problem you need to first boot your computer from a WinPE CD or USB drive. I won't explain that as there are lots of guides on the Internet. Once WinPE is loaded, if you type "bcdedit.exe" you will see the problem. Three of the fields are "unknown."
The following 3 commands will restore these unknown values and fix the problem
bcdedit.exe /set {default} device partition=c:
bcdedit.exe /set {default} osdevice partition=c:
bcdedit.exe /set {bootmgr} device partition=c:
After this, simply reboot and Windows should load normally!
No comments:
Post a Comment