I use Get-NCaggr command just can get the information
PS C:\Users\Administrator> Get-Ncaggr aggr0_cluster1_01 |fl
Aggr64bitUpgradeAttributes :
AggregateName : aggr0_cluster1_01
AggregateUuid : 9c2fe28d-32eb-4095-aed9-96e0032dd18b
AggrFsAttributes : DataONTAP.C.Types.Aggr.AggrFsAttributes
AggrInodeAttributes : DataONTAP.C.Types.Aggr.AggrInodeAttributes
AggrOwnershipAttributes : DataONTAP.C.Types.Aggr.AggrOwnershipAttributes
AggrPerformanceAttributes : DataONTAP.C.Types.Aggr.AggrPerformanceAttributes
AggrRaidAttributes : DataONTAP.C.Types.Aggr.AggrRaidAttributes
AggrSnaplockAttributes : DataONTAP.C.Types.Aggr.AggrSnaplockAttributes
AggrSnapmirrorAttributes :
AggrSnapshotAttributes : DataONTAP.C.Types.Aggr.AggrSnapshotAttributes
.....
If I want to see the Aggr Snapshot Reserve,
I can use the command
PS C:\Users\Administrator> Get-Ncaggr aggr0_cluster1_01 | Select-Object -ExpandProperty AggrSnapshotAttributes |Select-Object -ExpandProperty SnapshotReservePercent
5
but If I want to set the SnapshotReservePercent,
How's the command be write ?
Thanks