Hello
Thank you for posting in Microsoft Community forum.
It sounds like you're dealing with a complex issue involving BitLocker, Windows recovery, and potentially corrupted system files or drivers. Now that you have entered the correct BitLocker recovery key and have access to the command prompt, there are several command line tools we can try to diagnose and possibly fix the problem.
1.Disable Automatic Repair Loop
Sometimes, the automatic repair loop can be disabled to gain more direct access to the system.
Disable Automatic Repair:
bcdedit /set {default} recoveryenabled No
Reboot and see if you can access Windows normally.
2.Check Disk and File System
Since chkdsk was unable to run due to write protection, let's try another approach.
Check Disk for Errors:
diskpart
Inside diskpart, list the volumes:
list volume
Find the volume letter of your Windows partition, then exit diskpart:
exit
Attempt to remove write protection:
attributes disk clear readonly
Run chkdsk again:
chkdsk C: /f /r /x
Replace C: with the appropriate drive letter if it's different.
- Attempt to Repair Boot Configuration
Issues with the boot configuration can also cause problems.
Repair Boot Configuration:
bootrec /fixmbr
bootrec /fixboot
bootrec /scanos
bootrec /rebuildbcd
Reboot and check if the issue persists.
- Analyze BSOD Error
The IRQL_NOT_LESS_OR_EQUAL error usually points to driver issues or hardware faults.
Check for Driver Issues:
Since you only have access to the command prompt, you might not be able to directly update drivers. However, you can try to identify problematic drivers:
verifier /query
This command can show problematic drivers. Unfortunately, fixing these often requires booting into Windows, but at least you'll know which drivers are problematic.
5.Last Resort: System Restore or Reset
If none of the above steps work, you might need to consider a system restore or reset.
System Restore:
Try restoring to an earlier restore point:
rstrui.exe
Reset Your PC:
If you have a backup of your important data, consider a full reset:
Go to Advanced Options > Troubleshoot > Reset this PC.
- Backup and Reinstall
If all else fails, consider backing up your data using a bootable Linux USB or other recovery tools and then performing a clean reinstall of Windows.
If you still encounter issues, it might be helpful to contact ASUS support or visit a professional repair service, as persistent hardware or software issues might require more in-depth diagnostics and repairs.
Best Regards,
Wesley Li