• ×
    Information
    Windows update impacting certain printer icons and names. Microsoft is working on a solution.
    Click here to learn more
    Information
    Need Windows 11 help?
    Check documents on compatibility, FAQs, upgrade information and available fixes.
    Windows 11 Support Center.
  • post a message
  • ×
    Information
    Windows update impacting certain printer icons and names. Microsoft is working on a solution.
    Click here to learn more
    Information
    Need Windows 11 help?
    Check documents on compatibility, FAQs, upgrade information and available fixes.
    Windows 11 Support Center.
  • post a message
Guidelines
If you are having hardware issues with your computer, please, Click here for more information.
HP Recommended
HP ProDesk 400 G5 Base Desktop Mini PC
Microsoft Windows 10 (64-bit)

Hello everyone,

 

in our company we have roundabout 4000 HP Devices. 

 

i want to change two Biossettings with Powershell (CMSL) but i cant find a solution.

 

I tryed to find the Settings with "Get-HPBIOSSettingsList "

Maybe there is a pro here, who can help.

 

Setting 1:

I want to turn on "HP LAN-Wireless Protection   (LAN/WLAN Auto Switching - ENABLE )

 

Setting 2:

I want to configure the "Schedule Power on" Monday to Friday an 08:00 a clock.

 

Is there anyone who can help?

 

Best regards

 

Tim

3 REPLIES 3
HP Recommended

You might try BiosConfigUtility (included in sp57450): while I am not actually sure it works with the ProDesk 400 G5, there’s no harm in trying. Assuming it does its job, you could set a reference PC’s BIOS, dump its setting with a:


BiosConfigUtility.exe /GetConfig:whatever


And mass deploy it with a


BiosConfigUtility.exe /SetConfig:whatever

 

Jim

HP Recommended

I found the solution for Setting 1:
Set-HPBIOSSettingValue -Password nottherealpassword -Name "LAN / WLAN Auto Switching" -Value Enable

HP Recommended

If you really prefer CMSL, you can enumerate the PowerDesk 400 G5’s BIOS Settings’ list with

 

Get-HPBIOSSettingsList

 

Alternatively, for improved readability, you might want to run

 

Get-WmiObject -Namespace root\HP\InstrumentedBIOS -Class HP_BIOSEnumeration | Select-Object Name,Value

 

Therefore, to address you little issue (this example had been tested on a Z workstation)

 

Set-HPBIOSSettingValue -Name 'BIOS Power-On Time (hh:mm)' -value 8:00

Set-HPBIOSSettingValue -Name 'Monday' -value Enable

 

Repeat the latter for each day using -Name “Tuesday’ (…) ‘Friday’ and specify the BIOS’ password in the event you set one

 

Set-HPBIOSSettingValue -Password whatever -Name (…)

 

Jim

† The opinions expressed above are the personal opinions of the authors, not of HP. By using this site, you accept the <a href="https://www8.hp.com/us/en/terms-of-use.html" class="udrlinesmall">Terms of Use</a> and <a href="/t5/custom/page/page-id/hp.rulespage" class="udrlinesmall"> Rules of Participation</a>.