Get-TpmSupportedFeature
Verifies whether a TPM supports specified features.
Syntax
Default (Default)
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.
Parameter properties
Type: | StringCollection |
Default value: | None |
Supports wildcards: | False |
DontShow: | False |
Parameter sets
(All)
Position: | 1 |
Mandatory: | False |
Value from pipeline: | True |
Value from pipeline by property name: | False |
Value from remaining arguments: | False |
CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.
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.