Uninstall Grub and use Windows bootloader











up vote
49
down vote

favorite
56












I have Windows 8 pre-installed and then 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 seperate /boot partition when installing Ubuntu.










share|improve this question






















  • For those who have UEFI systems or who deleted the Ubuntu partitions and were left with grub that isn't fixed by the below answer(s), scroll down to see my recently added answer that can be administered from within Windows with no USB or DVD media required.
    – armadadrive
    Jan 9 '17 at 15:52










  • I think you would solve your problem just using "windows" as your first entry on grub.
    – Vitor Abella
    May 7 at 19:23

















up vote
49
down vote

favorite
56












I have Windows 8 pre-installed and then 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 seperate /boot partition when installing Ubuntu.










share|improve this question






















  • For those who have UEFI systems or who deleted the Ubuntu partitions and were left with grub that isn't fixed by the below answer(s), scroll down to see my recently added answer that can be administered from within Windows with no USB or DVD media required.
    – armadadrive
    Jan 9 '17 at 15:52










  • I think you would solve your problem just using "windows" as your first entry on grub.
    – Vitor Abella
    May 7 at 19:23















up vote
49
down vote

favorite
56









up vote
49
down vote

favorite
56






56





I have Windows 8 pre-installed and then 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 seperate /boot partition when installing Ubuntu.










share|improve this question













I have Windows 8 pre-installed and then 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 seperate /boot partition when installing Ubuntu.







boot dual-boot grub2 windows-8 bootloader






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 5 '14 at 1:53









mrolive

3701510




3701510












  • For those who have UEFI systems or who deleted the Ubuntu partitions and were left with grub that isn't fixed by the below answer(s), scroll down to see my recently added answer that can be administered from within Windows with no USB or DVD media required.
    – armadadrive
    Jan 9 '17 at 15:52










  • I think you would solve your problem just using "windows" as your first entry on grub.
    – Vitor Abella
    May 7 at 19:23




















  • For those who have UEFI systems or who deleted the Ubuntu partitions and were left with grub that isn't fixed by the below answer(s), scroll down to see my recently added answer that can be administered from within Windows with no USB or DVD media required.
    – armadadrive
    Jan 9 '17 at 15:52










  • I think you would solve your problem just using "windows" as your first entry on grub.
    – Vitor Abella
    May 7 at 19:23


















For those who have UEFI systems or who deleted the Ubuntu partitions and were left with grub that isn't fixed by the below answer(s), scroll down to see my recently added answer that can be administered from within Windows with no USB or DVD media required.
– armadadrive
Jan 9 '17 at 15:52




For those who have UEFI systems or who deleted the Ubuntu partitions and were left with grub that isn't fixed by the below answer(s), scroll down to see my recently added answer that can be administered from within Windows with no USB or DVD media required.
– armadadrive
Jan 9 '17 at 15:52












I think you would solve your problem just using "windows" as your first entry on grub.
– Vitor Abella
May 7 at 19:23






I think you would solve your problem just using "windows" as your first entry on grub.
– Vitor Abella
May 7 at 19:23












10 Answers
10






active

oldest

votes

















up vote
55
down vote



+50










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 the boot-repair suggestions have failed, this has worked for me:



(This answer borrowed verbatim from here)




  1. Run a cmd.exe process with administrator privileges

  2. Run diskpart

  3. Type: list disk then sel disk X where X is the drive your boot files reside on

  4. Type list vol to see all partitions (volumes) on the disk

  5. Select the EFI volume by typing: sel vol Y where Y is the SYSTEM volume (this is almost always the EFI partition)

  6. For convenience, assign a drive letter by typing: assign letter=Z: where Z is a free (unused) drive letter

  7. Type exit to leave disk part

  8. While still in the cmd prompt, type: Z: and hit enter, where Z was the drive letter you just created.

  9. Type dir to list directories on this mounted EFI partition

  10. If you are in the right place, you should see a directory called EFI

  11. Type cd EFI and then dir to list the child directories inside EFI

  12. Type rmdir /S ubuntu to delete the ubuntu boot directory


Assuming 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.






share|improve this answer



















  • 2




    I preferred this solution because I did not want to create a bootable device and it worked perfectly
    – Efi Kaltirimidou
    Apr 25 '17 at 10:15






  • 2




    wow everything was exactly where you said it would be!
    – stackOverlord
    Jan 28 at 0:28






  • 1




    This worked for me, but I still have a question: does this actually remove grub or is in the background still something going on where grub hands things over to the windows boot loader?
    – Bram
    Jan 29 at 13:20






  • 1




    This is the solution that works. MBR does not exist anymore because of GPT.
    – dev_nut
    Mar 20 at 2:37






  • 1




    beautiful!! after hours of trying, the only thing that has worked for me!
    – Anton
    May 6 at 18:30


















up vote
31
down vote













I installed (rather upgraded win 7 to 10).

Formatted the Ubuntu drive, from windows explorer.

Still after that, GNU Grub was showing the Ubuntu options.



To enable me auto-restarting in Win 10,




  • Logged into Win 10

  • Press Win+X

  • Open Command Prompt (Admin)

  • c:> bootsect /nt60 <drive name>: /mbr


Thats it.



Hope it helps



Ganesh Kondal






share|improve this answer



















  • 2




    This is by far best solution, one minute, no install disk, usb needed
    – Pavel Niedoba
    Dec 24 '16 at 15:38






  • 1




    Some CISCO Talos annoyware was preventing me from doing this from within my OS, but as of Windows 10 you no longer need an install disk to do this. I have just done this operation without one; all you need to do is log out so you're on the log in screen, then you start holding down Shift, and press the power icon in the bottom right, then click Restart, now let go of Shift. This will open the same menu as the repair disk. You just have to go to Troubleshoot > Advanced options > Command Line and run bootsect /nt60 c: /mbr. Grub will be gone in an instant.
    – SeinopSys
    Mar 11 '17 at 5:02






  • 3




    Does not appear to work for me. Grub appears until I press exit. Updated NTFS filesystem bootcode. The update may be unreliable since the volume could not be locked during the update: Access is denied. ??PhysicalDrive0 Bootcode is only updated on MBR partitioned disks. A different partitioning scheme is used on this disk. Bootcode was successfully updated on all targeted volumes. PS C:WINDOWSsystem32>
    – Menasheh
    May 24 '17 at 4:31






  • 1




    What does the /mbr do? I looked for documentation on bootsect, and I couldn't find anything about /mbr.
    – Pie Till I Die
    Jun 16 '17 at 17:44










  • This worked for me! Thanks.
    – Thorbjørn Ravn Andersen
    Nov 15 '17 at 16:30


















up vote
18
down vote













You can restore the Windows bootloader with a Windows 8/8.1 DVD. These instructions are inspired by Manindra Mehra's answer, but I expanded it with full working details (verified with a Windows 8.1 DVD).




  1. Put the DVD in your optical drive and boot from it.


  2. Press a key when it displays Press any key to start from CD or DVD.


  3. Select your language etc. and click Next.


  4. Click Repair your computer.


  5. Click Troubleshoot.


  6. Click Advanced Options.


  7. Click Command Prompt.


  8. In the command prompt window, type bootrec /fixmbr


  9. Click the red X to close the command prompt.


  10. Click Turn off your PC.


  11. Turn the PC back on and it should boot directly into Windows.



This leaves the Ubuntu partition on your hard drive or SSD. To remove it:




  1. Hit Windows+X and select Disk Management.


  2. Find the Ubuntu partition. It will probably be a large partition without a drive letter.


  3. Be sure you have the correct partition!


  4. Right-click the partition and delete or reformat it with a Windows filesystem.







share|improve this answer




























    up vote
    17
    down vote













    To do so you will need a windows installation cd/dvd




    1. put it in your optical drive and boot from it

    2. on the installation screen where it asks you to install windows, click on Repair Your Computer on the lower left corner of your screen

    3. Now go to command prompt (It probably will show a window saying "Trying to repair windows automatically", close it) and type BootRec.exe /fixmbr

    4. after it finishes GRUB is gone and you can now boot into windows directly

    5. you have an Ubuntu partition left in your computer, that doesn't show in "My Computer", to access that, right click on "My Computer" and Select "Manage" and go to "Disk Management"

    6. Select the Ubuntu partition and format it to a file system that windows can use.






    share|improve this answer























    • For completeness, also remove ubuntu from the efi boot menu. I think this should be added as step 7.
      – Yibo Yang
      May 11 '17 at 2:12










    • Please fix step 3 by explaining how to go to command prompt. Michael Geary's answer is more complete. This answer led me to reset my PC unnecessarily once because I didn't know how to go to command prompt.
      – Felo Vilches
      May 14 '17 at 16:02


















    up vote
    3
    down vote













    With UEFI you have both a Windows folder & an Ubuntu folder in the efi partition. the UEFI reads the efi entries and adds them to its own NVRAM to remember them. You have to remove ubuntu folder from efi partition first or UEFI will re-add it. Then you have to remove UEFI entry from UEFI.



    You should have these folders in the efi partition. Delete only the ubuntu folder. Live installer should show folders. And if only Windows you have to mount from inside Windows the efi partition as it is not normally mounted.



    /EFI/Boot
    /EFI/Microsoft
    /EFI/ubuntu


    You should not have to install Ubuntu but can use live installer DVD or flash drive. Some UEFI systems may let you do the UEFI edit from UEFI menu.



    from liveDVD or flash and use efibootmgr



    sudo efibootmgr -v


    The "-v" option displays all the entries so you can confirm you're deleting the right one, and then you use the combination of "-b ####" (to specify the entry) and "-B" (to delete it). Examples #5 is delete:



    http://linux.dell.com/cgi-bin/gitweb/gitweb.cgi?p=efibootmgr.git;a=blob_plain;f=README;hb=HEAD



    http://software.intel.com/en-us/articles/efi-shells-and-scripting/






    share|improve this answer





















    • This was helpful in directing what I needed to do. I could delete the ubuntu partition in Windows using informaition from here: superuser.com/questions/662823/…
      – flickerfly
      Feb 3 '17 at 17:59


















    up vote
    2
    down vote













    You can also use a USB memory stick for this job. It takes three applications: Unetbootin, FreeDOS and Testdisk for DOS.




    1. First download Unetbootin and use it to make a bootable USB memory stick. Choose Freedos when prompted for a distribution to install on it.

    2. Download Testdisk for DOS (don't pick the beta, but pick the stable version).

    3. Unzip the files testdisk.exe and CWSDPMI.exe, and put them on the bootable memory stick (not in a folder, just straight on it).

    4. Boot your computer from the memory stick. At the Default window, simply press Enter.

    5. Now FreeDOS is being launched. Choose: FreeDOS Safe Mode (don't load any drivers) and Press Enter.

    6. Then type: C: and Press Enter.

    7. Now type: testdisk and Press Enter.

    8. Select [No Log] and Press Enter.

    9. Select the hard drive concerned: usually the second option (the first option is the memory stick itself) and Press Enter.

    10. Select [Intel] and Press Enter

    11. Select [MBR Code] and press Enter. When prompted, type y (yes) and press Enter again.


    Now you're done! Reboot your computer normally. Your computer should boot up Windows now.






    share|improve this answer























    • Welcome to AskUbuntu! As it appears this was a copy paste, please consider linking to the original page at the end of your answer.
      – TheSchwa
      Feb 18 '16 at 10:37


















    up vote
    1
    down vote













    If All Else Fails!





    The guy above me's method does not work on newer EFI computers. I solved the problem. Here is how I did it. WARNING, you have to reinstall Linux / grub first!



    Steps: (this is if nothing else works and takes a long time)



    1: Reinstall Ubuntu / Linux mint (this is just so you can use GRUB to boot into Windows).



    1.5: Restart and boot into windows (if you can't boot to Windows, then live boot from the CD or USB and run the following in a console:



    If you have a windows repair disk you can select the UEFI firmware option and load Windows from there (to avoid reinstalling Linux)



    Boot repair (if needed right now)





    sudo add-apt-repository ppa:yannubuntu/boot-repair

    sudo apt-get update

    sudo apt-get install -y boot-repair && (boot-repair &)


    1g: Select recommended repair and follow the on screen instructions.



    2g: After your done, reboot. You should see the grub menu, even though you can boot to Windows from here, this is not what we want yet... But find the option that boots into Windows.





    2: Once your booted into Windows, run your disk partition editor and delete All partitions related to Linux / grub. Especially make sure the small grub partition is removed. Reboot



    2.5: Make sure the windows loader is the first selected boot device. (most likely is). Disable the Ubuntu option. Continue boot.



    3: If you've done everything right up to this point you should see (depending on your computer) your splash screen for a second and then it will turn into an error screen saying that there was an error with the boot. ("Winload.exe is missing or corrupted" most likly).



    3.5: Don't be alarmed (I was). The next step will restore your original bootloader.



    4: Restart and boot to your Linux CD or USB.



    5: Once booted, run boot repair commands from above again. This time when running it. It will act differently, there is no grub bootloader detected to reinstall and should run faster than before.



    6: Once complete, restart.



    7: Enjoy your GRUB free system!



    This worked for me when nothing else did, I ran bootrec.exe. Nothing worked. This saved my computers life. Hope it saves yours!






    share|improve this answer






























      up vote
      1
      down vote













      No CD's, USB's, DVD's. No long tutorials.



      On UEFI all you have to do is:



      Place Windows boot entry in NVRAM as first.



      How to do this - several solutions.



      Easiest solution is to use firmware functionality and reorder NVRAM boot entries.






      share|improve this answer




























        up vote
        1
        down vote













        For system with GPT partition table, the method provided by @Ganesh Kondal won't work. Using bootsect /nt60 C: /mbr will show that it worked while it really doesn't. Using bootrec /fixmbr will lead to error that "the system cannot find the file specified". If any of the above situation applies, do the following (Using Windows 10 as an example):




        1. at log in prompt, hold shift, click on power button, choose restart, let go of shift

        2. choose troubleshoot -> advanced options -> command line

        3. at command line, type in bcdboot <drive name>:windows


        for more detailed information, also look at this webpage:https://www.tenforums.com/general-support/74226-bootmgr-error-cant-find-fix.html






        share|improve this answer




























          up vote
          0
          down vote













          What worked for me is:




          1. Boot to Windows

          2. Win + X

          3. Command Prompt (as admin)

          4. bcdedit /set {bootmgr} path EFIMicrosoftBootbootmgfw.efi

          5. Reboot






          share|improve this answer




















            protected by Zanna Mar 7 '17 at 19:44



            Thank you for your interest in this question.
            Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).



            Would you like to answer one of these unanswered questions instead?














            10 Answers
            10






            active

            oldest

            votes








            10 Answers
            10






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            55
            down vote



            +50










            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 the boot-repair suggestions have failed, this has worked for me:



            (This answer borrowed verbatim from here)




            1. Run a cmd.exe process with administrator privileges

            2. Run diskpart

            3. Type: list disk then sel disk X where X is the drive your boot files reside on

            4. Type list vol to see all partitions (volumes) on the disk

            5. Select the EFI volume by typing: sel vol Y where Y is the SYSTEM volume (this is almost always the EFI partition)

            6. For convenience, assign a drive letter by typing: assign letter=Z: where Z is a free (unused) drive letter

            7. Type exit to leave disk part

            8. While still in the cmd prompt, type: Z: and hit enter, where Z was the drive letter you just created.

            9. Type dir to list directories on this mounted EFI partition

            10. If you are in the right place, you should see a directory called EFI

            11. Type cd EFI and then dir to list the child directories inside EFI

            12. Type rmdir /S ubuntu to delete the ubuntu boot directory


            Assuming 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.






            share|improve this answer



















            • 2




              I preferred this solution because I did not want to create a bootable device and it worked perfectly
              – Efi Kaltirimidou
              Apr 25 '17 at 10:15






            • 2




              wow everything was exactly where you said it would be!
              – stackOverlord
              Jan 28 at 0:28






            • 1




              This worked for me, but I still have a question: does this actually remove grub or is in the background still something going on where grub hands things over to the windows boot loader?
              – Bram
              Jan 29 at 13:20






            • 1




              This is the solution that works. MBR does not exist anymore because of GPT.
              – dev_nut
              Mar 20 at 2:37






            • 1




              beautiful!! after hours of trying, the only thing that has worked for me!
              – Anton
              May 6 at 18:30















            up vote
            55
            down vote



            +50










            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 the boot-repair suggestions have failed, this has worked for me:



            (This answer borrowed verbatim from here)




            1. Run a cmd.exe process with administrator privileges

            2. Run diskpart

            3. Type: list disk then sel disk X where X is the drive your boot files reside on

            4. Type list vol to see all partitions (volumes) on the disk

            5. Select the EFI volume by typing: sel vol Y where Y is the SYSTEM volume (this is almost always the EFI partition)

            6. For convenience, assign a drive letter by typing: assign letter=Z: where Z is a free (unused) drive letter

            7. Type exit to leave disk part

            8. While still in the cmd prompt, type: Z: and hit enter, where Z was the drive letter you just created.

            9. Type dir to list directories on this mounted EFI partition

            10. If you are in the right place, you should see a directory called EFI

            11. Type cd EFI and then dir to list the child directories inside EFI

            12. Type rmdir /S ubuntu to delete the ubuntu boot directory


            Assuming 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.






            share|improve this answer



















            • 2




              I preferred this solution because I did not want to create a bootable device and it worked perfectly
              – Efi Kaltirimidou
              Apr 25 '17 at 10:15






            • 2




              wow everything was exactly where you said it would be!
              – stackOverlord
              Jan 28 at 0:28






            • 1




              This worked for me, but I still have a question: does this actually remove grub or is in the background still something going on where grub hands things over to the windows boot loader?
              – Bram
              Jan 29 at 13:20






            • 1




              This is the solution that works. MBR does not exist anymore because of GPT.
              – dev_nut
              Mar 20 at 2:37






            • 1




              beautiful!! after hours of trying, the only thing that has worked for me!
              – Anton
              May 6 at 18:30













            up vote
            55
            down vote



            +50







            up vote
            55
            down vote



            +50




            +50




            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 the boot-repair suggestions have failed, this has worked for me:



            (This answer borrowed verbatim from here)




            1. Run a cmd.exe process with administrator privileges

            2. Run diskpart

            3. Type: list disk then sel disk X where X is the drive your boot files reside on

            4. Type list vol to see all partitions (volumes) on the disk

            5. Select the EFI volume by typing: sel vol Y where Y is the SYSTEM volume (this is almost always the EFI partition)

            6. For convenience, assign a drive letter by typing: assign letter=Z: where Z is a free (unused) drive letter

            7. Type exit to leave disk part

            8. While still in the cmd prompt, type: Z: and hit enter, where Z was the drive letter you just created.

            9. Type dir to list directories on this mounted EFI partition

            10. If you are in the right place, you should see a directory called EFI

            11. Type cd EFI and then dir to list the child directories inside EFI

            12. Type rmdir /S ubuntu to delete the ubuntu boot directory


            Assuming 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.






            share|improve 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 the boot-repair suggestions have failed, this has worked for me:



            (This answer borrowed verbatim from here)




            1. Run a cmd.exe process with administrator privileges

            2. Run diskpart

            3. Type: list disk then sel disk X where X is the drive your boot files reside on

            4. Type list vol to see all partitions (volumes) on the disk

            5. Select the EFI volume by typing: sel vol Y where Y is the SYSTEM volume (this is almost always the EFI partition)

            6. For convenience, assign a drive letter by typing: assign letter=Z: where Z is a free (unused) drive letter

            7. Type exit to leave disk part

            8. While still in the cmd prompt, type: Z: and hit enter, where Z was the drive letter you just created.

            9. Type dir to list directories on this mounted EFI partition

            10. If you are in the right place, you should see a directory called EFI

            11. Type cd EFI and then dir to list the child directories inside EFI

            12. Type rmdir /S ubuntu to delete the ubuntu boot directory


            Assuming 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.







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Jul 25 '17 at 4:27









            Christopher Smith

            33




            33










            answered Jan 9 '17 at 15:50









            armadadrive

            70857




            70857








            • 2




              I preferred this solution because I did not want to create a bootable device and it worked perfectly
              – Efi Kaltirimidou
              Apr 25 '17 at 10:15






            • 2




              wow everything was exactly where you said it would be!
              – stackOverlord
              Jan 28 at 0:28






            • 1




              This worked for me, but I still have a question: does this actually remove grub or is in the background still something going on where grub hands things over to the windows boot loader?
              – Bram
              Jan 29 at 13:20






            • 1




              This is the solution that works. MBR does not exist anymore because of GPT.
              – dev_nut
              Mar 20 at 2:37






            • 1




              beautiful!! after hours of trying, the only thing that has worked for me!
              – Anton
              May 6 at 18:30














            • 2




              I preferred this solution because I did not want to create a bootable device and it worked perfectly
              – Efi Kaltirimidou
              Apr 25 '17 at 10:15






            • 2




              wow everything was exactly where you said it would be!
              – stackOverlord
              Jan 28 at 0:28






            • 1




              This worked for me, but I still have a question: does this actually remove grub or is in the background still something going on where grub hands things over to the windows boot loader?
              – Bram
              Jan 29 at 13:20






            • 1




              This is the solution that works. MBR does not exist anymore because of GPT.
              – dev_nut
              Mar 20 at 2:37






            • 1




              beautiful!! after hours of trying, the only thing that has worked for me!
              – Anton
              May 6 at 18:30








            2




            2




            I preferred this solution because I did not want to create a bootable device and it worked perfectly
            – Efi Kaltirimidou
            Apr 25 '17 at 10:15




            I preferred this solution because I did not want to create a bootable device and it worked perfectly
            – Efi Kaltirimidou
            Apr 25 '17 at 10:15




            2




            2




            wow everything was exactly where you said it would be!
            – stackOverlord
            Jan 28 at 0:28




            wow everything was exactly where you said it would be!
            – stackOverlord
            Jan 28 at 0:28




            1




            1




            This worked for me, but I still have a question: does this actually remove grub or is in the background still something going on where grub hands things over to the windows boot loader?
            – Bram
            Jan 29 at 13:20




            This worked for me, but I still have a question: does this actually remove grub or is in the background still something going on where grub hands things over to the windows boot loader?
            – Bram
            Jan 29 at 13:20




            1




            1




            This is the solution that works. MBR does not exist anymore because of GPT.
            – dev_nut
            Mar 20 at 2:37




            This is the solution that works. MBR does not exist anymore because of GPT.
            – dev_nut
            Mar 20 at 2:37




            1




            1




            beautiful!! after hours of trying, the only thing that has worked for me!
            – Anton
            May 6 at 18:30




            beautiful!! after hours of trying, the only thing that has worked for me!
            – Anton
            May 6 at 18:30












            up vote
            31
            down vote













            I installed (rather upgraded win 7 to 10).

            Formatted the Ubuntu drive, from windows explorer.

            Still after that, GNU Grub was showing the Ubuntu options.



            To enable me auto-restarting in Win 10,




            • Logged into Win 10

            • Press Win+X

            • Open Command Prompt (Admin)

            • c:> bootsect /nt60 <drive name>: /mbr


            Thats it.



            Hope it helps



            Ganesh Kondal






            share|improve this answer



















            • 2




              This is by far best solution, one minute, no install disk, usb needed
              – Pavel Niedoba
              Dec 24 '16 at 15:38






            • 1




              Some CISCO Talos annoyware was preventing me from doing this from within my OS, but as of Windows 10 you no longer need an install disk to do this. I have just done this operation without one; all you need to do is log out so you're on the log in screen, then you start holding down Shift, and press the power icon in the bottom right, then click Restart, now let go of Shift. This will open the same menu as the repair disk. You just have to go to Troubleshoot > Advanced options > Command Line and run bootsect /nt60 c: /mbr. Grub will be gone in an instant.
              – SeinopSys
              Mar 11 '17 at 5:02






            • 3




              Does not appear to work for me. Grub appears until I press exit. Updated NTFS filesystem bootcode. The update may be unreliable since the volume could not be locked during the update: Access is denied. ??PhysicalDrive0 Bootcode is only updated on MBR partitioned disks. A different partitioning scheme is used on this disk. Bootcode was successfully updated on all targeted volumes. PS C:WINDOWSsystem32>
              – Menasheh
              May 24 '17 at 4:31






            • 1




              What does the /mbr do? I looked for documentation on bootsect, and I couldn't find anything about /mbr.
              – Pie Till I Die
              Jun 16 '17 at 17:44










            • This worked for me! Thanks.
              – Thorbjørn Ravn Andersen
              Nov 15 '17 at 16:30















            up vote
            31
            down vote













            I installed (rather upgraded win 7 to 10).

            Formatted the Ubuntu drive, from windows explorer.

            Still after that, GNU Grub was showing the Ubuntu options.



            To enable me auto-restarting in Win 10,




            • Logged into Win 10

            • Press Win+X

            • Open Command Prompt (Admin)

            • c:> bootsect /nt60 <drive name>: /mbr


            Thats it.



            Hope it helps



            Ganesh Kondal






            share|improve this answer



















            • 2




              This is by far best solution, one minute, no install disk, usb needed
              – Pavel Niedoba
              Dec 24 '16 at 15:38






            • 1




              Some CISCO Talos annoyware was preventing me from doing this from within my OS, but as of Windows 10 you no longer need an install disk to do this. I have just done this operation without one; all you need to do is log out so you're on the log in screen, then you start holding down Shift, and press the power icon in the bottom right, then click Restart, now let go of Shift. This will open the same menu as the repair disk. You just have to go to Troubleshoot > Advanced options > Command Line and run bootsect /nt60 c: /mbr. Grub will be gone in an instant.
              – SeinopSys
              Mar 11 '17 at 5:02






            • 3




              Does not appear to work for me. Grub appears until I press exit. Updated NTFS filesystem bootcode. The update may be unreliable since the volume could not be locked during the update: Access is denied. ??PhysicalDrive0 Bootcode is only updated on MBR partitioned disks. A different partitioning scheme is used on this disk. Bootcode was successfully updated on all targeted volumes. PS C:WINDOWSsystem32>
              – Menasheh
              May 24 '17 at 4:31






            • 1




              What does the /mbr do? I looked for documentation on bootsect, and I couldn't find anything about /mbr.
              – Pie Till I Die
              Jun 16 '17 at 17:44










            • This worked for me! Thanks.
              – Thorbjørn Ravn Andersen
              Nov 15 '17 at 16:30













            up vote
            31
            down vote










            up vote
            31
            down vote









            I installed (rather upgraded win 7 to 10).

            Formatted the Ubuntu drive, from windows explorer.

            Still after that, GNU Grub was showing the Ubuntu options.



            To enable me auto-restarting in Win 10,




            • Logged into Win 10

            • Press Win+X

            • Open Command Prompt (Admin)

            • c:> bootsect /nt60 <drive name>: /mbr


            Thats it.



            Hope it helps



            Ganesh Kondal






            share|improve this answer














            I installed (rather upgraded win 7 to 10).

            Formatted the Ubuntu drive, from windows explorer.

            Still after that, GNU Grub was showing the Ubuntu options.



            To enable me auto-restarting in Win 10,




            • Logged into Win 10

            • Press Win+X

            • Open Command Prompt (Admin)

            • c:> bootsect /nt60 <drive name>: /mbr


            Thats it.



            Hope it helps



            Ganesh Kondal







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited May 17 '16 at 13:20









            Mostafa Ahangarha

            2,53352142




            2,53352142










            answered May 15 '16 at 8:07









            Ganesh Kondal

            31932




            31932








            • 2




              This is by far best solution, one minute, no install disk, usb needed
              – Pavel Niedoba
              Dec 24 '16 at 15:38






            • 1




              Some CISCO Talos annoyware was preventing me from doing this from within my OS, but as of Windows 10 you no longer need an install disk to do this. I have just done this operation without one; all you need to do is log out so you're on the log in screen, then you start holding down Shift, and press the power icon in the bottom right, then click Restart, now let go of Shift. This will open the same menu as the repair disk. You just have to go to Troubleshoot > Advanced options > Command Line and run bootsect /nt60 c: /mbr. Grub will be gone in an instant.
              – SeinopSys
              Mar 11 '17 at 5:02






            • 3




              Does not appear to work for me. Grub appears until I press exit. Updated NTFS filesystem bootcode. The update may be unreliable since the volume could not be locked during the update: Access is denied. ??PhysicalDrive0 Bootcode is only updated on MBR partitioned disks. A different partitioning scheme is used on this disk. Bootcode was successfully updated on all targeted volumes. PS C:WINDOWSsystem32>
              – Menasheh
              May 24 '17 at 4:31






            • 1




              What does the /mbr do? I looked for documentation on bootsect, and I couldn't find anything about /mbr.
              – Pie Till I Die
              Jun 16 '17 at 17:44










            • This worked for me! Thanks.
              – Thorbjørn Ravn Andersen
              Nov 15 '17 at 16:30














            • 2




              This is by far best solution, one minute, no install disk, usb needed
              – Pavel Niedoba
              Dec 24 '16 at 15:38






            • 1




              Some CISCO Talos annoyware was preventing me from doing this from within my OS, but as of Windows 10 you no longer need an install disk to do this. I have just done this operation without one; all you need to do is log out so you're on the log in screen, then you start holding down Shift, and press the power icon in the bottom right, then click Restart, now let go of Shift. This will open the same menu as the repair disk. You just have to go to Troubleshoot > Advanced options > Command Line and run bootsect /nt60 c: /mbr. Grub will be gone in an instant.
              – SeinopSys
              Mar 11 '17 at 5:02






            • 3




              Does not appear to work for me. Grub appears until I press exit. Updated NTFS filesystem bootcode. The update may be unreliable since the volume could not be locked during the update: Access is denied. ??PhysicalDrive0 Bootcode is only updated on MBR partitioned disks. A different partitioning scheme is used on this disk. Bootcode was successfully updated on all targeted volumes. PS C:WINDOWSsystem32>
              – Menasheh
              May 24 '17 at 4:31






            • 1




              What does the /mbr do? I looked for documentation on bootsect, and I couldn't find anything about /mbr.
              – Pie Till I Die
              Jun 16 '17 at 17:44










            • This worked for me! Thanks.
              – Thorbjørn Ravn Andersen
              Nov 15 '17 at 16:30








            2




            2




            This is by far best solution, one minute, no install disk, usb needed
            – Pavel Niedoba
            Dec 24 '16 at 15:38




            This is by far best solution, one minute, no install disk, usb needed
            – Pavel Niedoba
            Dec 24 '16 at 15:38




            1




            1




            Some CISCO Talos annoyware was preventing me from doing this from within my OS, but as of Windows 10 you no longer need an install disk to do this. I have just done this operation without one; all you need to do is log out so you're on the log in screen, then you start holding down Shift, and press the power icon in the bottom right, then click Restart, now let go of Shift. This will open the same menu as the repair disk. You just have to go to Troubleshoot > Advanced options > Command Line and run bootsect /nt60 c: /mbr. Grub will be gone in an instant.
            – SeinopSys
            Mar 11 '17 at 5:02




            Some CISCO Talos annoyware was preventing me from doing this from within my OS, but as of Windows 10 you no longer need an install disk to do this. I have just done this operation without one; all you need to do is log out so you're on the log in screen, then you start holding down Shift, and press the power icon in the bottom right, then click Restart, now let go of Shift. This will open the same menu as the repair disk. You just have to go to Troubleshoot > Advanced options > Command Line and run bootsect /nt60 c: /mbr. Grub will be gone in an instant.
            – SeinopSys
            Mar 11 '17 at 5:02




            3




            3




            Does not appear to work for me. Grub appears until I press exit. Updated NTFS filesystem bootcode. The update may be unreliable since the volume could not be locked during the update: Access is denied. ??PhysicalDrive0 Bootcode is only updated on MBR partitioned disks. A different partitioning scheme is used on this disk. Bootcode was successfully updated on all targeted volumes. PS C:WINDOWSsystem32>
            – Menasheh
            May 24 '17 at 4:31




            Does not appear to work for me. Grub appears until I press exit. Updated NTFS filesystem bootcode. The update may be unreliable since the volume could not be locked during the update: Access is denied. ??PhysicalDrive0 Bootcode is only updated on MBR partitioned disks. A different partitioning scheme is used on this disk. Bootcode was successfully updated on all targeted volumes. PS C:WINDOWSsystem32>
            – Menasheh
            May 24 '17 at 4:31




            1




            1




            What does the /mbr do? I looked for documentation on bootsect, and I couldn't find anything about /mbr.
            – Pie Till I Die
            Jun 16 '17 at 17:44




            What does the /mbr do? I looked for documentation on bootsect, and I couldn't find anything about /mbr.
            – Pie Till I Die
            Jun 16 '17 at 17:44












            This worked for me! Thanks.
            – Thorbjørn Ravn Andersen
            Nov 15 '17 at 16:30




            This worked for me! Thanks.
            – Thorbjørn Ravn Andersen
            Nov 15 '17 at 16:30










            up vote
            18
            down vote













            You can restore the Windows bootloader with a Windows 8/8.1 DVD. These instructions are inspired by Manindra Mehra's answer, but I expanded it with full working details (verified with a Windows 8.1 DVD).




            1. Put the DVD in your optical drive and boot from it.


            2. Press a key when it displays Press any key to start from CD or DVD.


            3. Select your language etc. and click Next.


            4. Click Repair your computer.


            5. Click Troubleshoot.


            6. Click Advanced Options.


            7. Click Command Prompt.


            8. In the command prompt window, type bootrec /fixmbr


            9. Click the red X to close the command prompt.


            10. Click Turn off your PC.


            11. Turn the PC back on and it should boot directly into Windows.



            This leaves the Ubuntu partition on your hard drive or SSD. To remove it:




            1. Hit Windows+X and select Disk Management.


            2. Find the Ubuntu partition. It will probably be a large partition without a drive letter.


            3. Be sure you have the correct partition!


            4. Right-click the partition and delete or reformat it with a Windows filesystem.







            share|improve this answer

























              up vote
              18
              down vote













              You can restore the Windows bootloader with a Windows 8/8.1 DVD. These instructions are inspired by Manindra Mehra's answer, but I expanded it with full working details (verified with a Windows 8.1 DVD).




              1. Put the DVD in your optical drive and boot from it.


              2. Press a key when it displays Press any key to start from CD or DVD.


              3. Select your language etc. and click Next.


              4. Click Repair your computer.


              5. Click Troubleshoot.


              6. Click Advanced Options.


              7. Click Command Prompt.


              8. In the command prompt window, type bootrec /fixmbr


              9. Click the red X to close the command prompt.


              10. Click Turn off your PC.


              11. Turn the PC back on and it should boot directly into Windows.



              This leaves the Ubuntu partition on your hard drive or SSD. To remove it:




              1. Hit Windows+X and select Disk Management.


              2. Find the Ubuntu partition. It will probably be a large partition without a drive letter.


              3. Be sure you have the correct partition!


              4. Right-click the partition and delete or reformat it with a Windows filesystem.







              share|improve this answer























                up vote
                18
                down vote










                up vote
                18
                down vote









                You can restore the Windows bootloader with a Windows 8/8.1 DVD. These instructions are inspired by Manindra Mehra's answer, but I expanded it with full working details (verified with a Windows 8.1 DVD).




                1. Put the DVD in your optical drive and boot from it.


                2. Press a key when it displays Press any key to start from CD or DVD.


                3. Select your language etc. and click Next.


                4. Click Repair your computer.


                5. Click Troubleshoot.


                6. Click Advanced Options.


                7. Click Command Prompt.


                8. In the command prompt window, type bootrec /fixmbr


                9. Click the red X to close the command prompt.


                10. Click Turn off your PC.


                11. Turn the PC back on and it should boot directly into Windows.



                This leaves the Ubuntu partition on your hard drive or SSD. To remove it:




                1. Hit Windows+X and select Disk Management.


                2. Find the Ubuntu partition. It will probably be a large partition without a drive letter.


                3. Be sure you have the correct partition!


                4. Right-click the partition and delete or reformat it with a Windows filesystem.







                share|improve this answer












                You can restore the Windows bootloader with a Windows 8/8.1 DVD. These instructions are inspired by Manindra Mehra's answer, but I expanded it with full working details (verified with a Windows 8.1 DVD).




                1. Put the DVD in your optical drive and boot from it.


                2. Press a key when it displays Press any key to start from CD or DVD.


                3. Select your language etc. and click Next.


                4. Click Repair your computer.


                5. Click Troubleshoot.


                6. Click Advanced Options.


                7. Click Command Prompt.


                8. In the command prompt window, type bootrec /fixmbr


                9. Click the red X to close the command prompt.


                10. Click Turn off your PC.


                11. Turn the PC back on and it should boot directly into Windows.



                This leaves the Ubuntu partition on your hard drive or SSD. To remove it:




                1. Hit Windows+X and select Disk Management.


                2. Find the Ubuntu partition. It will probably be a large partition without a drive letter.


                3. Be sure you have the correct partition!


                4. Right-click the partition and delete or reformat it with a Windows filesystem.








                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Jul 31 '15 at 5:46









                Michael Geary

                28124




                28124






















                    up vote
                    17
                    down vote













                    To do so you will need a windows installation cd/dvd




                    1. put it in your optical drive and boot from it

                    2. on the installation screen where it asks you to install windows, click on Repair Your Computer on the lower left corner of your screen

                    3. Now go to command prompt (It probably will show a window saying "Trying to repair windows automatically", close it) and type BootRec.exe /fixmbr

                    4. after it finishes GRUB is gone and you can now boot into windows directly

                    5. you have an Ubuntu partition left in your computer, that doesn't show in "My Computer", to access that, right click on "My Computer" and Select "Manage" and go to "Disk Management"

                    6. Select the Ubuntu partition and format it to a file system that windows can use.






                    share|improve this answer























                    • For completeness, also remove ubuntu from the efi boot menu. I think this should be added as step 7.
                      – Yibo Yang
                      May 11 '17 at 2:12










                    • Please fix step 3 by explaining how to go to command prompt. Michael Geary's answer is more complete. This answer led me to reset my PC unnecessarily once because I didn't know how to go to command prompt.
                      – Felo Vilches
                      May 14 '17 at 16:02















                    up vote
                    17
                    down vote













                    To do so you will need a windows installation cd/dvd




                    1. put it in your optical drive and boot from it

                    2. on the installation screen where it asks you to install windows, click on Repair Your Computer on the lower left corner of your screen

                    3. Now go to command prompt (It probably will show a window saying "Trying to repair windows automatically", close it) and type BootRec.exe /fixmbr

                    4. after it finishes GRUB is gone and you can now boot into windows directly

                    5. you have an Ubuntu partition left in your computer, that doesn't show in "My Computer", to access that, right click on "My Computer" and Select "Manage" and go to "Disk Management"

                    6. Select the Ubuntu partition and format it to a file system that windows can use.






                    share|improve this answer























                    • For completeness, also remove ubuntu from the efi boot menu. I think this should be added as step 7.
                      – Yibo Yang
                      May 11 '17 at 2:12










                    • Please fix step 3 by explaining how to go to command prompt. Michael Geary's answer is more complete. This answer led me to reset my PC unnecessarily once because I didn't know how to go to command prompt.
                      – Felo Vilches
                      May 14 '17 at 16:02













                    up vote
                    17
                    down vote










                    up vote
                    17
                    down vote









                    To do so you will need a windows installation cd/dvd




                    1. put it in your optical drive and boot from it

                    2. on the installation screen where it asks you to install windows, click on Repair Your Computer on the lower left corner of your screen

                    3. Now go to command prompt (It probably will show a window saying "Trying to repair windows automatically", close it) and type BootRec.exe /fixmbr

                    4. after it finishes GRUB is gone and you can now boot into windows directly

                    5. you have an Ubuntu partition left in your computer, that doesn't show in "My Computer", to access that, right click on "My Computer" and Select "Manage" and go to "Disk Management"

                    6. Select the Ubuntu partition and format it to a file system that windows can use.






                    share|improve this answer














                    To do so you will need a windows installation cd/dvd




                    1. put it in your optical drive and boot from it

                    2. on the installation screen where it asks you to install windows, click on Repair Your Computer on the lower left corner of your screen

                    3. Now go to command prompt (It probably will show a window saying "Trying to repair windows automatically", close it) and type BootRec.exe /fixmbr

                    4. after it finishes GRUB is gone and you can now boot into windows directly

                    5. you have an Ubuntu partition left in your computer, that doesn't show in "My Computer", to access that, right click on "My Computer" and Select "Manage" and go to "Disk Management"

                    6. Select the Ubuntu partition and format it to a file system that windows can use.







                    share|improve this answer














                    share|improve this answer



                    share|improve this answer








                    edited Jul 7 '16 at 11:08









                    Wayne_Yux

                    3,96131428




                    3,96131428










                    answered Mar 5 '14 at 4:35









                    Manindra Mehra

                    1893




                    1893












                    • For completeness, also remove ubuntu from the efi boot menu. I think this should be added as step 7.
                      – Yibo Yang
                      May 11 '17 at 2:12










                    • Please fix step 3 by explaining how to go to command prompt. Michael Geary's answer is more complete. This answer led me to reset my PC unnecessarily once because I didn't know how to go to command prompt.
                      – Felo Vilches
                      May 14 '17 at 16:02


















                    • For completeness, also remove ubuntu from the efi boot menu. I think this should be added as step 7.
                      – Yibo Yang
                      May 11 '17 at 2:12










                    • Please fix step 3 by explaining how to go to command prompt. Michael Geary's answer is more complete. This answer led me to reset my PC unnecessarily once because I didn't know how to go to command prompt.
                      – Felo Vilches
                      May 14 '17 at 16:02
















                    For completeness, also remove ubuntu from the efi boot menu. I think this should be added as step 7.
                    – Yibo Yang
                    May 11 '17 at 2:12




                    For completeness, also remove ubuntu from the efi boot menu. I think this should be added as step 7.
                    – Yibo Yang
                    May 11 '17 at 2:12












                    Please fix step 3 by explaining how to go to command prompt. Michael Geary's answer is more complete. This answer led me to reset my PC unnecessarily once because I didn't know how to go to command prompt.
                    – Felo Vilches
                    May 14 '17 at 16:02




                    Please fix step 3 by explaining how to go to command prompt. Michael Geary's answer is more complete. This answer led me to reset my PC unnecessarily once because I didn't know how to go to command prompt.
                    – Felo Vilches
                    May 14 '17 at 16:02










                    up vote
                    3
                    down vote













                    With UEFI you have both a Windows folder & an Ubuntu folder in the efi partition. the UEFI reads the efi entries and adds them to its own NVRAM to remember them. You have to remove ubuntu folder from efi partition first or UEFI will re-add it. Then you have to remove UEFI entry from UEFI.



                    You should have these folders in the efi partition. Delete only the ubuntu folder. Live installer should show folders. And if only Windows you have to mount from inside Windows the efi partition as it is not normally mounted.



                    /EFI/Boot
                    /EFI/Microsoft
                    /EFI/ubuntu


                    You should not have to install Ubuntu but can use live installer DVD or flash drive. Some UEFI systems may let you do the UEFI edit from UEFI menu.



                    from liveDVD or flash and use efibootmgr



                    sudo efibootmgr -v


                    The "-v" option displays all the entries so you can confirm you're deleting the right one, and then you use the combination of "-b ####" (to specify the entry) and "-B" (to delete it). Examples #5 is delete:



                    http://linux.dell.com/cgi-bin/gitweb/gitweb.cgi?p=efibootmgr.git;a=blob_plain;f=README;hb=HEAD



                    http://software.intel.com/en-us/articles/efi-shells-and-scripting/






                    share|improve this answer





















                    • This was helpful in directing what I needed to do. I could delete the ubuntu partition in Windows using informaition from here: superuser.com/questions/662823/…
                      – flickerfly
                      Feb 3 '17 at 17:59















                    up vote
                    3
                    down vote













                    With UEFI you have both a Windows folder & an Ubuntu folder in the efi partition. the UEFI reads the efi entries and adds them to its own NVRAM to remember them. You have to remove ubuntu folder from efi partition first or UEFI will re-add it. Then you have to remove UEFI entry from UEFI.



                    You should have these folders in the efi partition. Delete only the ubuntu folder. Live installer should show folders. And if only Windows you have to mount from inside Windows the efi partition as it is not normally mounted.



                    /EFI/Boot
                    /EFI/Microsoft
                    /EFI/ubuntu


                    You should not have to install Ubuntu but can use live installer DVD or flash drive. Some UEFI systems may let you do the UEFI edit from UEFI menu.



                    from liveDVD or flash and use efibootmgr



                    sudo efibootmgr -v


                    The "-v" option displays all the entries so you can confirm you're deleting the right one, and then you use the combination of "-b ####" (to specify the entry) and "-B" (to delete it). Examples #5 is delete:



                    http://linux.dell.com/cgi-bin/gitweb/gitweb.cgi?p=efibootmgr.git;a=blob_plain;f=README;hb=HEAD



                    http://software.intel.com/en-us/articles/efi-shells-and-scripting/






                    share|improve this answer





















                    • This was helpful in directing what I needed to do. I could delete the ubuntu partition in Windows using informaition from here: superuser.com/questions/662823/…
                      – flickerfly
                      Feb 3 '17 at 17:59













                    up vote
                    3
                    down vote










                    up vote
                    3
                    down vote









                    With UEFI you have both a Windows folder & an Ubuntu folder in the efi partition. the UEFI reads the efi entries and adds them to its own NVRAM to remember them. You have to remove ubuntu folder from efi partition first or UEFI will re-add it. Then you have to remove UEFI entry from UEFI.



                    You should have these folders in the efi partition. Delete only the ubuntu folder. Live installer should show folders. And if only Windows you have to mount from inside Windows the efi partition as it is not normally mounted.



                    /EFI/Boot
                    /EFI/Microsoft
                    /EFI/ubuntu


                    You should not have to install Ubuntu but can use live installer DVD or flash drive. Some UEFI systems may let you do the UEFI edit from UEFI menu.



                    from liveDVD or flash and use efibootmgr



                    sudo efibootmgr -v


                    The "-v" option displays all the entries so you can confirm you're deleting the right one, and then you use the combination of "-b ####" (to specify the entry) and "-B" (to delete it). Examples #5 is delete:



                    http://linux.dell.com/cgi-bin/gitweb/gitweb.cgi?p=efibootmgr.git;a=blob_plain;f=README;hb=HEAD



                    http://software.intel.com/en-us/articles/efi-shells-and-scripting/






                    share|improve this answer












                    With UEFI you have both a Windows folder & an Ubuntu folder in the efi partition. the UEFI reads the efi entries and adds them to its own NVRAM to remember them. You have to remove ubuntu folder from efi partition first or UEFI will re-add it. Then you have to remove UEFI entry from UEFI.



                    You should have these folders in the efi partition. Delete only the ubuntu folder. Live installer should show folders. And if only Windows you have to mount from inside Windows the efi partition as it is not normally mounted.



                    /EFI/Boot
                    /EFI/Microsoft
                    /EFI/ubuntu


                    You should not have to install Ubuntu but can use live installer DVD or flash drive. Some UEFI systems may let you do the UEFI edit from UEFI menu.



                    from liveDVD or flash and use efibootmgr



                    sudo efibootmgr -v


                    The "-v" option displays all the entries so you can confirm you're deleting the right one, and then you use the combination of "-b ####" (to specify the entry) and "-B" (to delete it). Examples #5 is delete:



                    http://linux.dell.com/cgi-bin/gitweb/gitweb.cgi?p=efibootmgr.git;a=blob_plain;f=README;hb=HEAD



                    http://software.intel.com/en-us/articles/efi-shells-and-scripting/







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Jul 14 '14 at 17:38









                    oldfred

                    7,54421221




                    7,54421221












                    • This was helpful in directing what I needed to do. I could delete the ubuntu partition in Windows using informaition from here: superuser.com/questions/662823/…
                      – flickerfly
                      Feb 3 '17 at 17:59


















                    • This was helpful in directing what I needed to do. I could delete the ubuntu partition in Windows using informaition from here: superuser.com/questions/662823/…
                      – flickerfly
                      Feb 3 '17 at 17:59
















                    This was helpful in directing what I needed to do. I could delete the ubuntu partition in Windows using informaition from here: superuser.com/questions/662823/…
                    – flickerfly
                    Feb 3 '17 at 17:59




                    This was helpful in directing what I needed to do. I could delete the ubuntu partition in Windows using informaition from here: superuser.com/questions/662823/…
                    – flickerfly
                    Feb 3 '17 at 17:59










                    up vote
                    2
                    down vote













                    You can also use a USB memory stick for this job. It takes three applications: Unetbootin, FreeDOS and Testdisk for DOS.




                    1. First download Unetbootin and use it to make a bootable USB memory stick. Choose Freedos when prompted for a distribution to install on it.

                    2. Download Testdisk for DOS (don't pick the beta, but pick the stable version).

                    3. Unzip the files testdisk.exe and CWSDPMI.exe, and put them on the bootable memory stick (not in a folder, just straight on it).

                    4. Boot your computer from the memory stick. At the Default window, simply press Enter.

                    5. Now FreeDOS is being launched. Choose: FreeDOS Safe Mode (don't load any drivers) and Press Enter.

                    6. Then type: C: and Press Enter.

                    7. Now type: testdisk and Press Enter.

                    8. Select [No Log] and Press Enter.

                    9. Select the hard drive concerned: usually the second option (the first option is the memory stick itself) and Press Enter.

                    10. Select [Intel] and Press Enter

                    11. Select [MBR Code] and press Enter. When prompted, type y (yes) and press Enter again.


                    Now you're done! Reboot your computer normally. Your computer should boot up Windows now.






                    share|improve this answer























                    • Welcome to AskUbuntu! As it appears this was a copy paste, please consider linking to the original page at the end of your answer.
                      – TheSchwa
                      Feb 18 '16 at 10:37















                    up vote
                    2
                    down vote













                    You can also use a USB memory stick for this job. It takes three applications: Unetbootin, FreeDOS and Testdisk for DOS.




                    1. First download Unetbootin and use it to make a bootable USB memory stick. Choose Freedos when prompted for a distribution to install on it.

                    2. Download Testdisk for DOS (don't pick the beta, but pick the stable version).

                    3. Unzip the files testdisk.exe and CWSDPMI.exe, and put them on the bootable memory stick (not in a folder, just straight on it).

                    4. Boot your computer from the memory stick. At the Default window, simply press Enter.

                    5. Now FreeDOS is being launched. Choose: FreeDOS Safe Mode (don't load any drivers) and Press Enter.

                    6. Then type: C: and Press Enter.

                    7. Now type: testdisk and Press Enter.

                    8. Select [No Log] and Press Enter.

                    9. Select the hard drive concerned: usually the second option (the first option is the memory stick itself) and Press Enter.

                    10. Select [Intel] and Press Enter

                    11. Select [MBR Code] and press Enter. When prompted, type y (yes) and press Enter again.


                    Now you're done! Reboot your computer normally. Your computer should boot up Windows now.






                    share|improve this answer























                    • Welcome to AskUbuntu! As it appears this was a copy paste, please consider linking to the original page at the end of your answer.
                      – TheSchwa
                      Feb 18 '16 at 10:37













                    up vote
                    2
                    down vote










                    up vote
                    2
                    down vote









                    You can also use a USB memory stick for this job. It takes three applications: Unetbootin, FreeDOS and Testdisk for DOS.




                    1. First download Unetbootin and use it to make a bootable USB memory stick. Choose Freedos when prompted for a distribution to install on it.

                    2. Download Testdisk for DOS (don't pick the beta, but pick the stable version).

                    3. Unzip the files testdisk.exe and CWSDPMI.exe, and put them on the bootable memory stick (not in a folder, just straight on it).

                    4. Boot your computer from the memory stick. At the Default window, simply press Enter.

                    5. Now FreeDOS is being launched. Choose: FreeDOS Safe Mode (don't load any drivers) and Press Enter.

                    6. Then type: C: and Press Enter.

                    7. Now type: testdisk and Press Enter.

                    8. Select [No Log] and Press Enter.

                    9. Select the hard drive concerned: usually the second option (the first option is the memory stick itself) and Press Enter.

                    10. Select [Intel] and Press Enter

                    11. Select [MBR Code] and press Enter. When prompted, type y (yes) and press Enter again.


                    Now you're done! Reboot your computer normally. Your computer should boot up Windows now.






                    share|improve this answer














                    You can also use a USB memory stick for this job. It takes three applications: Unetbootin, FreeDOS and Testdisk for DOS.




                    1. First download Unetbootin and use it to make a bootable USB memory stick. Choose Freedos when prompted for a distribution to install on it.

                    2. Download Testdisk for DOS (don't pick the beta, but pick the stable version).

                    3. Unzip the files testdisk.exe and CWSDPMI.exe, and put them on the bootable memory stick (not in a folder, just straight on it).

                    4. Boot your computer from the memory stick. At the Default window, simply press Enter.

                    5. Now FreeDOS is being launched. Choose: FreeDOS Safe Mode (don't load any drivers) and Press Enter.

                    6. Then type: C: and Press Enter.

                    7. Now type: testdisk and Press Enter.

                    8. Select [No Log] and Press Enter.

                    9. Select the hard drive concerned: usually the second option (the first option is the memory stick itself) and Press Enter.

                    10. Select [Intel] and Press Enter

                    11. Select [MBR Code] and press Enter. When prompted, type y (yes) and press Enter again.


                    Now you're done! Reboot your computer normally. Your computer should boot up Windows now.







                    share|improve this answer














                    share|improve this answer



                    share|improve this answer








                    edited Feb 18 '16 at 11:30









                    TheSchwa

                    3,10711735




                    3,10711735










                    answered Feb 18 '16 at 9:50









                    homesofts

                    211




                    211












                    • Welcome to AskUbuntu! As it appears this was a copy paste, please consider linking to the original page at the end of your answer.
                      – TheSchwa
                      Feb 18 '16 at 10:37


















                    • Welcome to AskUbuntu! As it appears this was a copy paste, please consider linking to the original page at the end of your answer.
                      – TheSchwa
                      Feb 18 '16 at 10:37
















                    Welcome to AskUbuntu! As it appears this was a copy paste, please consider linking to the original page at the end of your answer.
                    – TheSchwa
                    Feb 18 '16 at 10:37




                    Welcome to AskUbuntu! As it appears this was a copy paste, please consider linking to the original page at the end of your answer.
                    – TheSchwa
                    Feb 18 '16 at 10:37










                    up vote
                    1
                    down vote













                    If All Else Fails!





                    The guy above me's method does not work on newer EFI computers. I solved the problem. Here is how I did it. WARNING, you have to reinstall Linux / grub first!



                    Steps: (this is if nothing else works and takes a long time)



                    1: Reinstall Ubuntu / Linux mint (this is just so you can use GRUB to boot into Windows).



                    1.5: Restart and boot into windows (if you can't boot to Windows, then live boot from the CD or USB and run the following in a console:



                    If you have a windows repair disk you can select the UEFI firmware option and load Windows from there (to avoid reinstalling Linux)



                    Boot repair (if needed right now)





                    sudo add-apt-repository ppa:yannubuntu/boot-repair

                    sudo apt-get update

                    sudo apt-get install -y boot-repair && (boot-repair &)


                    1g: Select recommended repair and follow the on screen instructions.



                    2g: After your done, reboot. You should see the grub menu, even though you can boot to Windows from here, this is not what we want yet... But find the option that boots into Windows.





                    2: Once your booted into Windows, run your disk partition editor and delete All partitions related to Linux / grub. Especially make sure the small grub partition is removed. Reboot



                    2.5: Make sure the windows loader is the first selected boot device. (most likely is). Disable the Ubuntu option. Continue boot.



                    3: If you've done everything right up to this point you should see (depending on your computer) your splash screen for a second and then it will turn into an error screen saying that there was an error with the boot. ("Winload.exe is missing or corrupted" most likly).



                    3.5: Don't be alarmed (I was). The next step will restore your original bootloader.



                    4: Restart and boot to your Linux CD or USB.



                    5: Once booted, run boot repair commands from above again. This time when running it. It will act differently, there is no grub bootloader detected to reinstall and should run faster than before.



                    6: Once complete, restart.



                    7: Enjoy your GRUB free system!



                    This worked for me when nothing else did, I ran bootrec.exe. Nothing worked. This saved my computers life. Hope it saves yours!






                    share|improve this answer



























                      up vote
                      1
                      down vote













                      If All Else Fails!





                      The guy above me's method does not work on newer EFI computers. I solved the problem. Here is how I did it. WARNING, you have to reinstall Linux / grub first!



                      Steps: (this is if nothing else works and takes a long time)



                      1: Reinstall Ubuntu / Linux mint (this is just so you can use GRUB to boot into Windows).



                      1.5: Restart and boot into windows (if you can't boot to Windows, then live boot from the CD or USB and run the following in a console:



                      If you have a windows repair disk you can select the UEFI firmware option and load Windows from there (to avoid reinstalling Linux)



                      Boot repair (if needed right now)





                      sudo add-apt-repository ppa:yannubuntu/boot-repair

                      sudo apt-get update

                      sudo apt-get install -y boot-repair && (boot-repair &)


                      1g: Select recommended repair and follow the on screen instructions.



                      2g: After your done, reboot. You should see the grub menu, even though you can boot to Windows from here, this is not what we want yet... But find the option that boots into Windows.





                      2: Once your booted into Windows, run your disk partition editor and delete All partitions related to Linux / grub. Especially make sure the small grub partition is removed. Reboot



                      2.5: Make sure the windows loader is the first selected boot device. (most likely is). Disable the Ubuntu option. Continue boot.



                      3: If you've done everything right up to this point you should see (depending on your computer) your splash screen for a second and then it will turn into an error screen saying that there was an error with the boot. ("Winload.exe is missing or corrupted" most likly).



                      3.5: Don't be alarmed (I was). The next step will restore your original bootloader.



                      4: Restart and boot to your Linux CD or USB.



                      5: Once booted, run boot repair commands from above again. This time when running it. It will act differently, there is no grub bootloader detected to reinstall and should run faster than before.



                      6: Once complete, restart.



                      7: Enjoy your GRUB free system!



                      This worked for me when nothing else did, I ran bootrec.exe. Nothing worked. This saved my computers life. Hope it saves yours!






                      share|improve this answer

























                        up vote
                        1
                        down vote










                        up vote
                        1
                        down vote









                        If All Else Fails!





                        The guy above me's method does not work on newer EFI computers. I solved the problem. Here is how I did it. WARNING, you have to reinstall Linux / grub first!



                        Steps: (this is if nothing else works and takes a long time)



                        1: Reinstall Ubuntu / Linux mint (this is just so you can use GRUB to boot into Windows).



                        1.5: Restart and boot into windows (if you can't boot to Windows, then live boot from the CD or USB and run the following in a console:



                        If you have a windows repair disk you can select the UEFI firmware option and load Windows from there (to avoid reinstalling Linux)



                        Boot repair (if needed right now)





                        sudo add-apt-repository ppa:yannubuntu/boot-repair

                        sudo apt-get update

                        sudo apt-get install -y boot-repair && (boot-repair &)


                        1g: Select recommended repair and follow the on screen instructions.



                        2g: After your done, reboot. You should see the grub menu, even though you can boot to Windows from here, this is not what we want yet... But find the option that boots into Windows.





                        2: Once your booted into Windows, run your disk partition editor and delete All partitions related to Linux / grub. Especially make sure the small grub partition is removed. Reboot



                        2.5: Make sure the windows loader is the first selected boot device. (most likely is). Disable the Ubuntu option. Continue boot.



                        3: If you've done everything right up to this point you should see (depending on your computer) your splash screen for a second and then it will turn into an error screen saying that there was an error with the boot. ("Winload.exe is missing or corrupted" most likly).



                        3.5: Don't be alarmed (I was). The next step will restore your original bootloader.



                        4: Restart and boot to your Linux CD or USB.



                        5: Once booted, run boot repair commands from above again. This time when running it. It will act differently, there is no grub bootloader detected to reinstall and should run faster than before.



                        6: Once complete, restart.



                        7: Enjoy your GRUB free system!



                        This worked for me when nothing else did, I ran bootrec.exe. Nothing worked. This saved my computers life. Hope it saves yours!






                        share|improve this answer














                        If All Else Fails!





                        The guy above me's method does not work on newer EFI computers. I solved the problem. Here is how I did it. WARNING, you have to reinstall Linux / grub first!



                        Steps: (this is if nothing else works and takes a long time)



                        1: Reinstall Ubuntu / Linux mint (this is just so you can use GRUB to boot into Windows).



                        1.5: Restart and boot into windows (if you can't boot to Windows, then live boot from the CD or USB and run the following in a console:



                        If you have a windows repair disk you can select the UEFI firmware option and load Windows from there (to avoid reinstalling Linux)



                        Boot repair (if needed right now)





                        sudo add-apt-repository ppa:yannubuntu/boot-repair

                        sudo apt-get update

                        sudo apt-get install -y boot-repair && (boot-repair &)


                        1g: Select recommended repair and follow the on screen instructions.



                        2g: After your done, reboot. You should see the grub menu, even though you can boot to Windows from here, this is not what we want yet... But find the option that boots into Windows.





                        2: Once your booted into Windows, run your disk partition editor and delete All partitions related to Linux / grub. Especially make sure the small grub partition is removed. Reboot



                        2.5: Make sure the windows loader is the first selected boot device. (most likely is). Disable the Ubuntu option. Continue boot.



                        3: If you've done everything right up to this point you should see (depending on your computer) your splash screen for a second and then it will turn into an error screen saying that there was an error with the boot. ("Winload.exe is missing or corrupted" most likly).



                        3.5: Don't be alarmed (I was). The next step will restore your original bootloader.



                        4: Restart and boot to your Linux CD or USB.



                        5: Once booted, run boot repair commands from above again. This time when running it. It will act differently, there is no grub bootloader detected to reinstall and should run faster than before.



                        6: Once complete, restart.



                        7: Enjoy your GRUB free system!



                        This worked for me when nothing else did, I ran bootrec.exe. Nothing worked. This saved my computers life. Hope it saves yours!







                        share|improve this answer














                        share|improve this answer



                        share|improve this answer








                        edited Feb 6 '16 at 19:15









                        ElSabio

                        12




                        12










                        answered Jul 14 '14 at 16:20









                        roboNerd

                        112




                        112






















                            up vote
                            1
                            down vote













                            No CD's, USB's, DVD's. No long tutorials.



                            On UEFI all you have to do is:



                            Place Windows boot entry in NVRAM as first.



                            How to do this - several solutions.



                            Easiest solution is to use firmware functionality and reorder NVRAM boot entries.






                            share|improve this answer

























                              up vote
                              1
                              down vote













                              No CD's, USB's, DVD's. No long tutorials.



                              On UEFI all you have to do is:



                              Place Windows boot entry in NVRAM as first.



                              How to do this - several solutions.



                              Easiest solution is to use firmware functionality and reorder NVRAM boot entries.






                              share|improve this answer























                                up vote
                                1
                                down vote










                                up vote
                                1
                                down vote









                                No CD's, USB's, DVD's. No long tutorials.



                                On UEFI all you have to do is:



                                Place Windows boot entry in NVRAM as first.



                                How to do this - several solutions.



                                Easiest solution is to use firmware functionality and reorder NVRAM boot entries.






                                share|improve this answer












                                No CD's, USB's, DVD's. No long tutorials.



                                On UEFI all you have to do is:



                                Place Windows boot entry in NVRAM as first.



                                How to do this - several solutions.



                                Easiest solution is to use firmware functionality and reorder NVRAM boot entries.







                                share|improve this answer












                                share|improve this answer



                                share|improve this answer










                                answered Apr 6 '16 at 9:43









                                snayob

                                33917




                                33917






















                                    up vote
                                    1
                                    down vote













                                    For system with GPT partition table, the method provided by @Ganesh Kondal won't work. Using bootsect /nt60 C: /mbr will show that it worked while it really doesn't. Using bootrec /fixmbr will lead to error that "the system cannot find the file specified". If any of the above situation applies, do the following (Using Windows 10 as an example):




                                    1. at log in prompt, hold shift, click on power button, choose restart, let go of shift

                                    2. choose troubleshoot -> advanced options -> command line

                                    3. at command line, type in bcdboot <drive name>:windows


                                    for more detailed information, also look at this webpage:https://www.tenforums.com/general-support/74226-bootmgr-error-cant-find-fix.html






                                    share|improve this answer

























                                      up vote
                                      1
                                      down vote













                                      For system with GPT partition table, the method provided by @Ganesh Kondal won't work. Using bootsect /nt60 C: /mbr will show that it worked while it really doesn't. Using bootrec /fixmbr will lead to error that "the system cannot find the file specified". If any of the above situation applies, do the following (Using Windows 10 as an example):




                                      1. at log in prompt, hold shift, click on power button, choose restart, let go of shift

                                      2. choose troubleshoot -> advanced options -> command line

                                      3. at command line, type in bcdboot <drive name>:windows


                                      for more detailed information, also look at this webpage:https://www.tenforums.com/general-support/74226-bootmgr-error-cant-find-fix.html






                                      share|improve this answer























                                        up vote
                                        1
                                        down vote










                                        up vote
                                        1
                                        down vote









                                        For system with GPT partition table, the method provided by @Ganesh Kondal won't work. Using bootsect /nt60 C: /mbr will show that it worked while it really doesn't. Using bootrec /fixmbr will lead to error that "the system cannot find the file specified". If any of the above situation applies, do the following (Using Windows 10 as an example):




                                        1. at log in prompt, hold shift, click on power button, choose restart, let go of shift

                                        2. choose troubleshoot -> advanced options -> command line

                                        3. at command line, type in bcdboot <drive name>:windows


                                        for more detailed information, also look at this webpage:https://www.tenforums.com/general-support/74226-bootmgr-error-cant-find-fix.html






                                        share|improve this answer












                                        For system with GPT partition table, the method provided by @Ganesh Kondal won't work. Using bootsect /nt60 C: /mbr will show that it worked while it really doesn't. Using bootrec /fixmbr will lead to error that "the system cannot find the file specified". If any of the above situation applies, do the following (Using Windows 10 as an example):




                                        1. at log in prompt, hold shift, click on power button, choose restart, let go of shift

                                        2. choose troubleshoot -> advanced options -> command line

                                        3. at command line, type in bcdboot <drive name>:windows


                                        for more detailed information, also look at this webpage:https://www.tenforums.com/general-support/74226-bootmgr-error-cant-find-fix.html







                                        share|improve this answer












                                        share|improve this answer



                                        share|improve this answer










                                        answered Dec 5 '17 at 17:06









                                        user3667217

                                        1264




                                        1264






















                                            up vote
                                            0
                                            down vote













                                            What worked for me is:




                                            1. Boot to Windows

                                            2. Win + X

                                            3. Command Prompt (as admin)

                                            4. bcdedit /set {bootmgr} path EFIMicrosoftBootbootmgfw.efi

                                            5. Reboot






                                            share|improve this answer

























                                              up vote
                                              0
                                              down vote













                                              What worked for me is:




                                              1. Boot to Windows

                                              2. Win + X

                                              3. Command Prompt (as admin)

                                              4. bcdedit /set {bootmgr} path EFIMicrosoftBootbootmgfw.efi

                                              5. Reboot






                                              share|improve this answer























                                                up vote
                                                0
                                                down vote










                                                up vote
                                                0
                                                down vote









                                                What worked for me is:




                                                1. Boot to Windows

                                                2. Win + X

                                                3. Command Prompt (as admin)

                                                4. bcdedit /set {bootmgr} path EFIMicrosoftBootbootmgfw.efi

                                                5. Reboot






                                                share|improve this answer












                                                What worked for me is:




                                                1. Boot to Windows

                                                2. Win + X

                                                3. Command Prompt (as admin)

                                                4. bcdedit /set {bootmgr} path EFIMicrosoftBootbootmgfw.efi

                                                5. Reboot







                                                share|improve this answer












                                                share|improve this answer



                                                share|improve this answer










                                                answered Aug 21 '16 at 5:29









                                                Herobrine2Nether

                                                12




                                                12

















                                                    protected by Zanna Mar 7 '17 at 19:44



                                                    Thank you for your interest in this question.
                                                    Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).



                                                    Would you like to answer one of these unanswered questions instead?



                                                    Popular posts from this blog

                                                    Quarter-circle Tiles

                                                    build a pushdown automaton that recognizes the reverse language of a given pushdown automaton?

                                                    Mont Emei