Driver and Firmware Servicing PowerShell Module

Published On: March 20, 2023Last Updated: January 14, 2024By Tags: , , , 2 min readViews: 249

TOC

Its been just over a month since the announcement of Commercial Driver and Firmware Servicing by Microsoft. Since then I have been working on delivering this to businesses, and sometimes it can be a challenge to keep on top of all of the different graph endpoints that are required to keep the cogs turning. So, out of my own sanity saving idea, I pulled together a PowerShell Module (Driver.Firmware.Servicing) to help make the service a lot more consumable for admins.

Microsoft provided some great conceptual documentation on the service, but I wanted to make it a lot easier to consume. So, I have created a PowerShell Module that abstracts away the complexity of the Graph API, and provides a simple interface to manage the service. See the Microsoft documentation for more information on the service.

What is Driver and Firmware Servicing?

Let us quickly recap on what Driver and Firmware Servicing is. Utilising the Windows Update for Business Deployment Service (WUfBDS), Driver and Firmware Servicing is a service that allows you to manage the drivers and firmware that are deployed to your devices. It is available to commercial customers, with one of the following licencing SKUs.

  • Microsoft 365 E3 & E5
  • Microsoft 365 A3 & A5
  • Microsoft 365 Business Premium

What does the PowerShell Module do?

The PowerShell Module is designed to make the management of Driver and Firmware Servicing a lot easier. Behind the scenes it is using the Graph API to make the calls to the service, with the PowerShell Module abstracting away the complexity of the Graph API.

Where can I get the PowerShell Module?

As mentioned in the opening paragraph, the PowerShell Module is available from the PowerShell Gallery. You can install it by running the following command in PowerShell.

Copy to Clipboard

How do I use the PowerShell Module?

Whist I have also documented these on the GitHub repo (linked above), alongside the source code, I will also cover them here.

Create a new policy

Copy to Clipboard

Add a device to a policy

Copy to Clipboard

Get a list of applicable content

Copy to Clipboard

Get a list of compliance changes & view update schedule

Copy to Clipboard

Add a Driver Update Approval

Copy to Clipboard

Revoke a Driver Update Approval

Copy to Clipboard

Update a Driver Update Deferral

Copy to Clipboard

Conclusion

There are so many more things that you can do with the PowerShell Module, and I will be adding more functionality to it over time. If you have any suggestions, please let me know by using the discussions and issues tabs on the GitHub repo.

Driver and Firmware Servicing PowerShell Module

Published On: March 20, 2023Last Updated: January 14, 2024By Tags: , , , 2 min readViews: 249

TOC

Its been just over a month since the announcement of Commercial Driver and Firmware Servicing by Microsoft. Since then I have been working on delivering this to businesses, and sometimes it can be a challenge to keep on top of all of the different graph endpoints that are required to keep the cogs turning. So, out of my own sanity saving idea, I pulled together a PowerShell Module (Driver.Firmware.Servicing) to help make the service a lot more consumable for admins.

Microsoft provided some great conceptual documentation on the service, but I wanted to make it a lot easier to consume. So, I have created a PowerShell Module that abstracts away the complexity of the Graph API, and provides a simple interface to manage the service. See the Microsoft documentation for more information on the service.

What is Driver and Firmware Servicing?

Let us quickly recap on what Driver and Firmware Servicing is. Utilising the Windows Update for Business Deployment Service (WUfBDS), Driver and Firmware Servicing is a service that allows you to manage the drivers and firmware that are deployed to your devices. It is available to commercial customers, with one of the following licencing SKUs.

  • Microsoft 365 E3 & E5
  • Microsoft 365 A3 & A5
  • Microsoft 365 Business Premium

What does the PowerShell Module do?

The PowerShell Module is designed to make the management of Driver and Firmware Servicing a lot easier. Behind the scenes it is using the Graph API to make the calls to the service, with the PowerShell Module abstracting away the complexity of the Graph API.

Where can I get the PowerShell Module?

As mentioned in the opening paragraph, the PowerShell Module is available from the PowerShell Gallery. You can install it by running the following command in PowerShell.

Copy to Clipboard

How do I use the PowerShell Module?

Whist I have also documented these on the GitHub repo (linked above), alongside the source code, I will also cover them here.

Create a new policy

Copy to Clipboard

Add a device to a policy

Copy to Clipboard

Get a list of applicable content

Copy to Clipboard

Get a list of compliance changes & view update schedule

Copy to Clipboard

Add a Driver Update Approval

Copy to Clipboard

Revoke a Driver Update Approval

Copy to Clipboard

Update a Driver Update Deferral

Copy to Clipboard

Conclusion

There are so many more things that you can do with the PowerShell Module, and I will be adding more functionality to it over time. If you have any suggestions, please let me know by using the discussions and issues tabs on the GitHub repo.