Share via

Boot up problems

Anonymous
2025-02-23T05:03:49+00:00

I was getting a 0xc0000225 blue screen so I tried doing several things, like rebuilding BCD using Console commands from the advanced startup only to encountering problems like path not found or access denied. I then tried reinstalling my latest windows update (Windows 11 version 23H2) the 0xc0000225 bluescreen stopped but it got replaced with my laptop booting up into a different menu.

1st photo

2nd photo

I can still log into my account and use my laptop but I wanna fix the bootup problems Any idea on solutions?

I plan on following this guide https://www.ventoy.net/en/experience\_rebuildBCD.html

I am gonna buy a usb tomorrow and use EaseUS Partition Master following the guide on the link above to rebuild my BCD because i assume that is my problem, is this a good course of action or should I do a different approach?

Windows for home | Windows 11 | Performance and system failures

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

30 answers

Sort by: Most helpful
  1. Anonymous
    2025-02-24T04:11:39+00:00

    Output photo

    Was this answer helpful?

    0 comments No comments
  2. Ramesh Srinivasan 81,450 Reputation points Independent Advisor
    2025-02-24T03:57:22+00:00

    Please run:

    bcdboot  C:\Windows /s Y: /f UEFI
    
    bootrec /rebuildbcd
    
    bcdedit /store Y:\EFI\Microsoft\Boot\BCD /enum
    

    Post the output.

    Was this answer helpful?

    0 comments No comments
  3. Anonymous
    2025-02-24T03:55:48+00:00

    Was this answer helpful?

    0 comments No comments
  4. Deleted

    This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.


    Comments have been turned off. Learn more

  5. Ramesh Srinivasan 81,450 Reputation points Independent Advisor
    2025-02-24T03:41:43+00:00

    The EFI partition or the disk has a problem.

    0xC0000098    STATUS_FILE_INVALID
    
    The volume for a file has been externally altered such that the opened file is no longer valid.
    

    We can delete the EFI partition and recreate it.

    Run:

    diskpart
    
    select disk 0
    
    list part               -- Note the partition # of the 260 MB EFI partition. It must be #1
    
    select part 1       --- this selects the 260 MB EFI partition
    
    del part override   -- this deletes the 260 MB EFI partition 
    
    create part efi
    
    format fs=fat32 quick
    
    assign letter=Y
    
    list vol
    
    exit
    

    Important: Do not proceed to the next command if a command fails to execute correctly.

    Post screenshots.

    Was this answer helpful?

    0 comments No comments