Unsolved

1 Rookie

 • 

2 Posts

286

April 28th, 2022 15:00

Re: DellSMBIOS issue verifying current values

We figured this out! See the working code below for the answer!

        Import-Module -Name DellBIOSProvider -Force
        $PrimaryBattChargeCfg = Get-ChildItem -Path DellSmbios:\PowerManagement\PrimaryBattChargeCfg | % { New-Object psobject -Property @{
            Setting = $_."attribute"
            Value = $_."currentvalue"
            }}  | select-object Setting, Value
        $AdvBatteryChargeCfg = Get-ChildItem -Path DellSmbios:\PowerManagement\AdvBatteryChargeCfg | % { New-Object psobject -Property @{
            Setting = $_."attribute"
            Value = $_."currentvalue"
            }}  | select-object Setting, Value
        $CustomChargeStart = Get-ChildItem -Path DellSmbios:\PowerManagement\CustomChargeStart | % { New-Object psobject -Property @{
            Setting = $_."attribute"
            Value = $_."currentvalue"
            }}  | select-object Setting, Value
        $CustomChargeStop = Get-ChildItem -Path DellSmbios:\PowerManagement\CustomChargeStop  |% { New-Object psobject -Property @{
            Setting = $_."attribute"
            Value = $_."currentvalue"
            }}  | select-object Setting, Value
No Responses!
No Events found!

Top