2022/03/24 #TPMを扱うコマンド

皆様おはようございます、

#猫でもできるPowerShell(備忘録)

#TPMを扱うコマンド

PS> Get-Command *tpm* |FT -a


CommandType Name                        Version        Source                                     
----------- ----                        -------        ------                                     
Cmdlet      Clear-Tpm                   2.0.0.0        TrustedPlatformModule                      
Cmdlet      ConvertTo-TpmOwnerAuth      2.0.0.0        TrustedPlatformModule                      
Cmdlet      Disable-TpmAutoProvisioning 2.0.0.0        TrustedPlatformModule                      
Cmdlet      Enable-TpmAutoProvisioning  2.0.0.0        TrustedPlatformModule                      
Cmdlet      Get-Tpm                     2.0.0.0        TrustedPlatformModule                      
Cmdlet      Get-TpmEndorsementKeyInfo   2.0.0.0        TrustedPlatformModule                      
Cmdlet      Get-TpmSupportedFeature     2.0.0.0        TrustedPlatformModule                      
Cmdlet      Import-TpmOwnerAuth         2.0.0.0        TrustedPlatformModule                      
Cmdlet      Initialize-Tpm              2.0.0.0        TrustedPlatformModule                      
Cmdlet      Set-TpmOwnerAuth            2.0.0.0        TrustedPlatformModule                      
Cmdlet      Unblock-Tpm                 2.0.0.0        TrustedPlatformModule                      
Application immersivetpmvscmgrsvr.exe   10.0.19041.746 C:\WINDOWS\system32\immersivetpmvscmgrsv...
Application rmttpmvscmgrsvr.exe         10.0.19041.746 C:\WINDOWS\system32\rmttpmvscmgrsvr.exe    
Application tpm.msc                     0.0.0.0        C:\WINDOWS\system32\tpm.msc                
Application TpmInit.exe                 10.0.19041.1   C:\WINDOWS\system32\TpmInit.exe            
Application TpmTool.exe                 0.0.0.0        C:\WINDOWS\system32\TpmTool.exe            
Application tpmvscmgr.exe               10.0.19041.1   C:\WINDOWS\system32\tpmvscmgr.exe          
Application tpmvscmgrsvr.exe            10.0.19041.746 C:\WINDOWS\system32\tpmvscmgrsvr.exe       


TPM= Trusted Platform Module
で、Windows11では TPM2.0が必須になるようです。
今回はWindows10のPowerShellで検索した結果ですが、今後この手のコマンドがもっと増えてくるような気が致します

ではまた;