Upcoming Scheduled Maintenance
The NetApp Knowledge Base will be offline between Oct 26, 23:59 PDT and Oct 27, 02:59 PDT, for system maintenance and infrastructure updates. As a result, Elio and kb.netapp.com will be unavailable.

Active IQ Unified Manager Discussions

vol lang

NEIL_APPLEBY
2,903 Views

anyway to make a volume language report?

1 REPLY 1

JGPSHNTAP
2,903 Views

Since OCR is sunsetting and there is no clear direction from netapp on this, i've decided to help you out in powershell

This can be easily done in powershell if you are familiar with powershell

get-navol | % {

$volume = $_.name

write-host "volume Name:" $_.name     "Volume Language: " (get-navollanguage $volume).languagecode

}

We can pretty this up and feed all your controllers in to a script, but this should get you started

Public