Get-TpmSupportedFeature

Get-TpmSupportedFeature

Verifies whether a TPM supports specified features.

Sintaxis

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

Descripción detallada

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

Parámetros

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

Alias

ninguno

¿Requerido?

false

¿Posición?

2

Valor predeterminado

ninguno

¿Aceptar canalización?

True (ByValue)

¿Aceptar caracteres comodín?

false

<CommonParameters>

Este cmdlet admite los siguientes parámetros comunes: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer y -OutVariable. Para obtener más información, consulte about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).

Entradas

El tipo de entrada es el tipo de los objetos que se pueden canalizar al cmdlet.

  • StringCollection

    This cmdlet accepts a collection of features to verify.

Salidas

El tipo de resultado es el tipo de objetos que emite el cmdlet.

  • StringCollection

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

Ejemplos

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"