Get bios informations on a remote computer with PowerShell

Hello,

You can get some BIOS informations with that WMI call:

Get-WmiObject -Class Win32_Bios -ComputerName SOFSR2Node2

Gwmi-Bios

You can pipe that to “Get-Member” or use MSDN to get all available properties.

Hereunder an example with some useful properties :

Get-WmiObject -Class Win32_Bios -ComputerName SOFSR2Node2,2k12r2 | Select-Object Manufacturer,Version,SerialNumber,PSComputerName,Description

Gwmi-CS-Selected

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.