Public/v2/Get-OSDCatalogDriverPacks.ps1
function Get-OSDCatalogDriverPacks { <# .SYNOPSIS Returns the DriverPacks used by OSDCloud .DESCRIPTION Returns the DriverPacks used by OSDCloud .LINK https://github.com/OSDeploy/OSD/tree/master/Docs #> [CmdletBinding()] param () $Results = Import-Clixml -Path "$(Get-OSDCachePath)\driverpack-catalogs\build-driverpacks.xml" $Results } |