Create a Spanned drive with 3 external hard drives
I'm trying to create a merged drives from 3 externals drives (2*3Tb + 1 * 2Tb) on Windows.
I went to diskmgmt.msc and tried to create a spanned drive, but i keep getting the error "Operation not supported by the object".
Does that mean Windows doesn't support creating spanned drives on removable drives ? Is there a way to bypass this limitation ?
Thanks.
windows-7 windows-8 hard-drive raid
add a comment |
I'm trying to create a merged drives from 3 externals drives (2*3Tb + 1 * 2Tb) on Windows.
I went to diskmgmt.msc and tried to create a spanned drive, but i keep getting the error "Operation not supported by the object".
Does that mean Windows doesn't support creating spanned drives on removable drives ? Is there a way to bypass this limitation ?
Thanks.
windows-7 windows-8 hard-drive raid
add a comment |
I'm trying to create a merged drives from 3 externals drives (2*3Tb + 1 * 2Tb) on Windows.
I went to diskmgmt.msc and tried to create a spanned drive, but i keep getting the error "Operation not supported by the object".
Does that mean Windows doesn't support creating spanned drives on removable drives ? Is there a way to bypass this limitation ?
Thanks.
windows-7 windows-8 hard-drive raid
I'm trying to create a merged drives from 3 externals drives (2*3Tb + 1 * 2Tb) on Windows.
I went to diskmgmt.msc and tried to create a spanned drive, but i keep getting the error "Operation not supported by the object".
Does that mean Windows doesn't support creating spanned drives on removable drives ? Is there a way to bypass this limitation ?
Thanks.
windows-7 windows-8 hard-drive raid
windows-7 windows-8 hard-drive raid
edited Apr 18 '15 at 21:01
Jamie Hanrahan
18.3k34279
18.3k34279
asked Apr 18 '15 at 19:17
RogueRogue
11614
11614
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Does that mean Windows doesn't support creating spanned drives on removable drives ?
Correct. Spanned drives are an option of dynamic disks. From https://msdn.microsoft.com/en-us/library/dd163552.aspx :
Note: You can't use dynamic disks on portable computers or with
removable media.
And the follow-up question:
Is there a way to bypass this limitation ?
Theoretically, yes. A filter driver just above the disk objects in the storage stack could lie to the system, claiming they were non-removable. In practice, there is no off-the-shelf means I'm aware of to accomplish this. Good thing, as it's a bad idea.
2
So my option is to get thoses drives out of their boxes and plug them directrly in the MB using sata ? That's bad... I don't understand the limitations of Windows sometimes. Anyway, thanks for answering.
– Rogue
Apr 18 '15 at 19:59
5
They're trying to save you from yourself. A span set that's missing one of its elements is unusable.
– Jamie Hanrahan
Apr 18 '15 at 20:01
3
It's like a RAID 0 with a drive missing… not a good way to go
– Tetsujin
Apr 18 '15 at 21:47
add a comment |
By external drives I am assuming you mean USB drives.
Firstly, this is technically not feasible because Windows loads USB drivers much later in the boot process than other storage drivers. Also, USB is a higher-layer protocol stack than the rest of the storage subsystem. This is why USB devices can be easily redirected into VMs without causing problems for the Host OS.
Secondly, this is a very bad idea to begin with. A spanned volume is not fault tolerant. They're OK for internal disks as long as you have backups or the data is not that sensitive. But spanning a volume on external disks is asking for trouble. What if one of the devices become disconnected while the system was running (say you accidentally kicked a power cord for example)? In the best case scenario you'd just get a BSOD. In the worst case scenario, data corruption happens and you lose ALL the data on ALL 3 of the drives. Not really worth the risk in my opinion.
Windows by design does not support this configuration. If the enclosures were eSATA you could get away with it (since Windows can't tell the difference between internal and external when it comes to SATA disks), but I still wouldn't trust it with any data I couldn't afford to lose.
Yeah that makes sense... I'll probably end up getting the drives out of their boxes and mounting a more standard raid array (ie drives plugged via a sata cable on the mb) . Thanks for thoses details.
– Rogue
Apr 21 '15 at 5:49
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%2f903198%2fcreate-a-spanned-drive-with-3-external-hard-drives%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
Does that mean Windows doesn't support creating spanned drives on removable drives ?
Correct. Spanned drives are an option of dynamic disks. From https://msdn.microsoft.com/en-us/library/dd163552.aspx :
Note: You can't use dynamic disks on portable computers or with
removable media.
And the follow-up question:
Is there a way to bypass this limitation ?
Theoretically, yes. A filter driver just above the disk objects in the storage stack could lie to the system, claiming they were non-removable. In practice, there is no off-the-shelf means I'm aware of to accomplish this. Good thing, as it's a bad idea.
2
So my option is to get thoses drives out of their boxes and plug them directrly in the MB using sata ? That's bad... I don't understand the limitations of Windows sometimes. Anyway, thanks for answering.
– Rogue
Apr 18 '15 at 19:59
5
They're trying to save you from yourself. A span set that's missing one of its elements is unusable.
– Jamie Hanrahan
Apr 18 '15 at 20:01
3
It's like a RAID 0 with a drive missing… not a good way to go
– Tetsujin
Apr 18 '15 at 21:47
add a comment |
Does that mean Windows doesn't support creating spanned drives on removable drives ?
Correct. Spanned drives are an option of dynamic disks. From https://msdn.microsoft.com/en-us/library/dd163552.aspx :
Note: You can't use dynamic disks on portable computers or with
removable media.
And the follow-up question:
Is there a way to bypass this limitation ?
Theoretically, yes. A filter driver just above the disk objects in the storage stack could lie to the system, claiming they were non-removable. In practice, there is no off-the-shelf means I'm aware of to accomplish this. Good thing, as it's a bad idea.
2
So my option is to get thoses drives out of their boxes and plug them directrly in the MB using sata ? That's bad... I don't understand the limitations of Windows sometimes. Anyway, thanks for answering.
– Rogue
Apr 18 '15 at 19:59
5
They're trying to save you from yourself. A span set that's missing one of its elements is unusable.
– Jamie Hanrahan
Apr 18 '15 at 20:01
3
It's like a RAID 0 with a drive missing… not a good way to go
– Tetsujin
Apr 18 '15 at 21:47
add a comment |
Does that mean Windows doesn't support creating spanned drives on removable drives ?
Correct. Spanned drives are an option of dynamic disks. From https://msdn.microsoft.com/en-us/library/dd163552.aspx :
Note: You can't use dynamic disks on portable computers or with
removable media.
And the follow-up question:
Is there a way to bypass this limitation ?
Theoretically, yes. A filter driver just above the disk objects in the storage stack could lie to the system, claiming they were non-removable. In practice, there is no off-the-shelf means I'm aware of to accomplish this. Good thing, as it's a bad idea.
Does that mean Windows doesn't support creating spanned drives on removable drives ?
Correct. Spanned drives are an option of dynamic disks. From https://msdn.microsoft.com/en-us/library/dd163552.aspx :
Note: You can't use dynamic disks on portable computers or with
removable media.
And the follow-up question:
Is there a way to bypass this limitation ?
Theoretically, yes. A filter driver just above the disk objects in the storage stack could lie to the system, claiming they were non-removable. In practice, there is no off-the-shelf means I'm aware of to accomplish this. Good thing, as it's a bad idea.
edited Apr 18 '15 at 21:02
answered Apr 18 '15 at 19:57
Jamie HanrahanJamie Hanrahan
18.3k34279
18.3k34279
2
So my option is to get thoses drives out of their boxes and plug them directrly in the MB using sata ? That's bad... I don't understand the limitations of Windows sometimes. Anyway, thanks for answering.
– Rogue
Apr 18 '15 at 19:59
5
They're trying to save you from yourself. A span set that's missing one of its elements is unusable.
– Jamie Hanrahan
Apr 18 '15 at 20:01
3
It's like a RAID 0 with a drive missing… not a good way to go
– Tetsujin
Apr 18 '15 at 21:47
add a comment |
2
So my option is to get thoses drives out of their boxes and plug them directrly in the MB using sata ? That's bad... I don't understand the limitations of Windows sometimes. Anyway, thanks for answering.
– Rogue
Apr 18 '15 at 19:59
5
They're trying to save you from yourself. A span set that's missing one of its elements is unusable.
– Jamie Hanrahan
Apr 18 '15 at 20:01
3
It's like a RAID 0 with a drive missing… not a good way to go
– Tetsujin
Apr 18 '15 at 21:47
2
2
So my option is to get thoses drives out of their boxes and plug them directrly in the MB using sata ? That's bad... I don't understand the limitations of Windows sometimes. Anyway, thanks for answering.
– Rogue
Apr 18 '15 at 19:59
So my option is to get thoses drives out of their boxes and plug them directrly in the MB using sata ? That's bad... I don't understand the limitations of Windows sometimes. Anyway, thanks for answering.
– Rogue
Apr 18 '15 at 19:59
5
5
They're trying to save you from yourself. A span set that's missing one of its elements is unusable.
– Jamie Hanrahan
Apr 18 '15 at 20:01
They're trying to save you from yourself. A span set that's missing one of its elements is unusable.
– Jamie Hanrahan
Apr 18 '15 at 20:01
3
3
It's like a RAID 0 with a drive missing… not a good way to go
– Tetsujin
Apr 18 '15 at 21:47
It's like a RAID 0 with a drive missing… not a good way to go
– Tetsujin
Apr 18 '15 at 21:47
add a comment |
By external drives I am assuming you mean USB drives.
Firstly, this is technically not feasible because Windows loads USB drivers much later in the boot process than other storage drivers. Also, USB is a higher-layer protocol stack than the rest of the storage subsystem. This is why USB devices can be easily redirected into VMs without causing problems for the Host OS.
Secondly, this is a very bad idea to begin with. A spanned volume is not fault tolerant. They're OK for internal disks as long as you have backups or the data is not that sensitive. But spanning a volume on external disks is asking for trouble. What if one of the devices become disconnected while the system was running (say you accidentally kicked a power cord for example)? In the best case scenario you'd just get a BSOD. In the worst case scenario, data corruption happens and you lose ALL the data on ALL 3 of the drives. Not really worth the risk in my opinion.
Windows by design does not support this configuration. If the enclosures were eSATA you could get away with it (since Windows can't tell the difference between internal and external when it comes to SATA disks), but I still wouldn't trust it with any data I couldn't afford to lose.
Yeah that makes sense... I'll probably end up getting the drives out of their boxes and mounting a more standard raid array (ie drives plugged via a sata cable on the mb) . Thanks for thoses details.
– Rogue
Apr 21 '15 at 5:49
add a comment |
By external drives I am assuming you mean USB drives.
Firstly, this is technically not feasible because Windows loads USB drivers much later in the boot process than other storage drivers. Also, USB is a higher-layer protocol stack than the rest of the storage subsystem. This is why USB devices can be easily redirected into VMs without causing problems for the Host OS.
Secondly, this is a very bad idea to begin with. A spanned volume is not fault tolerant. They're OK for internal disks as long as you have backups or the data is not that sensitive. But spanning a volume on external disks is asking for trouble. What if one of the devices become disconnected while the system was running (say you accidentally kicked a power cord for example)? In the best case scenario you'd just get a BSOD. In the worst case scenario, data corruption happens and you lose ALL the data on ALL 3 of the drives. Not really worth the risk in my opinion.
Windows by design does not support this configuration. If the enclosures were eSATA you could get away with it (since Windows can't tell the difference between internal and external when it comes to SATA disks), but I still wouldn't trust it with any data I couldn't afford to lose.
Yeah that makes sense... I'll probably end up getting the drives out of their boxes and mounting a more standard raid array (ie drives plugged via a sata cable on the mb) . Thanks for thoses details.
– Rogue
Apr 21 '15 at 5:49
add a comment |
By external drives I am assuming you mean USB drives.
Firstly, this is technically not feasible because Windows loads USB drivers much later in the boot process than other storage drivers. Also, USB is a higher-layer protocol stack than the rest of the storage subsystem. This is why USB devices can be easily redirected into VMs without causing problems for the Host OS.
Secondly, this is a very bad idea to begin with. A spanned volume is not fault tolerant. They're OK for internal disks as long as you have backups or the data is not that sensitive. But spanning a volume on external disks is asking for trouble. What if one of the devices become disconnected while the system was running (say you accidentally kicked a power cord for example)? In the best case scenario you'd just get a BSOD. In the worst case scenario, data corruption happens and you lose ALL the data on ALL 3 of the drives. Not really worth the risk in my opinion.
Windows by design does not support this configuration. If the enclosures were eSATA you could get away with it (since Windows can't tell the difference between internal and external when it comes to SATA disks), but I still wouldn't trust it with any data I couldn't afford to lose.
By external drives I am assuming you mean USB drives.
Firstly, this is technically not feasible because Windows loads USB drivers much later in the boot process than other storage drivers. Also, USB is a higher-layer protocol stack than the rest of the storage subsystem. This is why USB devices can be easily redirected into VMs without causing problems for the Host OS.
Secondly, this is a very bad idea to begin with. A spanned volume is not fault tolerant. They're OK for internal disks as long as you have backups or the data is not that sensitive. But spanning a volume on external disks is asking for trouble. What if one of the devices become disconnected while the system was running (say you accidentally kicked a power cord for example)? In the best case scenario you'd just get a BSOD. In the worst case scenario, data corruption happens and you lose ALL the data on ALL 3 of the drives. Not really worth the risk in my opinion.
Windows by design does not support this configuration. If the enclosures were eSATA you could get away with it (since Windows can't tell the difference between internal and external when it comes to SATA disks), but I still wouldn't trust it with any data I couldn't afford to lose.
answered Apr 20 '15 at 10:00
Wes SayeedWes Sayeed
10.8k32758
10.8k32758
Yeah that makes sense... I'll probably end up getting the drives out of their boxes and mounting a more standard raid array (ie drives plugged via a sata cable on the mb) . Thanks for thoses details.
– Rogue
Apr 21 '15 at 5:49
add a comment |
Yeah that makes sense... I'll probably end up getting the drives out of their boxes and mounting a more standard raid array (ie drives plugged via a sata cable on the mb) . Thanks for thoses details.
– Rogue
Apr 21 '15 at 5:49
Yeah that makes sense... I'll probably end up getting the drives out of their boxes and mounting a more standard raid array (ie drives plugged via a sata cable on the mb) . Thanks for thoses details.
– Rogue
Apr 21 '15 at 5:49
Yeah that makes sense... I'll probably end up getting the drives out of their boxes and mounting a more standard raid array (ie drives plugged via a sata cable on the mb) . Thanks for thoses details.
– Rogue
Apr 21 '15 at 5:49
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%2f903198%2fcreate-a-spanned-drive-with-3-external-hard-drives%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