Hi
I try to find a way to tag netapp volumes and after it to get a report of all Volumes with Tag information as well.
In the Gui, it looks like there is no way to modify volumes with tag Information. Powershell or Netappcli ? Is there a good option to to this?
Tanks for your help
Get-NCvol | ?{ $_.Aggregate -like "*$filer*" } | ForEach-Object {
$x = "" | Select Name,State ,TotalSizeGB,Dedup,UsedPercent,AvailableGB,Aggregate,SVM,NCcontroller,Tag
$x.name = $_.Name
$x.Aggregate = $_.Aggregate
$x.TotalSizeGB= [Math]::Round($_.TotalSize / 1GB)
$x.Dedup = $_.Dedupe
$x.UsedPercent = $_.Used
$x.state = $_.state
$x.SVM = $_.Vserver
$x.AvailableGB = [Math]::Round($_.Available / 1GB)
$x.NCcontroller = $_.NcController
$x.Tag = $_.TAG # I dont know?
$mycol += $x
}a