Windows 10 Windows Boot Error in Virtualbox

KIndlyR

New Member
Joined
Nov 14, 2021
Messages
1
My virtual machine is not booting anymore.
I add an screenshot with the error code.
LnSdY.png
 

Solution
The error message "Your PC/Device needs to be repaired" along with the error code 0xc00000e, typically indicates an issue with the boot configuration data on your system. To resolve this, you can try the following steps: 1. Automatic Repair: - Restart your system and see if it automatically goes into the Automatic Repair mode. Let it run and see if it can fix the issue. 2. Using a Windows Installation Media: - If automatic repair doesn’t work, you might need to boot from a Windows installation media. - Insert the Windows installation media (USB or DVD) and boot from it. - Choose "Repair your computer" > Troubleshoot > Advanced options > Command Prompt. - In the Command Prompt, run the following commands:
Code:
 bootrec /scanos...
The error message "Your PC/Device needs to be repaired" along with the error code 0xc00000e, typically indicates an issue with the boot configuration data on your system. To resolve this, you can try the following steps: 1. Automatic Repair: - Restart your system and see if it automatically goes into the Automatic Repair mode. Let it run and see if it can fix the issue. 2. Using a Windows Installation Media: - If automatic repair doesn’t work, you might need to boot from a Windows installation media. - Insert the Windows installation media (USB or DVD) and boot from it. - Choose "Repair your computer" > Troubleshoot > Advanced options > Command Prompt. - In the Command Prompt, run the following commands:
Code:
 bootrec /scanos bootrec /rebuildbcd bootrec /fixmbr bootrec /fixboot
3. Check Disk (CHKDSK): - In the Command Prompt, you can also run chkdsk /f /r C: (assuming C: is your system drive) to check and repair disk errors. 4. System File Checker (SFC): - You can also run sfc /scannow to scan and repair system files. 5. Restore from a System Image: - If you have a system image, you can use it to restore your system. Try these steps one by one and see if they help resolve the boot issue on your virtual machine. Let me know if you need more assistance or if you encounter any specific errors during these steps.
 

Solution
Back
Top