Hi
I'm a huge fan of the new concise query syntax (eg Get-NcVol -Query @{TotalSize="<$(700GB)"}) but what is the equivalent, please, for the -Attributes argument (to limit the amount of data returned)?
At the moment, I'm putting (eg):
$attrs = Get-NcVol -Template
Initialize-NcObjectProperty -Object $attrs -Name VolumeSpaceAttributes
$attrs.VolumeSpaceAttributes.Size = ""
get-ncvol -query @{"TotalSize"="<$(700GB)"} -Attributes $attrs
to show only the "Size" attribute.
Regards,
Richard.