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?
windows powershell disk san
add a comment |
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?
windows powershell disk san
1
Look at theRootproperty ofGet-PsDrive -PSProvider 'Filesystem'or at the DriveType ofGet-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 usingget-diskcmdlet
– meallhour
Nov 20 at 18:33
I didn't suggestGet-Disk, but take a look at the properties which that cmdlet exposes withGet-Disk | Format-List *
– LotPings
Nov 20 at 18:38
WithGet-Disk | Format-List *I am not getting anything related tolocalornetwork. The property that makes sense to me isBusType: 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
add a comment |
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?
windows powershell disk san
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
windows powershell disk san
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 theRootproperty ofGet-PsDrive -PSProvider 'Filesystem'or at the DriveType ofGet-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 usingget-diskcmdlet
– meallhour
Nov 20 at 18:33
I didn't suggestGet-Disk, but take a look at the properties which that cmdlet exposes withGet-Disk | Format-List *
– LotPings
Nov 20 at 18:38
WithGet-Disk | Format-List *I am not getting anything related tolocalornetwork. The property that makes sense to me isBusType: 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
add a comment |
1
Look at theRootproperty ofGet-PsDrive -PSProvider 'Filesystem'or at the DriveType ofGet-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 usingget-diskcmdlet
– meallhour
Nov 20 at 18:33
I didn't suggestGet-Disk, but take a look at the properties which that cmdlet exposes withGet-Disk | Format-List *
– LotPings
Nov 20 at 18:38
WithGet-Disk | Format-List *I am not getting anything related tolocalornetwork. The property that makes sense to me isBusType: 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
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
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.
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%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
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
1
Look at the
Rootproperty ofGet-PsDrive -PSProvider 'Filesystem'or at the DriveType ofGet-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-diskcmdlet– meallhour
Nov 20 at 18:33
I didn't suggest
Get-Disk, but take a look at the properties which that cmdlet exposes withGet-Disk | Format-List *– LotPings
Nov 20 at 18:38
With
Get-Disk | Format-List *I am not getting anything related tolocalornetwork. The property that makes sense to me isBusType: 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