You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
## This script fetches the Windows machine BIOS data using Get-WmiObject cmdlet
|
|
|
|
$bios_data = Get-WmiObject -class win32_bios | format-list -property * | Out-String
|
|
$bios_data = $bios_data.Trim()
|
|
$bios_data -replace '(.*?)\s:(.*)', '$1 = $2'
|