Archive/Save-HpMultiPack.ps1
<#
.SYNOPSIS Downloads Hp Model Packs and creates a MultiPack .DESCRIPTION Downloads Hp Model Packs to $WorkspacePath\Download\HpModel Creates a Hp MultiPack in $WorkspacePath\Packages\HpMultiPack Requires BITS for downloading the Downloads Requires Internet access .LINK https://osddrivers.osdeploy.com/module/functions/save-HpMultiPack .PARAMETER WorkspacePath Directory to the OSDDrivers Workspace. This contains the Download, Expand, and Package subdirectories .PARAMETER AppendName Appends the string to the HpMultiPack Name .PARAMETER Generation Generation of the Hp Model .PARAMETER OsArch Operating System Architecture of the Model Pack to be extracted .PARAMETER OsVersion Operating System Version of the Model Pack to be extracted .PARAMETER SystemFamily Filters compatibility to Latitude, Optiplex, or Precision. Venue, Vostro, and XPS are not included .PARAMETER Expand Expands the downloaded Hp Model Packs .PARAMETER RemoveAudio Removes drivers in the Audio Directory from being added to the CAB or MultiPack .PARAMETER RemoveAmdVideo Removes AMD Video Drivers from being added to the CAB or MultiPack .PARAMETER RemoveIntelVideo Removes Intel Video Drivers from being added to a MultiPack .PARAMETER RemoveNvidiaVideo Removes Nvidia Video Drivers from being added to the CAB or MultiPack #> function Save-HpMultiPack { [CmdletBinding()] Param ( #==================================================================== # InputObject #==================================================================== [Parameter(ValueFromPipeline = $true)] [Object[]]$InputObject, #==================================================================== # Basic #==================================================================== [Parameter(Mandatory)] [string]$WorkspacePath, #[Parameter(Mandatory)] [string]$AppendName = 'None', #==================================================================== # Filters #==================================================================== [ValidateSet ('G6','G5','G4','G3','G2','G1','G0')] [string]$Generation, [ValidateSet ('x64','x86')] [string]$OsArch = 'x64', [ValidateSet ('10.0','6.3','6.1')] [string]$OsVersion = '10.0', #[ValidateSet ('Latitude','Optiplex','Precision')] #[string]$SystemFamily, #==================================================================== # Options #==================================================================== [switch]$RemoveAmdVideo = $false, [switch]$RemoveAudio = $false, [switch]$RemoveIntelVideo = $false, [switch]$RemoveNvidiaVideo = $false #[switch]$RemoveX86 = $false #[switch]$SplitGeneration, #[Parameter(ValueFromPipeline, ValueFromPipelineByPropertyName)] #[ValidateSet('HpModel','HpFamily')] #[string]$OSDGroup, #[Parameter(ValueFromPipeline, ValueFromPipelineByPropertyName)] #[ValidateSet ('x64','x86')] #[string]$OsArch, #[switch]$SkipGridView #==================================================================== ) Begin { #=================================================================================================== # CustomName #=================================================================================================== if ($AppendName -eq 'None') { $CustomName = "HpMultiPack $OsVersion $OsArch" } else { $CustomName = "HpMultiPack $OsVersion $OsArch $AppendName" } #=================================================================================================== # Get-OSDWorkspace Home #=================================================================================================== $GetOSDDriversHome = Get-PathOSDD -Path $WorkspacePath Write-Verbose "Home: $GetOSDDriversHome" -Verbose #=================================================================================================== # Get-OSDWorkspace Children #=================================================================================================== $SetOSDDriversPathDownload = Get-PathOSDD -Path (Join-Path $GetOSDDriversHome 'Download') Write-Verbose "Download: $SetOSDDriversPathDownload" -Verbose $SetOSDDriversPathExpand = Get-PathOSDD -Path (Join-Path $GetOSDDriversHome 'Expand') Write-Verbose "Expand: $SetOSDDriversPathExpand" -Verbose $SetOSDDriversPathPackages = Get-PathOSDD -Path (Join-Path $GetOSDDriversHome 'Packages') Write-Verbose "Packages: $SetOSDDriversPathPackages" -Verbose Publish-OSDDriverScripts -PublishPath $SetOSDDriversPathPackages $PackagePath = Get-PathOSDD -Path (Join-Path $SetOSDDriversPathPackages "$CustomName") Write-Verbose "MultiPack Path: $PackagePath" -Verbose Publish-OSDDriverScripts -PublishPath $PackagePath #=================================================================================================== } Process { #=================================================================================================== # Defaults #=================================================================================================== $Expand = $true $OSDGroup = 'HpModel' if ($RemoveAudio -eq $true) {Write-Warning "Audio Drivers will be removed from resulting packages"} if ($RemoveAmdVideo -eq $true) {Write-Warning "AMD Video Drivers will be removed from resulting packages"} if ($RemoveIntelVideo -eq $true) {Write-Warning "Intel Video Drivers will be removed from resulting packages"} if ($RemoveNvidiaVideo -eq $true) {Write-Warning "Nvidia Video Drivers will be removed from resulting packages"} Publish-OSDDriverScripts -PublishPath (Join-Path $SetOSDDriversPathDownload 'HpModel') #=================================================================================================== # Get-OSDDrivers #=================================================================================================== $OSDDrivers = @() if ($InputObject) { $SkipGridView = $true $OSDDrivers = $InputObject } else { $OSDDrivers = Get-OSDDriverHpModel -DownloadPath (Join-Path $SetOSDDriversPathDownload 'HpModel') $OSDDrivers | Export-Clixml "$(Join-Path $SetOSDDriversPathDownload $(Join-Path 'HpModel' 'HpModelPack.clixml'))" } #=================================================================================================== # Set-OSDStatus #=================================================================================================== foreach ($OSDDriver in $OSDDrivers) { $DriverName = $OSDDriver.DriverName $OSDCabFile = "$($DriverName).cab" $DownloadFile = $OSDDriver.DownloadFile $OSDGroup = $OSDDriver.OSDGroup $OSDType = $OSDDriver.OSDType $DownloadedDriverGroup = (Join-Path $SetOSDDriversPathDownload $OSDGroup) Write-Verbose "DownloadedDriverGroup: $DownloadedDriverGroup" $DownloadedDriverPath = (Join-Path $SetOSDDriversPathDownload (Join-Path $OSDGroup $DownloadFile)) if (Test-Path "$DownloadedDriverPath") {$OSDDriver.OSDStatus = 'Downloaded'} $ExpandedDriverPath = (Join-Path $SetOSDDriversPathExpand (Join-Path $OSDGroup $DriverName)) if (Test-Path "$ExpandedDriverPath") {$OSDDriver.OSDStatus = 'Expanded'} } #=================================================================================================== # Filters #=================================================================================================== if ($OsArch) {$OSDDrivers = $OSDDrivers | Where-Object {$_.OsArch -match "$OsArch"}} if ($OsVersion) {$OSDDrivers = $OSDDrivers | Where-Object {$_.OsVersion -match "$OsVersion"}} if ($Generation) {$OSDDrivers = $OSDDrivers | Where-Object {$_.Generation -eq "$Generation"}} if ($SystemFamily) {$OSDDrivers = $OSDDrivers | Where-Object {$_.SystemFamily -match "$SystemFamily"}} #=================================================================================================== # GridView #=================================================================================================== $OSDDrivers = $OSDDrivers | Sort-Object LastUpdate -Descending if ($SkipGridView) { #Write-Warning "SkipGridView: Skipping Out-GridView" } else { $OSDDrivers = $OSDDrivers | Out-GridView -PassThru -Title "Select Drivers to MultiPack and press OK" } #=================================================================================================== # Export MultiPack Object #=================================================================================================== $OSDDrivers | Export-Clixml "$PackagePath\$CustomName $(Get-Date -Format yyMMddHHmmssfff).clixml" -Force $OSDDriverWmiQ = @() Get-ChildItem $PackagePath *.clixml | foreach {$OSDDriverWmiQ += Import-Clixml $_.FullName} if ($OSDDriverWmiQ) { $OSDDriverWmiQ | Get-OSDDriverWmiQ -OSDGroup HpModel -Result Model | Out-File "$PackagePath\WmiQuery.txt" -Force $OSDDriverWmiQ | Get-OSDDriverWmiQ -OSDGroup HpModel -Result SystemId | Out-File "$PackagePath\WmiQuerySystemId.txt" -Force } #=================================================================================================== # Execute #=================================================================================================== if ($WorkspacePath) { Write-Verbose "===================================================================================================" foreach ($OSDDriver in $OSDDrivers) { $OSDType = $OSDDriver.OSDType Write-Verbose "OSDType: $OSDType" $DriverUrl = $OSDDriver.DriverUrl Write-Verbose "DriverUrl: $DriverUrl" $DriverName = $OSDDriver.DriverName Write-Verbose "DriverName: $DriverName" $DownloadFile = $OSDDriver.DownloadFile Write-Verbose "DownloadFile: $DownloadFile" $OSDGroup = $OSDDriver.OSDGroup Write-Verbose "OSDGroup: $OSDGroup" $OSDCabFile = "$($DriverName).cab" Write-Verbose "OSDCabFile: $OSDCabFile" $DownloadedDriverGroup = (Join-Path $SetOSDDriversPathDownload $OSDGroup) $DownloadedDriverPath = (Join-Path $DownloadedDriverGroup $DownloadFile) $ExpandedDriverPath = (Join-Path $SetOSDDriversPathExpand (Join-Path $OSDGroup $DriverName)) #$PackagedDriverPath = (Join-Path $SetOSDDriversPathPackages (Join-Path $OSDGroup $OSDCabFile)) if (-not(Test-Path "$DownloadedDriverGroup")) {New-Item $DownloadedDriverGroup -Directory -Force | Out-Null} Write-Verbose "DownloadedDriverPath: $DownloadedDriverPath" Write-Verbose "ExpandedDriverPath: $ExpandedDriverPath" #Write-Verbose "PackagedDriverPath: $PackagedDriverPath" Write-Host "$DriverName" -ForegroundColor Green #=================================================================================================== # Driver Download #=================================================================================================== Write-Host "Driver Download: $DownloadedDriverPath " -ForegroundColor Gray -NoNewline if (Test-Path "$DownloadedDriverPath") { Write-Host 'Complete!' -ForegroundColor Cyan } else { Write-Host "Downloading ..." -ForegroundColor Cyan Write-Host "$DriverUrl" -ForegroundColor Gray Start-BitsTransfer -Source $DriverUrl -Destination "$DownloadedDriverPath" -ErrorAction Stop } #=================================================================================================== # Validate Driver Download #=================================================================================================== if (-not (Test-Path "$DownloadedDriverPath")) { Write-Warning "Driver Download: Could not download Driver to $DownloadedDriverPath ... Exiting" Continue } else { if ($DownloadFile -match '.cab') { $OSDDriver | ConvertTo-Json | Out-File -FilePath "$DownloadedDriverGroup\$((Get-Item $DownloadedDriverPath).BaseName).drvpack" -Force } } #=================================================================================================== # Driver Expand #=================================================================================================== if ($Expand) { Write-Host "Driver Expand: $ExpandedDriverPath " -ForegroundColor Gray -NoNewline if (Test-Path "$ExpandedDriverPath") { Write-Host 'Complete!' -ForegroundColor Cyan } else { Write-Host 'Expanding ...' -ForegroundColor Cyan #Thanks Maurice @ Driver Automation Tool $HPSoftPaqSilentSwitches = "-PDF -F" + "$ExpandedDriverPath" + " -S -E" #Start-Process -FilePath "$DownloadedDriverPath" -ArgumentList $HPSoftPaqSilentSwitches -Verb RunAs -Wait Start-Process -FilePath "$DownloadedDriverPath" -ArgumentList "/s /e /f `"$ExpandedDriverPath`"" -Verb RunAs -Wait } } else { Continue } #=================================================================================================== # Verify Driver Expand #=================================================================================================== if (Test-Path "$ExpandedDriverPath") { <# $NormalizeContent = Get-ChildItem "$ExpandedDriverPath\*\*\*\*\*" -Directory #| Where-Object {($_.Name -match '_A') -and ($_.Name -notmatch '_A00-00')} foreach ($FunkyNameDriver in $NormalizeContent) { $NewBaseName = ($FunkyNameDriver.Name -split '_')[0] Write-Verbose "Renaming '$($FunkyNameDriver.FullName)' to '$($NewBaseName)_A00-00'" -Verbose Rename-Item "$($FunkyNameDriver.FullName)" -NewName "$($NewBaseName)_A00-00" -Force | Out-Null } #> } else { Write-Warning "Driver Expand: Could not expand Driver to $ExpandedDriverPath ... Exiting" Continue } $OSDDriver.OSDStatus = 'Expanded' #=================================================================================================== # OSDDriver Objects #=================================================================================================== #$PackagedDriverGroup = Get-PathOSDD -Path (Join-Path $WorkspaceProject (Join-Path 'HpMultiPack' $CustomName = 'HpMultiPack')) <# if ($SplitGeneration.IsPresent) { $OSDDriverWmiQ = @() Get-ChildItem $PackagedDriverGroup *.clixml | foreach {$OSDDriverWmiQ += Import-Clixml $_.FullName} $OSDDriverWmiQ = $OSDDriverWmiQ | Where-Object {$_.Generation -match $OSDDriver.Generation} $PackagedDriverGroup = Get-PathOSDD -Path (Join-Path $WorkspaceProject (Join-Path 'HpMultiPack' (Join-Path $CustomName = 'HpMultiPack' "Hp $($OSDDriver.Generation)"))) if ($OSDDriverWmiQ) { $OSDDriverWmiQ | Show-OSDWmiQuery | Out-File "$PackagedDriverGroup\WmiQuery.txt" -Force } } #> $OSDDriver | ConvertTo-Json | Out-File -FilePath "$PackagePath\$($OSDDriver.DriverName).drvpack" -Force #=================================================================================================== # MultiPack #=================================================================================================== $MultiPackFiles = @() #=================================================================================================== # Get SourceContent #=================================================================================================== $SourceContent = @() $SourceContent = Get-ChildItem "$ExpandedDriverPath\*\*\*\*\*" -Directory | Select-Object -Property * #=================================================================================================== # Filter SourceContent #=================================================================================================== if ($RemoveAudio.IsPresent) {$SourceContent = $SourceContent | Where-Object {"$($_.Parent.Parent)" -ne 'audio'}} if ($RemoveVideo.IsPresent) {$SourceContent = $SourceContent | Where-Object {"$($_.Parent.Parent)" -ne 'graphics'}} if ($RemoveAmdVideo.IsPresent) {$SourceContent = $SourceContent | Where-Object {"$($_.FullName)" -notmatch '\\graphics\\amd\\'}} if ($RemoveIntelVideo.IsPresent) {$SourceContent = $SourceContent | Where-Object {"$($_.FullName)" -notmatch '\\graphics\\intel\\'}} if ($RemoveNvidiaVideo.IsPresent) {$SourceContent = $SourceContent | Where-Object {"$($_.FullName)" -notmatch '\\graphics\\nvidia\\'}} foreach ($DriverDir in $SourceContent) { $MultiPackFiles += $DriverDir New-MultiPackCabFile "$($DriverDir.FullName)" "$PackagePath\$(($DriverDir.Parent).parent)\$($DriverDir.Parent)" } foreach ($MultiPackFile in $MultiPackFiles) { $MultiPackFile.Name = "$(($MultiPackFile.Parent).Parent)\$($MultiPackFile.Parent)\$($MultiPackFile.Name).cab" } $MultiPackFiles = $MultiPackFiles | Select-Object -ExpandProperty Name $MultiPackFiles | ConvertTo-Json | Out-File -FilePath "$PackagePath\$($DriverName).multipack" -Force #=================================================================================================== # Publish-OSDDriverScripts #=================================================================================================== #Publish-OSDDriverScripts -PublishPath $PackagePath } } else { Return $OSDDrivers } } End { #=================================================================================================== # Publish-OSDDriverScripts #=================================================================================================== Write-Host "Complete!" -ForegroundColor Green #=================================================================================================== } } |