Set-SCStorageClassification

Modifies the properties of an existing storage classification. 

Description

The Set-SCStorgeClassification cmdlet modifies the properties of an existing storage classification. 

For more information about Set-SCStorageClassification, type: "Get-Help Set-SCStorageClassification -online".

Parameters

StorageClassification

Required? true
Accept Pipeline Input? true (ByValue)
Position? 0
Specifies a storage classification object.

Description

Required? false
Accept Pipeline Input? false
Position? named
States a description for the specified object.

JobVariable

Required? false
Accept Pipeline Input? false
Position? named
Specifies that job progress is tracked and stored in the variable named by this parameter. 

Name

Required? false
Accept Pipeline Input? false
Position? named
Specifies the name of a VMM object.

PROTipID

Required? false
Accept Pipeline Input? false
Position? named
Specifies the ID of the PRO tip that triggered this action. This allows for auditing of PRO tips.

RunAsynchronously

Required? false
Accept Pipeline Input? false
Position? named
Indicates that the job runs asynchronously so that control returns to the command shell immediately. 

Examples

1: Update the name of a storage classification.
PS C:\> $Class = @(Get-SCStorageClassification)[0]
PS C:\> Set-SCStorageClassification -StorageClassification $Class -Name "Tier2"
The first command gets the first item in the storage classification array and stores it in the $Class variable.

The second command changes the name of the storage classification stored in the $Class variable to Tier2.

See Also