Get-Tpm Supported Feature

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-TpmSupportedFeatures -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.

Optional 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
Accept pipeline input: True (ByValue)
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.