共用方式為


Set-SCSSHKey

更新 Linux SSHKey 的屬性。

語法

Set-SCSSHKey
   [-UserRole <UserRole>]
   [-Enabled <Boolean>]
   [-VMMServer <ServerConnection>]
   [-SSHKey] <SSHKey>
   [-Name <String>]
   [-SharePath <String>]
   [-Description <String>]
   [-Owner <String>]
   [-FamilyName <String>]
   [-Release <String>]
   [-RunAsynchronously]
   [-PROTipID <Guid>]
   [-JobVariable <String>]
   [<CommonParameters>]
Set-SCSSHKey
   [-VMMServer <ServerConnection>]
   [-SSHKeys] <System.Collections.Generic.List`1[Microsoft.SystemCenter.VirtualMachineManager.SSHKey]>
   -FamilyName <String>
   -Release <String>
   [-RunAsynchronously]
   [-PROTipID <Guid>]
   [-JobVariable <String>]
   [<CommonParameters>]

Description

Set-SCSSHKey Cmdlet 會更新儲存在 Virtual Machine Manager (VMM) 連結庫中的 Linux SSHKey 物件的屬性。

範例

範例 1:變更 SSHKey 的描述

PS C:\> $SSHKey = Get-SCSSHKey -VMMServer "VMMServer01.Contoso.com" | where { $_.LibraryServer.Name -eq "LibraryServer01.Contoso.com" -and $_.Name -eq "My.sshkey" }
PS C:\> Set-SCSSSHKey -SSHKey $sshkey -Description "My standard SSHKey"

第一個命令會從 VMMServer01 上的連結庫取得名為 My.sshkey 的 SSHKey 對象,然後將該物件儲存在 $SSHKey 變數中。

第二個命令會將儲存在 $SSHKey SSHKey 的描述變更為「我的標準 SSHKey」。

範例 2:變更 SSHKey 的屬性

PS C:\> $SSHKey = Get-SCSSHKey -Name "My.sshkey"
PS C:\> Set-SCSSHKey -SSHKey $SSHKey -FamilyName "Family01"

第一個命令會取得名為 My.sshkey 的 SSHKey 對象,然後將該物件儲存在$SSHKey 變數中。

第二個命令會將儲存在 $SSHKey SSHKey 物件的 FamilyName 屬性設定為 Family01。

參數

-Description

指定 SSHKey 物件的描述。

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-Enabled

指出是否要啟用或停用 SSHKey 物件。 指定$True以啟用 SSHKey 或$False來停用它。

類型:Boolean
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-FamilyName

指定 VMM 連結庫中實體資源的系列名稱。

類型:String
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

-JobVariable

指定追蹤和儲存作業進度的變數。

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-Name

指定 VMM SSHKey 物件的名稱。

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-Owner

以有效的網域用戶帳戶形式指定 VMM SSHKey 物件的擁有者。

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-PROTipID

指定觸發此動作之效能和資源優化提示 (PRO 提示) 的識別碼。 此參數可讓您稽核 PRO 秘訣。

類型:Guid
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-Release

指定描述連結庫資源發行的字串。 VMM 會自動為匯入連結庫的每個資源建立發行值。 匯入資源之後,即可自定義字串。

類型:String
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

-RunAsynchronously

表示作業會以異步方式執行,讓控件立即返回命令殼層。

類型:SwitchParameter
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-SharePath

指定現有連結庫伺服器上使用通用命名約定 (UNC) 路徑的有效連結庫共享路徑。

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-SSHKey

指定 Linux 系統管理員 SSHKey 物件。

類型:SSHKey
Position:0
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-SSHKeys

指定 Linux 系統管理員 SSHKey 物件的清單。

類型:System.Collections.Generic.List`1[Microsoft.SystemCenter.VirtualMachineManager.SSHKey]
Position:0
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-UserRole

指定使用者角色物件。

類型:UserRole
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-VMMServer

指定 VMM 伺服器物件。

類型:ServerConnection
Position:Named
預設值:None
必要:False
接受管線輸入:True
接受萬用字元:False

輸出

LinuxAdministratorSshKey

此 Cmdlet 會傳回 LinuxAdministratorSshKey 物件。