Get-TpmSupportedFeature

Get-TpmSupportedFeature

Verifies whether a TPM supports specified features.

構文

Parameter Set: Default
Get-TpmSupportedFeature [[-FeatureList] <StringCollection> ] [ <CommonParameters>]

詳細説明

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

パラメーター

-FeatureList<StringCollection>

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.

エイリアス

なし

必須?

false

位置は?

2

既定値

なし

パイプライン入力を許可する

True (ByValue)

ワイルドカード文字を許可する

false

<CommonParameters>

このコマンドレットは次の共通パラメーターをサポートします。-Verbose、-Debug、-ErrorAction、-ErrorVariable、-OutBuffer、-OutVariable.詳細については、以下を参照してください。 about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216)。

入力

入力型は、コマンドレットにパイプできるオブジェクトの型です。

  • StringCollection

    This cmdlet accepts a collection of features to verify.

出力

出力型は、コマンドレットによって生成されるオブジェクトの型です。

  • StringCollection

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

Example 1: Verify support for key attestation

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

PS C:\> Get-TpmSupportedFeatures -FeatureList "Key Attestation"