I am installing Ubuntu (dual boot with Windows 10) on my laptop and I wanted to know if I format the partition in which Ubuntu is installed, will Grub bootloader be removed too? If not then how can I recover the Windows bootloader?
Asked
Active
Viewed 1,389 times
1 Answers
2
No, it will not be removed. There are 3 ways to recover windows boot manager.
- Remove grub by using the command prompt as mentioned in this answer.
This answer is for those with UEFI who have deleted the Ubuntu partitions before removing grub
You will be doing this from Windows 10. No bootable media required.
Where
bootrec /fixmbr
,bootsect /nt60
and the Ubuntu live with theboot-repair
suggestions have failed, this has worked for me:(This answer borrowed verbatim from here)
- Run a
cmd.exe
process with administrator privileges- Run
diskpart
- Type:
list disk
thensel disk X
where X is the drive your boot files reside on- Type
list vol
to see all partitions (volumes) on the disk (the EFI volume will be formatted in FAT, others will be NTFS)- Select the EFI volume by typing:
sel vol Y
where Y is theSYSTEM
volume (this is almost always the EFI partition)- For convenience, assign a drive letter by typing:
assign letter=Z:
where Z is a free (unused) drive letter- Type
exit
to leave disk part- While still in the
cmd
prompt, type:Z:
and hit enter, where Z was the drive letter you just created.- Type
dir
to list directories on this mounted EFI partition- If you are in the right place, you should see a directory called
EFI
- Type
cd EFI
and thendir
to list the child directories insideEFI
- Type
rmdir /S ubuntu
to delete the ubuntu boot directoryAssuming you only ever had two operating systems (Win 10 & Ubuntu) you should now be able to boot directly to Windows without hitting the black grub screen.
1: http://linuxbsdos.com/2015/09/05/how-to-delete-grub-files-from-a-boot-efi-partition-in-windows-10/
- Bot into Windows installation media USB and run
bootrec.exe /fixmbr
in Repair your computer=> Troubleshoot=> Advanced=> Command Prompt. See here. - You can "Hide" the grub by moving
Windows boot manager
above Ubuntu in Boot sequence in firmware settings.

VidathD
- 2,704