I have Windows 8 pre-installed, and then I installed GRUB with Ubuntu. Ubuntu is not my thing, so now I want to remove it along with GRUB. From what I have learned, with UEFI, GRUB does not overwrite the windows bootloader in the EFI partition and is stored elsewhere. How would I remove GRUB and make my PC use the Windows bootloader instead? It should be noted that I created a separate /boot partition when installing Ubuntu.
Ubuntu – Uninstall GRUB and use Windows bootloader
bootbootloaderdual-bootgrub2windows
Best 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)
cmd.exe
process with administrator privilegesdiskpart
list disk
thensel disk X
where X is the drive your boot files reside onlist vol
to see all partitions (volumes) on the disk (the EFI volume will be formatted in FAT, others will be NTFS)sel vol Y
where Y is theSYSTEM
volume (this is almost always the EFI partition)assign letter=Z:
where Z is a free (unused) drive letterexit
to leave disk partcmd
prompt, type:Z:
and hit enter, where Z was the drive letter you just created.dir
to list directories on this mounted EFI partitionEFI
cd EFI
and thendir
to list the child directories insideEFI
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.