PowerShell WMI – Matching Function – BIOS Characteristics

Hi Guys, When you are querying WMI objects to find BIOS informations you will face the BIOS Characteristics codes. Those interger match with supported features or enabled features. The list of interger and matching value is available on a MSDN Web page. I then write a PowerShell function to make the matching of the digits […]

PowerShell WMI – Querying BIOS informations

Hi Guys, I will start a small blog post serie with PowerShell functions I wrote that query WMI of remote computer. Here is the first function: [ps]Function Get-BIOSInfo { <# .SYNOPSIS Describe purpose of "Get-BIOSInfo" in 1-2 sentences. .DESCRIPTION Add a more complete description of what the function does. .PARAMETER ComputerName Describe parameter -ComputerName. .EXAMPLE […]