BIOS Age

Is there anyway I can pull a report of the age of all BIOS versions currently installed on computers with the Tier2Tickets agent?


I'm aware the agent can show as to whether or not BIOS is out of date, but is there a script or option that will allow me to check all computers?

Comments

  • Hey Pablo,

    Not directly using our platform.

    What I can tell you is that we use the win32-BIOS WMI class to get this information so you can grab this information by running a script like this on each of your computers:

    $computer = "LocalHost" 
    $namespace = "root\CIMV2" 
    Get-WmiObject -class Win32_BIOS -computername $computer -namespace $namespace
    

    You should end up seeing something like this:

    Hope that helps!

    -Daryl

Sign In or Register to comment.