Syntax
Get-VTpmCSR [-VTpm] <VTpm[]> [-CSRType {All | ECC | RSA}] [<CommonParameters>]Related Commands
Get-VTpmDetailed Description
This cmdlet retrieves the certficate signing requests(CSR) from the given VTpm devices. You can retrive the certificate signing request from the given VTpm devices by specifying the VTpm device and the certificate signing request type (CSRType): RSA, ECC or All. By default, the certificate signing request type (CSRType) is All.Parameters
Name | Type | Description | Required? | Pipeline Input | Default Value |
---|---|---|---|---|---|
VTpm | VTpm[] | Specifies the VTpm device from which the certificate signing request information will be retrieved. | true | True (ByValue) | |
CSRType | CSRType | Specifies the signing request type. The valid values are: All, ECC, RSA. | false | False |
Return Type
System.String[]Notes
Examples
-------------------------- EXAMPLE 1 --------------------------
PS C:\> Get-VTpm -VM MyVM | Get-VTpmCSR
Retrieves all the certificate signing request information from the VTpm device of the virtual machine named "MyVM".
-------------------------- Example 2 --------------------------
PS C:\> Get-VTpm -VM MyVM | Get-VTpmCSR -CSRType ECC
Retrieves the certificate signing request information, whose encryption algorithm is ECC, from the VTpm device of the virtual machine named "MyVM".