Set-SCStorageZoneAlias
修改現有的光纖通道區域別名。
語法
Set-SCStorageZoneAlias
[-StorageZoneAlias] <StorageZoneAlias>
[-Name <String>]
[-Description <String>]
[-AddZoneMembership <String[]>]
[-RemoveZoneMembership <String[]>]
[-RunAsynchronously]
[-PROTipID <Guid>]
[-JobVariable <String>]
[<CommonParameters>]
Description
Set-SCStorageZoneAlias Cmdlet 會修改現有的光纖通道區域別名。
範例
範例 1:從區域別名新增和移除成員
PS C:\> $ZoneAlias = Get-SCStorageZoneAlias -Name "ZoneAlias01"
PS C:\> $AddMember = "C003FF3B8A610000"
PS C:\> $RemoveMember += "D113EF3A8F411234"
PS C:\> Set-SCStorageZoneAlias -StorageZoneAlias $ZoneAlias -AddZoneMembership $AddMember -RemoveZoneMembership $RemoveMember
第一個命令會取得名為 ZoneAlias01 的區域別名對象,然後將該物件儲存在$ZoneAlias變數中。
第二個命令會將值指派給$AddMember變數。
第三個命令會將成員新增至 $RemoveMember 變數。
最後一個命令會將 $AddMember 中的成員新增至 ,並從 $RemoveMember 中移除儲存在 $ZoneAlias 中的區域別名。
範例 2:修改區域別名的名稱和描述
PS C:\> $ZoneAlias = Get-SCStorageZoneAlias -Name "ZoneAlias01"
PS C:\> Set-SCStorageZoneAlias -StorageZoneAlias $ZoneAlias -Name "New Name" -Description "New Description"
第一個命令會取得名為 ZoneAlias01 的區域別名對象,然後將該物件儲存在$ZoneAlias變數中。
第二個命令會指派儲存在$ZoneAlias新名稱和描述中的區域別名。
參數
-AddZoneMembership
指定要新增此 Cmdlet 的區域成員陣列。
類型: | String[] |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-Description
指定新區域別名的描述。
類型: | String |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-JobVariable
指定您用來追蹤和儲存作業進度的變數名稱。
類型: | String |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-Name
指定要修改的光纖通道區域別名名稱。
類型: | String |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-PROTipID
指定觸發此動作之效能和資源優化提示 (PRO 提示) 的識別碼。 此參數可讓您稽核 PRO 秘訣。
類型: | Guid |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-RemoveZoneMembership
指定要移除此 Cmdlet 的區域成員陣列。
類型: | String[] |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-RunAsynchronously
表示作業會以異步方式執行,讓控件立即返回命令殼層。
類型: | SwitchParameter |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-StorageZoneAlias
指定此 Cmdlet 修改的光纖通道區域別名。
類型: | StorageZoneAlias |
Position: | 0 |
預設值: | None |
必要: | True |
接受管線輸入: | True |
接受萬用字元: | False |
輸出
StorageZoneAlias
此 Cmdlet 會傳回 StorageZoneAlias 物件。