Query Details

Check If TPM 20 Is Available

Query

// Use Case: Check if TPM 2.0 is available.
Tpm
| where SpecVersion contains '2.0'

Explanation

This query is designed to check if TPM (Trusted Platform Module) version 2.0 is available. It does this by searching through a dataset named Tpm and filtering the results to only include entries where the SpecVersion field contains the text '2.0'. Essentially, it's looking for any records that indicate the presence of TPM version 2.0.