A powershell module to help create driver and bios update packges in Microsoft's Configuration Manager.
To install the module from the PowerShell Gallery:
Install-Module -Name OpenDriverTool -Repository PSGallery
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'
git clone https://github.com/w0/OpenDriverTool.git
cd OpenDriverTool
The build script will install any required modules needed and automatically import the module.
./build.ps1