• Dumping all hardware firmware versions to a log
    2 replies, posted
Anyone know if there is a utility to grab all hardware firmware versions and dump them to a log? Is this even possible? Need to list firmware on some computers and compare them to see if I've missed upgrading anything. Thing is, to grab firmware versions for all seperate devices is one hell of an annoying job.
Maybe Powershell and WMI will do the trick: [URL]http://www.powershellatoms.com/shell-environment/understanding-the-windows-management-instrumentation-wmi-part-ii/[/URL] Create a list of all the hardware categories you want to check and pipe the output to a text file. (EX: Get-WMIObject Win32_BIOS > test.txt) EDIT: This might also help: [url]http://gallery.technet.microsoft.com/Device-Management-7fad2388[/url]
[QUOTE=Rand0mNumber;41766309]Maybe Powershell and WMI will do the trick: [URL]http://www.powershellatoms.com/shell-environment/understanding-the-windows-management-instrumentation-wmi-part-ii/[/URL] Create a list of all the hardware categories you want to check and pipe the output to a text file. (EX: Get-WMIObject Win32_BIOS > test.txt) EDIT: This might also help: [url]http://gallery.technet.microsoft.com/Device-Management-7fad2388[/url][/QUOTE] That helped! Thanks.
Sorry, you need to Log In to post a reply to this thread.