ConfigMgr Console

HP Management via PowerShell

Topics: ConfigMgr Console

HP Client Management Script Library

ConfigMgr or Intune

There are several ways you can leverage HP tools, and it’s going to be completely different based on your environment and business requirements. Perhaps you want all of the content coming from your distribution points, and tightly managed bandwidth, or perhaps you want all of the updates coming from HP so you don’t have to manage that.

These posts will focus on HPIA and HPCMSL because those tools provide the best case for cross platform compatibly, meaning you can leverage the tools with both Intune and ConfigMgr managed devices, or other management tools, as long as you can deploy PowerShell Scripts.

This will be broken into several sub pages, as I found it was too much content of a single post, and will separate the tools into more bite size chunks.

All acronyms you can find details about on the parent Manufacturer tools page.

Table of Contents

  • Using HP Tools with ConfigMgr or Intune
    • Automating Install of HPCMSL
    • Automating Update of BIOS
      • Using HPCMSL
    • Managing BIOS Settings
      • Using HPCMSL
      • Using Native WMI (PowerShell)

Automating the Install of HPCMSL

In these examples, the scripts will be going directly to HP to download the software and update, which works great if you have high bandwidth or split tunnelling setup. If you would like to deploy using on prem DPs, that too is possible, and allows you full control over the version you’re deploying, you’ll just have to pay more attention to updates as they come up.

There are 2 ways to install HPCMSL, using the softpaq.exe download and install method, or powershell Gallery.

If you’d like to use the PowerShell Gallery, I’ve uploaded the ConfigMgr CIs for a Baseline Deployment to GitHub. In my lab, I’ve setup a Baseline with those 3 CIs, and have them deployed to all HP Devices, along with some other CIs for BIOS setting management. You can adapt those scripts into Proactive remediation for Intune and target those to a group of HP Devices.

EXE Download

If your company blocks the PowerShell Gallery, or most of the internet in general, you might have to deploy from the EXE that you can download from the HP Website. This method is pretty straight forward, you can use a standard CM Application deployment to deploy the EXE and use a registry value as the detection method. If you have Intune and want to leverage Proactive Remediation, I have a script for that too on GitHub.

Automating Update of BIOS: HPCMSL

This is where you have lots of options, you can leverage baselines, script downloading and updating packages or applications for deployment of BIOS, use task sequences, proactive remediation in Intune.

Currently I leverage HPCMSL to update bios two different ways, one for a highly controlled method of having HPCMSL keep our CM BIOS Pre-Prod package always updated and notify us when it has been updated, which makes for easy reporting, then promotion to production once its been tested. I also leverage HPCMSL in a Run-Script for on-demand updating of BIOS during trouble tickets.

HPCMSL has an entire module dedicated to BIOS, download, update, or configuration, it’s all there.

If you are looking for the hands-off approach, you can leverage baselines in ConfigMgr or proactive remedation in Intune that will automatically do it all for you, and you never have to think about it again. The Process will run from the client, compare it’s current BIOS to HP.com, then update if a newer version is found.

Update BIOS via Baseline in Full OS

Once you have HPCSML Installed, you can create all sorts of great CIs for your Baseline. One such CI can monitor your BIOS Version, compare to HP and Update when downlevel.

Why is it so easy to update BIOS with HPCMSL… it does everything for you, and it’s super flexible. You want to see the code to update your BIOS, here you go:

PS> Get-HPBIOSUpdates -Flash -BitLocker Suspend -Force -Yes
[!NOTE] HPCMSL will ONLY update BIOS on UEFI systems and requires 64-bit PowerShell, you’ll need to leverage HPIA for Legacy systems. More info

So that’s pretty easy, then you can get fancy and add logic for passwords, for UEFI systems, logging, or even using pre-cached BIOS bin file. Example, we run everything in offline mode, so we have HPCMSL on the machines, and we have a package per model with the latest BIOS Bin file, we then deploy the BIOS Update via ConfigMgr to machines using the HPCMSL command line, but pointing at the bin file we downloaded into the ccmcache. HPCMSL is completely able to cover pretty much any scenario.

For an example of a CI in a ConfigMgr Baseline that is used to detect and Remediate HP BIOS, check out this GitHub, here it is, and this is how I setup most of my CIs.

HP Management via PowerShell
HP 02
HP 03
HP 04

I’ll go over a couple more CIs later in the Manage BIOS settings area.

Update BIOS via built-in BIOS Self-Updater when connected to Network

This is another great option if you just want to set it and forget it. You can set your HP Device to update the BIOS using a built in Updater in firmware. As long as the device is connected via Ethernet, it can check at different intervals and update itself, either silently or prompting the user.

To Control this Setting, I use a CI.

If you know the name of the setting, you’re already in luck, if you don’t I run this command to get the names.

(Get-HPBIOSSettingsList).Name
HP 05

Then to get more info about the specific item:

Get-HPBIOSSetting -Name "Update BIOS via Network"
Get-HPBIOSSetting -Name "Update Source"
Get-HPBIOSSetting -Name "Automatically Check for Updates"
Get-HPBIOSSetting -Name "Automatic BIOS Update Setting"
Get-HPBIOSSetting -Name "Use Proxy"
Get-HPBIOSSetting -Name "IPv4 Configuration"
Get-HPBIOSSetting -Name "Connected BIOS"
HP 06

Now you know the settings and the current values and what you have for options.
If you want to allow your devices to automatically upgrade from HP via network connections, you’ll have to set several of those to the way you’d want them, like in this example:

Set-HPBIOSSettingValue -Name "Update BIOS via Network" -Value "Enable" -Password P@ssw0rd
Set-HPBIOSSettingValue -Name "Update Source" -Value "HP" -Password P@ssw0rd
Set-HPBIOSSettingValue -Name "Automatically Check for Updates" -Value "Monthly" -Password P@ssw0rd
Set-HPBIOSSettingValue -Name "Automatic BIOS Update Setting" -Value "Let user decide whether to install updates" -Password P@ssw0rd
Set-HPBIOSSettingValue -Name "Use Proxy" -Value "Disable" -Password P@ssw0rd
Set-HPBIOSSettingValue -Name "IPv4 Configuration" -Value "Automatic" -Password P@ssw0rd
Set-HPBIOSSettingValue -Name "Connected BIOS" -Value "Enable" -Password P@ssw0rd
HP 07
[!NOTE] If you have a BIOS Admin password set, you don’t need it to gather data, only to change/set BIOS setting values.

Typically how I create CIs, is have 1 BIOS Setting Per CI, then include them all into a baseline.

Managing BIOS Settings with a Baseline & HPCMSL or Native WMI

If you made it this far, you can probably see where this is going, but I’m going to throw in a curve ball, what about skipping HPCMSL and just setting the settings via PowerShell without having the dependency of any other software? Yeah, lets do it.

Native WMI

Get-WmiObject -class hp_biossetting -Namespace "roothpinstrumentedbios" | Select-Object Name, Value

That will give you a list of the BIOS Settings and the possible values and the current value that is set (*)

HP 08

With that information, you can start scripting setting BIOS settings with PowerShell without any additional tools, which is pretty slick.

So if you already have HPCMSL installed on every HP device, sure, feel free to leverage that, if not, then here’s a good method in a simple script used in a CI.


#Mike Terril @miketerrill https://miketerrill.net/ | Gary Blok @gwblok garytown.com
#Remediation Script:
$SettingName = 'Wake On LAN'
$Value = 'Boot to Hard Drive'
$BIOSPW = 'P@ssw0rd'
#-------------------------------------
$BIOS= Get-WmiObject -class hp_biossettinginterface -Namespace "roothpinstrumentedbios"
$BIOSSetting = Get-WmiObject -class hp_biossetting -Namespace "roothpinstrumentedbios"
If (($BIOSSetting | ?{ $_.Name -eq 'Setup Password' }).IsSet -eq 0)
{
    $Result = $BIOS.SetBIOSSetting($SettingName,$Value)
}
elseif (($BIOSSetting | ?{ $_.Name -eq 'Setup Password' }).IsSet -eq 1)
{
    $PW = "<utf-16/>$BIOSPW"
    $Result = $BIOS.SetBIOSSetting($SettingName,$Value,$PW)
}
 
Exit $Result.Return

This script you declare your Setting Name (According to HP), The Value (According to HP), and your BIOS Password (If you have one). It will then check for the BIOS Password, and then set the setting, returning the exit code.

Run Scripts

You can also leverage Run Scripts to deploy HPCMSL, or Run HPIA on an adhoc basis. I use Run Scripts to update BIOS on machines I find downlevel, and it works like a charm. If you have HPCMSL on a machine, then creating the run scripts is easy. I have the Run Script check for newer BIOS from HP, then update if available, then trigger a ConfigMgr Agent controlled Restart, popping up the Restart Countdown.

HPCMSL 02
HPCMSL 01 HP Management via PowerShell

You can grab my Run Scripts script on GitHub.

Conclusion: HP Management via PowerShell

HPCMSL is amazing. It allows you to script and automate a lot of your HP client’s management. Hopefully this page has given you a small glimpse into what it can do.


Additional Manufacturer Tools Posts

Network administartor with notebook computer sitting in datacenter room

By IT, for IT.

We are a dedicated group of Systems Administrators and tech-savvy product experts that love what we do and the IT community we do it with.

Back to Top