Automatic Repair Can't Make the Win 11 Boot, How Do You Fix It w/ the Windows Recovery Environment Command Prompt?

Alvin777 20 Reputation points
2024-05-11T14:33:05.77+00:00

Hi Microsoft friends, Automatic Repair can't make the Win 11 boot, (version 23H2, build 22631.3527, how do you fix it w/ the Windows Recovery Environment Command Prompt? What's the command and syntax to repair it using the Command Prompt?

I'd tried SFC /Scannow on Windows Recovery Environment but that didn't work.

Sadly I don't have any restore point or backup or image or Windows Installer. I do have Window to Go (same build) and the Windows Recovery Environment Command Prompt still works.

It also won't boot to Safe Mode, it's just stuck with that spinning wheel and Windows logo.

Thank you in advance.

God bless Windows experts.

Windows 11
Windows 11
A Microsoft operating system designed for productivity, creativity, and ease of use.
8,419 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Docs 15,151 Reputation points
    2024-05-12T01:39:03.0066667+00:00

    1)Open Windows RE command prompt > type:

    Notepad

    Notepad

    Notepad

    (type these diagnostic commands > save to notepad > post a share link)

    bcdedit
    bcdedit | find "osdevice"
    diskpart
    lis dis
    lis vol
    sel dis 0
    det dis
    lis par
    sel par 1
    det par
    sel par 2
    det par
    sel par 3
    det par
    sel par 4
    det par
    sel par 5
    det par
    sel par 6
    det par
    sel dis 0
    det dis
    lis par
    sel par 1
    det par
    sel par 2
    det par
    sel par 3
    det par
    sel par 4
    det par
    sel par 5
    det par
    sel par 6
    det par
    exit
    
    0 comments No comments

  2. Hania Lian 8,551 Reputation points Microsoft Vendor
    2024-05-14T03:20:08.55+00:00

    Hello,

    If you have access to Windows Recovery Environment and can open Command Prompt, here are some of the commonly used repair commands:

    Checking the disk for errors:

    chkdsk C: /f /r /x

    This command will check the disk for errors and attempt to fix them. The “C:” should be replaced with the letter of your drive.

    If the problem continues, you may have corruption on your system files. You can use the Deployment Imager Servicing and Management (DISM) tool to attempt to repair your image. Run the following commands:

    DISM /Online /Cleanup-Image /CheckHealth

    DISM /Online /Cleanup-Image /ScanHealth

    DISM /Online /Cleanup-Image /RestoreHealth

    Note: Sometimes it might be needed to specify the source, if you have another Windows install or Windows installer media. How to use DISM command tool to repair Windows 10 image | Windows Central

    Running sfc (System File Checker) scan:

    sfc /scannow /offbootdir=C:\ /offwindir=C:\Windows\

    Replace “C:” with your system root drive. This will scan system files for corruption and automatically repairs them.

    Best Regards,

    Hania Lian

    ============================================

    If the Answer is helpful, please click "Accept Answer" and upvote it.

     

    0 comments No comments