Get-TpmSupportedFeature

Verifies whether a TPM supports specified features.

Syntax

Get-TpmSupportedFeature
   [[-FeatureList] <StringCollection>]
   [<CommonParameters>]

Description

The Get-TpmSupportedFeature cmdlet verifies whether a Trusted Platform Module (TPM) supports specified TPM features. Not all TPMs support all features.

Examples

Example 1: Verify support for key attestation

PS C:\> Get-TpmSupportedFeature -FeatureList "Key Attestation"
key attestation

This command verifies whether TPM supports the key attestation feature. The cmdlet displays the string, key attestation, so TPM supports that feature.

Parameters

-FeatureList

Specifies feature names as a string collection. The cmdlet verifies the features that you specify. If you specify an empty collection, $Null, or do not include this parameter, the cmdlet verifies all features.

Type:StringCollection
Position:1
Default value:None
Required:False
Accept pipeline input:True
Accept wildcard characters:False

Inputs

StringCollection

This cmdlet accepts a collection of features to verify.

Outputs

StringCollection

This cmdlet generates a StringCollection object that contains features that the TPM of the computer supports.