How do I find out which EFI system partition is in use by Windows 10?
I was running a dual boot Windows 10 / Linux system for some time, but I have recently decided to remove the Linux partition.
Currently, I'm successfully booting and running Windows 10, however when I check my partitions, I see I have 2 EFI System partitions.
My question is this - how do I find out which EFI system partition is being used by Windows, so I can remove the unused one?
windows-10 efi boot-partition
add a comment |
I was running a dual boot Windows 10 / Linux system for some time, but I have recently decided to remove the Linux partition.
Currently, I'm successfully booting and running Windows 10, however when I check my partitions, I see I have 2 EFI System partitions.
My question is this - how do I find out which EFI system partition is being used by Windows, so I can remove the unused one?
windows-10 efi boot-partition
add a comment |
I was running a dual boot Windows 10 / Linux system for some time, but I have recently decided to remove the Linux partition.
Currently, I'm successfully booting and running Windows 10, however when I check my partitions, I see I have 2 EFI System partitions.
My question is this - how do I find out which EFI system partition is being used by Windows, so I can remove the unused one?
windows-10 efi boot-partition
I was running a dual boot Windows 10 / Linux system for some time, but I have recently decided to remove the Linux partition.
Currently, I'm successfully booting and running Windows 10, however when I check my partitions, I see I have 2 EFI System partitions.
My question is this - how do I find out which EFI system partition is being used by Windows, so I can remove the unused one?
windows-10 efi boot-partition
windows-10 efi boot-partition
asked Jan 29 at 20:02
Tomas Tobu BudayTomas Tobu Buday
62
62
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
If you go to an command prompt in Windows and enter mountvol S: /s
this will mount the current ESP to volume S. You can change the S:
to another drive letter if you are using S but don't change the /s
switch.
Then create a directory mkdir S:DONT_DELETE
Now you can tell which partition Windows uses and so you can delete the other.
I rolled back changes with link to ss64.com as it says that "/s" switch applies to "Itanium-based computers only." It is copy/pasted from the MS documentation here - docs.microsoft.com/en-us/windows-server/administration/… . The documentation in both cases is incorrect and would confuse the answer as "/s" works perfectly well x86 processors.
– lx07
Jan 30 at 1:04
thanks guys, this has helped and worked
– Tomas Tobu Buday
Feb 2 at 15:36
add a comment |
If you have two EFI partitions, one is superfluous, as the boot process will
only use one of the two.
An EFI boot partition will always have a top-level directory named /EFI
.
Beneath that directory, each operating system will have its own sub-directory,
with a name that (hopefully) indicates what OS it is used for,
and which is (hopefully) unique to that OS.
I would recommend letting these two partitions coexist, since deleting the
wrong one will make your computer unbootable.
You can look at the contents of these partition by assigning them drive-letters
in Disk Management, if you wish to examine them more in depth,
and you may also remove it when finished.
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%2f1399789%2fhow-do-i-find-out-which-efi-system-partition-is-in-use-by-windows-10%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
If you go to an command prompt in Windows and enter mountvol S: /s
this will mount the current ESP to volume S. You can change the S:
to another drive letter if you are using S but don't change the /s
switch.
Then create a directory mkdir S:DONT_DELETE
Now you can tell which partition Windows uses and so you can delete the other.
I rolled back changes with link to ss64.com as it says that "/s" switch applies to "Itanium-based computers only." It is copy/pasted from the MS documentation here - docs.microsoft.com/en-us/windows-server/administration/… . The documentation in both cases is incorrect and would confuse the answer as "/s" works perfectly well x86 processors.
– lx07
Jan 30 at 1:04
thanks guys, this has helped and worked
– Tomas Tobu Buday
Feb 2 at 15:36
add a comment |
If you go to an command prompt in Windows and enter mountvol S: /s
this will mount the current ESP to volume S. You can change the S:
to another drive letter if you are using S but don't change the /s
switch.
Then create a directory mkdir S:DONT_DELETE
Now you can tell which partition Windows uses and so you can delete the other.
I rolled back changes with link to ss64.com as it says that "/s" switch applies to "Itanium-based computers only." It is copy/pasted from the MS documentation here - docs.microsoft.com/en-us/windows-server/administration/… . The documentation in both cases is incorrect and would confuse the answer as "/s" works perfectly well x86 processors.
– lx07
Jan 30 at 1:04
thanks guys, this has helped and worked
– Tomas Tobu Buday
Feb 2 at 15:36
add a comment |
If you go to an command prompt in Windows and enter mountvol S: /s
this will mount the current ESP to volume S. You can change the S:
to another drive letter if you are using S but don't change the /s
switch.
Then create a directory mkdir S:DONT_DELETE
Now you can tell which partition Windows uses and so you can delete the other.
If you go to an command prompt in Windows and enter mountvol S: /s
this will mount the current ESP to volume S. You can change the S:
to another drive letter if you are using S but don't change the /s
switch.
Then create a directory mkdir S:DONT_DELETE
Now you can tell which partition Windows uses and so you can delete the other.
edited Jan 30 at 0:56
answered Jan 29 at 21:22
lx07lx07
604411
604411
I rolled back changes with link to ss64.com as it says that "/s" switch applies to "Itanium-based computers only." It is copy/pasted from the MS documentation here - docs.microsoft.com/en-us/windows-server/administration/… . The documentation in both cases is incorrect and would confuse the answer as "/s" works perfectly well x86 processors.
– lx07
Jan 30 at 1:04
thanks guys, this has helped and worked
– Tomas Tobu Buday
Feb 2 at 15:36
add a comment |
I rolled back changes with link to ss64.com as it says that "/s" switch applies to "Itanium-based computers only." It is copy/pasted from the MS documentation here - docs.microsoft.com/en-us/windows-server/administration/… . The documentation in both cases is incorrect and would confuse the answer as "/s" works perfectly well x86 processors.
– lx07
Jan 30 at 1:04
thanks guys, this has helped and worked
– Tomas Tobu Buday
Feb 2 at 15:36
I rolled back changes with link to ss64.com as it says that "/s" switch applies to "Itanium-based computers only." It is copy/pasted from the MS documentation here - docs.microsoft.com/en-us/windows-server/administration/… . The documentation in both cases is incorrect and would confuse the answer as "/s" works perfectly well x86 processors.
– lx07
Jan 30 at 1:04
I rolled back changes with link to ss64.com as it says that "/s" switch applies to "Itanium-based computers only." It is copy/pasted from the MS documentation here - docs.microsoft.com/en-us/windows-server/administration/… . The documentation in both cases is incorrect and would confuse the answer as "/s" works perfectly well x86 processors.
– lx07
Jan 30 at 1:04
thanks guys, this has helped and worked
– Tomas Tobu Buday
Feb 2 at 15:36
thanks guys, this has helped and worked
– Tomas Tobu Buday
Feb 2 at 15:36
add a comment |
If you have two EFI partitions, one is superfluous, as the boot process will
only use one of the two.
An EFI boot partition will always have a top-level directory named /EFI
.
Beneath that directory, each operating system will have its own sub-directory,
with a name that (hopefully) indicates what OS it is used for,
and which is (hopefully) unique to that OS.
I would recommend letting these two partitions coexist, since deleting the
wrong one will make your computer unbootable.
You can look at the contents of these partition by assigning them drive-letters
in Disk Management, if you wish to examine them more in depth,
and you may also remove it when finished.
add a comment |
If you have two EFI partitions, one is superfluous, as the boot process will
only use one of the two.
An EFI boot partition will always have a top-level directory named /EFI
.
Beneath that directory, each operating system will have its own sub-directory,
with a name that (hopefully) indicates what OS it is used for,
and which is (hopefully) unique to that OS.
I would recommend letting these two partitions coexist, since deleting the
wrong one will make your computer unbootable.
You can look at the contents of these partition by assigning them drive-letters
in Disk Management, if you wish to examine them more in depth,
and you may also remove it when finished.
add a comment |
If you have two EFI partitions, one is superfluous, as the boot process will
only use one of the two.
An EFI boot partition will always have a top-level directory named /EFI
.
Beneath that directory, each operating system will have its own sub-directory,
with a name that (hopefully) indicates what OS it is used for,
and which is (hopefully) unique to that OS.
I would recommend letting these two partitions coexist, since deleting the
wrong one will make your computer unbootable.
You can look at the contents of these partition by assigning them drive-letters
in Disk Management, if you wish to examine them more in depth,
and you may also remove it when finished.
If you have two EFI partitions, one is superfluous, as the boot process will
only use one of the two.
An EFI boot partition will always have a top-level directory named /EFI
.
Beneath that directory, each operating system will have its own sub-directory,
with a name that (hopefully) indicates what OS it is used for,
and which is (hopefully) unique to that OS.
I would recommend letting these two partitions coexist, since deleting the
wrong one will make your computer unbootable.
You can look at the contents of these partition by assigning them drive-letters
in Disk Management, if you wish to examine them more in depth,
and you may also remove it when finished.
answered Jan 29 at 20:25
harrymcharrymc
260k14271573
260k14271573
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%2f1399789%2fhow-do-i-find-out-which-efi-system-partition-is-in-use-by-windows-10%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