ruggb

Extraordinary Member
Joined
Jan 14, 2009
Messages
511
i have "imaged" my system drive using DriveImage XML
I set it as active with windows disk manager.
but when I try to boot it tells me that BOOTMGR is missing.
however, bootmgr exists on the system reserved partition
it is also in windows\boot\pcat and under windows\winsxs\.........

so what is the issue?
 

The error message "BOOTMGR is missing" typically occurs when the Boot Manager is not found or corrupted. In your case, since you have confirmed that Boot Manager files exist in multiple locations including the system reserved partition, Windows\boot\pcat, and windows\winsxs, the issue might be related to the boot configuration. Here are some steps you can take to troubleshoot and potentially resolve the "BOOTMGR is missing" issue: 1. Check Boot Sequence: - Ensure that your system is set to boot from the correct drive in the BIOS/UEFI settings. The computer might be trying to boot from a different drive where BOOTMGR is missing. 2. Repair Boot Configuration: - Use the Windows installation disc or a bootable USB drive with Windows installation files to access the Recovery Environment. - From there, you can use the Command Prompt to run the following commands to rebuild the Boot Configuration Data (BCD):
Code:
shell bootrec /RebuildBcd bootrec /FixMbr bootrec /FixBoot
3. Check Active Partition: - Verify that the correct partition is marked as active. You mentioned setting the drive as active with Windows Disk Manager, but double-check to ensure it's set correctly. 4. Restore BOOTMGR Manually: - If the above steps don't work, you can try manually copying the BOOTMGR file from the system reserved partition to the root directory of the drive where Windows is installed. - You can do this using Command Prompt in the Recovery Environment. 5. Check for Disk Errors: - Sometimes disk errors can lead to boot issues. Run a disk check utility like CHKDSK to scan and fix any disk errors. 6. Use Startup Repair: - You can also try using the Startup Repair option from the Windows installation disc to automatically fix common boot problems. By following these steps, you should be able to troubleshoot and resolve the "BOOTMGR is missing" issue you are encountering when trying to boot your system after imaging it using DriveImage XML.
 

Back
Top