How To Fix Windows 10 Boot Loop Using Command Prompt - FreeCodeBlog
Last updated: Sep 29, 2021
Bootrec FixBoot Access is denied windows 10 with blue screen boot loop using windows command prompt. Open windows 10 cmd from automatic repair blue page as a adminstration.
Try the following 3 command's that are used to fix windows boot loop.
bootrec /rebuildbcd
bootrec /fixmbr
bootrec /fixboot
If you got below message after running “bootrec /fixboot” command then follow the next steps.
Access is Denied
Now let's see how to fix that. Type below command and run it.
bootsect/nt60 sys
Now run bootrec /fixboot again.
bootrec /fixboot
Now run exit command and choose “continue” from choose an option.
If this method not working then insert a windows 10 installation media such a DVD or USB flash.
Press “F10" or another key to boot windows from installation media.
Navigate into installation media and hit “enter” key to boot from that drive.
Press any key to boot from installation media.
Click “next” button from windows setup page.
Click “repair your computer” button and open “command prompt” from “troubleshoot” Options.
Type the below command and hit enter.
diskpart
Select your boot drive using below command.
sel disk 0
Show available volume using below command.
list vol
Now determine which volume is the EFI partition.
Select the EFI partition using below command.
sel vol 4
Now assign the V letter to the EFI partition following below command.
assign letter V:
Open V partition using this below command.
V:
Format the EFI partition.
format v: /fs:fat32
If you have a Windows 10 build 1709 or newer then use below command to fix boot issue.
bcdboot c:\windows /s v: /f UEFI
Type exit into command prompt.
Now you will boot into windows operating system without blue screen.
Thanks.

My name is Masum Biswas. I'm a full stack developer. I live in Bangladesh and I love to write tutorials and tools that can help to other artisan. I am a big fan of PHP, Javascript, JQuery, Laravel, MySQL, VueJS, Tailwind CSS and Bootstrap from the early stage.
Identify EFI or boot partition in windows 10. Open windows 10 cmd as a adminstration to checking EFI or boot partition. After opening cmd as admins... Read More
You can check list of disk, disk partition, disk volume in windows 10 using command prompt (cmd). Also you can create new partition, delete old par... Read More
Use Rufus software easily to make a bootable pendrive to install Windows 10 on MBR disk. You need a minimum 8GB pendrive to make a MBR bootable pen... Read More
Recover your all importance data from automatic repair loop stuck laptop or desktop. If your laptop stuck on automatic repair and your laptop hard... Read More
You have to install git bash on your devices like windows, mac, linux. I will explain you how you can install git bash on any devices. so let's sta... Read More