/OpenDriverTool

Automate the creation of driver and bios packages in configmgr

Primary LanguagePowerShellBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

version downloads license

Open Driver Tool

A powershell module to help create driver and bios update packges in Microsoft's Configuration Manager.

Installation

To install the module from the PowerShell Gallery:

Install-Module -Name OpenDriverTool -Repository PSGallery

Usage

For detailed usage information see the provided documentation, or use the Get-Help cmdlet.

Import-Module -Name OpenDriverTool

$Splat = @{
    Make               = 'Dell'
    Model              = 'Latitude 5420'
    ContentShare       = '\\configmgrnetworkshare\Drivers'
    SiteCode           = 'ABC'
    SiteServerFQDN     = 'abc.contoso.com'
    DistributionPoints = @('abc.contoso.com', 'abc2.contoso.com')
} 

Update-Model @Splat -OSVersion 'Windows 11'

Build

1. Clone this repo

git clone https://github.com/w0/OpenDriverTool.git
cd OpenDriverTool

2. Run the build script

The build script will install any required modules needed and automatically import the module.

./build.ps1