How to determine if it is SAN or local disk storage type using PowerShell?











up vote
1
down vote

favorite












I am using the below cmdlet to find out if it is SAN or local disk storage type



Get-WmiObject -Class Win32_DiskDrive


However it is not giving the desired result. What is the correct cmdlet to distinguish between SAN or local storage?










share|improve this question




















  • 1




    Look at the Root property of Get-PsDrive -PSProvider 'Filesystem' or at the DriveType of Get-WmiObject -Class Win32_logicaldisk (LocalDisk=3,NetworkDisk=4) Also see stackoverflow.com/questions/31088930/…
    – LotPings
    Nov 19 at 19:37












  • Please suggest how can i retrieve it using get-disk cmdlet
    – meallhour
    Nov 20 at 18:33










  • I didn't suggest Get-Disk, but take a look at the properties which that cmdlet exposes with Get-Disk | Format-List *
    – LotPings
    Nov 20 at 18:38










  • With Get-Disk | Format-List * I am not getting anything related to local or network. The property that makes sense to me is BusType: Fibre Channel (for SAN) Can you suggest if it is correct property?
    – meallhour
    Nov 20 at 19:47










  • Well again, I didn't suggest Get-Disk. It depends on how your SAN is integrated, an iScsi-Disk could posssibly be seen as a local disk. But IMO this gets a bit off topic here and is probaply better asked in serverfault.com.
    – LotPings
    Nov 20 at 19:51

















up vote
1
down vote

favorite












I am using the below cmdlet to find out if it is SAN or local disk storage type



Get-WmiObject -Class Win32_DiskDrive


However it is not giving the desired result. What is the correct cmdlet to distinguish between SAN or local storage?










share|improve this question




















  • 1




    Look at the Root property of Get-PsDrive -PSProvider 'Filesystem' or at the DriveType of Get-WmiObject -Class Win32_logicaldisk (LocalDisk=3,NetworkDisk=4) Also see stackoverflow.com/questions/31088930/…
    – LotPings
    Nov 19 at 19:37












  • Please suggest how can i retrieve it using get-disk cmdlet
    – meallhour
    Nov 20 at 18:33










  • I didn't suggest Get-Disk, but take a look at the properties which that cmdlet exposes with Get-Disk | Format-List *
    – LotPings
    Nov 20 at 18:38










  • With Get-Disk | Format-List * I am not getting anything related to local or network. The property that makes sense to me is BusType: Fibre Channel (for SAN) Can you suggest if it is correct property?
    – meallhour
    Nov 20 at 19:47










  • Well again, I didn't suggest Get-Disk. It depends on how your SAN is integrated, an iScsi-Disk could posssibly be seen as a local disk. But IMO this gets a bit off topic here and is probaply better asked in serverfault.com.
    – LotPings
    Nov 20 at 19:51















up vote
1
down vote

favorite









up vote
1
down vote

favorite











I am using the below cmdlet to find out if it is SAN or local disk storage type



Get-WmiObject -Class Win32_DiskDrive


However it is not giving the desired result. What is the correct cmdlet to distinguish between SAN or local storage?










share|improve this question















I am using the below cmdlet to find out if it is SAN or local disk storage type



Get-WmiObject -Class Win32_DiskDrive


However it is not giving the desired result. What is the correct cmdlet to distinguish between SAN or local storage?







windows powershell disk san






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 19 at 19:57









James Z

11.1k71735




11.1k71735










asked Nov 19 at 18:52









meallhour

2,02971837




2,02971837








  • 1




    Look at the Root property of Get-PsDrive -PSProvider 'Filesystem' or at the DriveType of Get-WmiObject -Class Win32_logicaldisk (LocalDisk=3,NetworkDisk=4) Also see stackoverflow.com/questions/31088930/…
    – LotPings
    Nov 19 at 19:37












  • Please suggest how can i retrieve it using get-disk cmdlet
    – meallhour
    Nov 20 at 18:33










  • I didn't suggest Get-Disk, but take a look at the properties which that cmdlet exposes with Get-Disk | Format-List *
    – LotPings
    Nov 20 at 18:38










  • With Get-Disk | Format-List * I am not getting anything related to local or network. The property that makes sense to me is BusType: Fibre Channel (for SAN) Can you suggest if it is correct property?
    – meallhour
    Nov 20 at 19:47










  • Well again, I didn't suggest Get-Disk. It depends on how your SAN is integrated, an iScsi-Disk could posssibly be seen as a local disk. But IMO this gets a bit off topic here and is probaply better asked in serverfault.com.
    – LotPings
    Nov 20 at 19:51
















  • 1




    Look at the Root property of Get-PsDrive -PSProvider 'Filesystem' or at the DriveType of Get-WmiObject -Class Win32_logicaldisk (LocalDisk=3,NetworkDisk=4) Also see stackoverflow.com/questions/31088930/…
    – LotPings
    Nov 19 at 19:37












  • Please suggest how can i retrieve it using get-disk cmdlet
    – meallhour
    Nov 20 at 18:33










  • I didn't suggest Get-Disk, but take a look at the properties which that cmdlet exposes with Get-Disk | Format-List *
    – LotPings
    Nov 20 at 18:38










  • With Get-Disk | Format-List * I am not getting anything related to local or network. The property that makes sense to me is BusType: Fibre Channel (for SAN) Can you suggest if it is correct property?
    – meallhour
    Nov 20 at 19:47










  • Well again, I didn't suggest Get-Disk. It depends on how your SAN is integrated, an iScsi-Disk could posssibly be seen as a local disk. But IMO this gets a bit off topic here and is probaply better asked in serverfault.com.
    – LotPings
    Nov 20 at 19:51










1




1




Look at the Root property of Get-PsDrive -PSProvider 'Filesystem' or at the DriveType of Get-WmiObject -Class Win32_logicaldisk (LocalDisk=3,NetworkDisk=4) Also see stackoverflow.com/questions/31088930/…
– LotPings
Nov 19 at 19:37






Look at the Root property of Get-PsDrive -PSProvider 'Filesystem' or at the DriveType of Get-WmiObject -Class Win32_logicaldisk (LocalDisk=3,NetworkDisk=4) Also see stackoverflow.com/questions/31088930/…
– LotPings
Nov 19 at 19:37














Please suggest how can i retrieve it using get-disk cmdlet
– meallhour
Nov 20 at 18:33




Please suggest how can i retrieve it using get-disk cmdlet
– meallhour
Nov 20 at 18:33












I didn't suggest Get-Disk, but take a look at the properties which that cmdlet exposes with Get-Disk | Format-List *
– LotPings
Nov 20 at 18:38




I didn't suggest Get-Disk, but take a look at the properties which that cmdlet exposes with Get-Disk | Format-List *
– LotPings
Nov 20 at 18:38












With Get-Disk | Format-List * I am not getting anything related to local or network. The property that makes sense to me is BusType: Fibre Channel (for SAN) Can you suggest if it is correct property?
– meallhour
Nov 20 at 19:47




With Get-Disk | Format-List * I am not getting anything related to local or network. The property that makes sense to me is BusType: Fibre Channel (for SAN) Can you suggest if it is correct property?
– meallhour
Nov 20 at 19:47












Well again, I didn't suggest Get-Disk. It depends on how your SAN is integrated, an iScsi-Disk could posssibly be seen as a local disk. But IMO this gets a bit off topic here and is probaply better asked in serverfault.com.
– LotPings
Nov 20 at 19:51






Well again, I didn't suggest Get-Disk. It depends on how your SAN is integrated, an iScsi-Disk could posssibly be seen as a local disk. But IMO this gets a bit off topic here and is probaply better asked in serverfault.com.
– LotPings
Nov 20 at 19:51



















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
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',
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
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53380944%2fhow-to-determine-if-it-is-san-or-local-disk-storage-type-using-powershell%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


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





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


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




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53380944%2fhow-to-determine-if-it-is-san-or-local-disk-storage-type-using-powershell%23new-answer', 'question_page');
}
);

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







Popular posts from this blog

Feedback on college project

Futebolista

Albești (Vaslui)