Microsoft Virtualization Discussions
Microsoft Virtualization Discussions
Hi,
IHAC that wants to retrieve Shelf type (e.g. DS2246) and shelf serial number from a 7-Mode system. For cDOT there is the Get-NcStorageShelf command.
Is there a similar command available for 7-mode?
And is there any command mapping 7-Mode <=> cDOT for PSTK?
Thanks in advance!
Solved! See The Solution
I think i went thru this years ago and i don't think its availble with direct tru a cmdlet
You can do this
$d = invoke-nassh "storage show shelf"
PS C:\powershell> $d = $d.split("`n")
PS C:\powershell> $d | ?{$_ -like "*shelf name*" -or $_ -like "*shelf S/N*"}
Here I will help you out
get-nahelp *shelf*
Thanks! Looks like the shelf S/N is not available for 7-mode...
On the other hand: a NetAppDocs document show shelf type and S/N for 7-Mode as well. So some PSTK command should show it.
I think i went thru this years ago and i don't think its availble with direct tru a cmdlet
You can do this
$d = invoke-nassh "storage show shelf"
PS C:\powershell> $d = $d.split("`n")
PS C:\powershell> $d | ?{$_ -like "*shelf name*" -or $_ -like "*shelf S/N*"}
Thanks again!
Can you mark answers and please hit kudos.
Thanks
Does NetApp PSK not have possibility to show me my shelf serial numbers direclty (without using ssh) ?
sorry no
😞 ok
How I can get Shelf Serial Number for my Shelf list?
Get-NcShelf | where {$_.ShelfName -like "NAME*"} | Sort -Property ShelfId -Unique | Format-Table -AutoSize
Thank you,
Lukas
Hi @LUKASPRELOVSKY the command you enetred in the last reply is for Cluster mode. while the post is specially for 7-mode.
which platform do you need the command for ?
adding the Cdot way anyway:.....
Get-NcStorageShelf | ft NcController,Shelf,SerialNumber,ShelfModel,ModuleType NcController Shelf SerialNumber ShelfModel ModuleType ------------ ----- ------------ ---------- ---------- A 1.10 1234567890 DS4243 iom3 A 1.11 1234567890 DS4243 iom3 A 1.12 1234567890 DS4243 iom3 A 1.13 1234567890 DS4243 iom3 A 2.20 1234567890 DS4243 iom3 A 2.21 1234567890 DS4243 iom3 A 2.22 1234567890 DS4243 iom3 A 2.23 1234567890 DS4243 iom3
I discovered the cmdlet last night, but thanks for your help! 🙂