Removing GRUB from a dual-boot setup
I have three hard drives on my computer, one running Linux Mint 18.1, one running Windows 10, and the third dedicated to storage with no OS. After installing Mint and using GRUB to boot, I want to remove the Linux drive and boot only to the Windows drive. I've tried removing the Linux drive and repairing the MBR, but GRUB still persists. How would I go about reverting to a Windows-only system?
windows-10 boot grub linux-mint
add a comment |
I have three hard drives on my computer, one running Linux Mint 18.1, one running Windows 10, and the third dedicated to storage with no OS. After installing Mint and using GRUB to boot, I want to remove the Linux drive and boot only to the Windows drive. I've tried removing the Linux drive and repairing the MBR, but GRUB still persists. How would I go about reverting to a Windows-only system?
windows-10 boot grub linux-mint
Try booting to Windows Recovery Console and then runningBootRec.exe /fixmbr
, reboot and see what happens.
– Pimp Juice IT
Jul 13 '17 at 2:07
I tried that earlier and it did nothing, so that's why I went for a full repartition / OS install.
– user3409878
Jul 13 '17 at 10:10
add a comment |
I have three hard drives on my computer, one running Linux Mint 18.1, one running Windows 10, and the third dedicated to storage with no OS. After installing Mint and using GRUB to boot, I want to remove the Linux drive and boot only to the Windows drive. I've tried removing the Linux drive and repairing the MBR, but GRUB still persists. How would I go about reverting to a Windows-only system?
windows-10 boot grub linux-mint
I have three hard drives on my computer, one running Linux Mint 18.1, one running Windows 10, and the third dedicated to storage with no OS. After installing Mint and using GRUB to boot, I want to remove the Linux drive and boot only to the Windows drive. I've tried removing the Linux drive and repairing the MBR, but GRUB still persists. How would I go about reverting to a Windows-only system?
windows-10 boot grub linux-mint
windows-10 boot grub linux-mint
asked Jul 12 '17 at 19:55
user3409878user3409878
1612
1612
Try booting to Windows Recovery Console and then runningBootRec.exe /fixmbr
, reboot and see what happens.
– Pimp Juice IT
Jul 13 '17 at 2:07
I tried that earlier and it did nothing, so that's why I went for a full repartition / OS install.
– user3409878
Jul 13 '17 at 10:10
add a comment |
Try booting to Windows Recovery Console and then runningBootRec.exe /fixmbr
, reboot and see what happens.
– Pimp Juice IT
Jul 13 '17 at 2:07
I tried that earlier and it did nothing, so that's why I went for a full repartition / OS install.
– user3409878
Jul 13 '17 at 10:10
Try booting to Windows Recovery Console and then running
BootRec.exe /fixmbr
, reboot and see what happens.– Pimp Juice IT
Jul 13 '17 at 2:07
Try booting to Windows Recovery Console and then running
BootRec.exe /fixmbr
, reboot and see what happens.– Pimp Juice IT
Jul 13 '17 at 2:07
I tried that earlier and it did nothing, so that's why I went for a full repartition / OS install.
– user3409878
Jul 13 '17 at 10:10
I tried that earlier and it did nothing, so that's why I went for a full repartition / OS install.
– user3409878
Jul 13 '17 at 10:10
add a comment |
2 Answers
2
active
oldest
votes
Open an elevated Command prompt and enter the following command:
bootsect /nt60 <drive name>: /mbr
. e.g
bootsect /nt60 c: /mbr
type exit, then reboot.
Note you can also achieve this in recovery menu during advanced startup (i.e Troubleshoot > Advanced options > Command Prompt)
add a comment |
While I'm sure that bootsect
would fix the issue, I just went ahead and re-installed and repartitioned Windows after removing the Linux hard drive. Not the best method, but it achieved the same result and cleaned the OS a bit in the process.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1229284%2fremoving-grub-from-a-dual-boot-setup%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Open an elevated Command prompt and enter the following command:
bootsect /nt60 <drive name>: /mbr
. e.g
bootsect /nt60 c: /mbr
type exit, then reboot.
Note you can also achieve this in recovery menu during advanced startup (i.e Troubleshoot > Advanced options > Command Prompt)
add a comment |
Open an elevated Command prompt and enter the following command:
bootsect /nt60 <drive name>: /mbr
. e.g
bootsect /nt60 c: /mbr
type exit, then reboot.
Note you can also achieve this in recovery menu during advanced startup (i.e Troubleshoot > Advanced options > Command Prompt)
add a comment |
Open an elevated Command prompt and enter the following command:
bootsect /nt60 <drive name>: /mbr
. e.g
bootsect /nt60 c: /mbr
type exit, then reboot.
Note you can also achieve this in recovery menu during advanced startup (i.e Troubleshoot > Advanced options > Command Prompt)
Open an elevated Command prompt and enter the following command:
bootsect /nt60 <drive name>: /mbr
. e.g
bootsect /nt60 c: /mbr
type exit, then reboot.
Note you can also achieve this in recovery menu during advanced startup (i.e Troubleshoot > Advanced options > Command Prompt)
answered Jul 13 '17 at 5:48
xavier_fakeratxavier_fakerat
1,8311421
1,8311421
add a comment |
add a comment |
While I'm sure that bootsect
would fix the issue, I just went ahead and re-installed and repartitioned Windows after removing the Linux hard drive. Not the best method, but it achieved the same result and cleaned the OS a bit in the process.
add a comment |
While I'm sure that bootsect
would fix the issue, I just went ahead and re-installed and repartitioned Windows after removing the Linux hard drive. Not the best method, but it achieved the same result and cleaned the OS a bit in the process.
add a comment |
While I'm sure that bootsect
would fix the issue, I just went ahead and re-installed and repartitioned Windows after removing the Linux hard drive. Not the best method, but it achieved the same result and cleaned the OS a bit in the process.
While I'm sure that bootsect
would fix the issue, I just went ahead and re-installed and repartitioned Windows after removing the Linux hard drive. Not the best method, but it achieved the same result and cleaned the OS a bit in the process.
answered Jul 13 '17 at 6:18
user3409878user3409878
1612
1612
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1229284%2fremoving-grub-from-a-dual-boot-setup%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Try booting to Windows Recovery Console and then running
BootRec.exe /fixmbr
, reboot and see what happens.– Pimp Juice IT
Jul 13 '17 at 2:07
I tried that earlier and it did nothing, so that's why I went for a full repartition / OS install.
– user3409878
Jul 13 '17 at 10:10