none
Get TPM info for computer inventory RRS feed

  • Frage

  • Hi,

    there are about 100 PCs (diffrent hardware, maufacturer, OS:Vista Ent,7 Ent) and I need to inventory all with an TPM.

    I can not acces the Win32_TPM class without activating the bios setting, but I dont want to spend a whole day changing bios settings from 100 pc.

    Recently I saw that the operating system already knows something about the manufacterer and the version of the installed chip. (tpm.msc ManuF. Info). Is there a way to extract this data with a script (PS) or cmd cmdlt?

    Thank you

    BR


    ..next time we eat bacon

    Montag, 8. Oktober 2012 11:50

Antworten

  • You might examine this class:
     
    wmic path win32_pnpentity where
    (classguid="{d94ee5d8-d189-4994-83d2-f68d7d41b0e6}")
    The guid is "security devices".
     
    regards, Martin
     

    NO THEY ARE NOT EVIL, if you know what you are doing: Good or bad GPOs?
    Wenn meine Antwort hilfreich war, freue ich mich über eine Bewertung! If my answer was helpful, I'm glad about a rating!
    Montag, 8. Oktober 2012 13:44
  • Thank you worked great. I modified your suggestion,

    Get-WmiObject Win32_pnpsigneddriver -computername $item| Select devicename, driverversion |Select-String "Trusted*"

    Best Regards


    ..next time we eat bacon



    Montag, 8. Oktober 2012 14:08

Alle Antworten