我已经为 python 和 pywin32 扩展安装了 WMI,以便能够从我的 python 脚本中使用 win32 api。虽然我可以从 Win32_Battery、Win32_Processor 等其他分类中获取所有信息,但我在 Win32_Tpm 类上遇到了困难。
我想在 python 中使用 Win32_Tpm 模块来玩转各种 tpm 功能,但是我对 win32_tpm 的所有引用都返回 null。
有没有人能够毫无问题地使用它。任何帮助将不胜感激。
我的代码很简单:
import wmi,sys,os
c = wmi.WMI()
for tpm in c.Win32_Tpm():
pass
if tpm.IsActivated():
print 'Version %s' %(tpm.SpecVersion)
print 'Physical presence %s' %(tpm.PhysicalPresenceVersionInfo)