Check Windows 11 Ready-ness via RMM or Powershell

Use these commands to get the current boot type (Legacy or UEFI) and if the system has a TPM present:

RMM:

powershell -c "$env:firmware_type"
powershell -c "Get-Tpm" 

Powershell:

$env:firmware_type"
Get-Tpm