Install-Module DellBIOSProvider
get-dellbiossettings
get-psdrive
ls DellSmbios
ls DellSmbios:\SystemInformation
set-item DellSmbios:\SystemInformation\asset $foovar
#Get all settings
$DellSettings = Get-ChildItem -Path DellSmbios:\
ForEach ($Setting in $DellSettings)
{
Get-ChildItem -Path "DellSmbios:\$($Setting.Category)" -WarningAction SilentlyContinue | Select-Object PSChildName,Attribute,CurrentValue,PossibleValues
}
NOTES:
https://www.configjon.com/working-with-the-dell-command-powershell-provider/
https://www.configjon.com/dell-bios-settings-management/