共用方式為


Get-SCSSHKey

從 VMM 連結庫取得 Linux 系統管理員 SSHKey 物件。

語法

Get-SCSSHKey
   [-VMMServer <ServerConnection>]
   [-All]
   [<CommonParameters>]
Get-SCSSHKey
   [-VMMServer <ServerConnection>]
   -Name <String>
   [<CommonParameters>]
Get-SCSSHKey
   [-VMMServer <ServerConnection>]
   [-Release <String>]
   -FamilyName <String>
   [<CommonParameters>]
Get-SCSSHKey
   [-VMMServer <ServerConnection>]
   [-ID <Guid>]
   [<CommonParameters>]

Description

Get-SCSSHKey Cmdlet 會從 Virtual Machine Manager (VMM) 連結庫取得 Linux 系統管理員 SSHKey 物件。

範例

範例 1:取得 VMM 連結庫中的所有 SSHKey 物件

PS C:\> $SSHKey = Get-SCSSHKey -All

此命令會取得 VMM 連結庫中所有 SSHKey 物件,並向使用者顯示相關信息。

範例 2:依名稱取得 SSHKey

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

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

第二個命令會顯示儲存在 $SSHKey 中 SSHKey 對象的相關信息。

範例 3:取得共用屬性的所有 SSHKey 物件

PS C:\> Get-SCSSHKey -FamilyName "Family01"

此命令會從 VMM 連結庫取得具有 Family01 FamilyName 值的所有 SSHKey 物件,並顯示每個 SSHKey的相關信息。

參數

-All

指出這個 Cmdlet 會取得與父對象無關的所有次級物件。 例如,命令 Get-SCVirtualDiskDrive -All 會取得所有虛擬磁碟驅動器物件,而不論每個虛擬磁碟驅動器對象相關聯的虛擬機物件或範本對象為何。

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

-FamilyName

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

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

-ID

指定這個 Cmdlet 取得 SSHKey 的唯一標識符。

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

-Name

指定這個 Cmdlet 取得 SSHKey 物件的名稱。

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

-Release

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

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

-VMMServer

指定 VMM 伺服器物件。

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

輸出

LinuxAdministratorSshKey

此 Cmdlet 會傳回 LinuxAdministratorSshKey 物件。