An account will enable you to access:
Don't have an account?
Active IQ Unified Manager Discussions
Hi
Is it possible to get cluster name in below somehow ?
Get-NcAggr |select name, totalsize,used,Available
Thanks
Sure, I would just use a calculated property like this:
Get-NcAggr | select @{l='Cluster';e={(Get-NcCluster).ClusterName}},Name,TotalSize,Used,Available