Public/Update-OSDDriversMultiPack.ps1

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
<#
.SYNOPSIS
Updates MultiPacks
 
.DESCRIPTION
Updates MultiPacks
Requires BITS for downloading the Downloads
Requires Internet access
 
.LINK
https://osddrivers.osdeploy.com/module/functions/update-osddrivermultipack
 
.PARAMETER SaveAudio
 
 
.PARAMETER SaveAmdVideo
 
 
.PARAMETER SaveIntelVideo
 
 
.PARAMETER SaveNvidiaVideo
 
#>

function Update-OSDDriversMultiPack {
    [CmdletBinding()]
    Param (
        #Manufacturer of the Computer Model
        [Parameter (ValueFromPipelineByPropertyName = $true)]
        [ValidateSet ('Dell','HP')]
        [string]$Make,

        #Removes Superseded Drivers from the MultiPack
        [switch]$RemoveSuperseded,

        #Doesn't remove the Audio Drivers from the MultiPack
        [switch]$SaveAudio = $false,

        #Doesn't remove the AMD Video Drivers from the DMultiPack
        [switch]$SaveAmdVideo = $false,
        
        #Doesn't remove the Intel Video Drivers from the MultiPack
        [switch]$SaveIntelVideo = $false,
        
        #Doesn't remove the Nvidia Video Drivers from the MultiPack
        [switch]$SaveNvidiaVideo = $false,

        #Automatically updates all MultiPacks
        [switch]$UpdateAll = $false
    )
    Begin {
        #===================================================================================================
        # Get-OSDDrivers
        #===================================================================================================
        Get-OSDDrivers -CreatePaths -HideDetails
        #===================================================================================================
        # Display Paths
        #===================================================================================================
        Write-Host "Home: $GetOSDDriversHome" -ForegroundColor Gray
        Write-Host "Download: $SetOSDDriversPathDownload" -ForegroundColor Gray
        Write-Host "Expand: $SetOSDDriversPathExpand" -ForegroundColor Gray
        Write-Host "Packages: $SetOSDDriversPathPackages" -ForegroundColor Gray
        Publish-OSDDriverScripts -PublishPath $SetOSDDriversPathPackages
        #===================================================================================================
        # Defaults
        #===================================================================================================
        $Expand = $true

        if ($SaveAudio -eq $false) {Write-Warning "Audio Drivers will be removed from resulting packages"}
        if ($SaveAmdVideo -eq $false) {Write-Warning "AMD Video Drivers will be removed from resulting packages"}
        if ($SaveIntelVideo -eq $false) {Write-Warning "Intel Video Drivers will be removed from resulting packages"}
        if ($SaveNvidiaVideo -eq $false) {Write-Warning "Nvidia Video Drivers will be removed from resulting packages"}

        $AllOSDDrivers = @()
        if ($Make -eq 'Dell') {
            $OSDGroup = 'DellModel'
            $MultiPack = 'DellMultiPack'
            $AllOSDDrivers = Get-OSDDriver DellModel
        } elseif ($Make -eq 'HP') {
            $OSDGroup = 'HpModel'
            $MultiPack = 'HpMultiPack'
            $AllOSDDrivers = Get-OSDDriver HpModel
        } else {
            $OSDGroup = ''
            $MultiPack = 'Multi'
            $AllOSDDrivers = Get-OSDDriver DellModel
            $AllOSDDrivers += Get-OSDDriver HpModel
        }
        #===================================================================================================
        # MultiPacksToUpdate
        #===================================================================================================
        $MultiPacksToUpdate = @()
        $MultiPacksToUpdate = Get-ChildItem $SetOSDDriversPathPackages -Directory
        if ($MultiPack -eq 'DellMultiPack') {$MultiPacksToUpdate = $MultiPacksToUpdate | Where-Object {$_.Name -match 'DellMultiPack'} | Select-Object Name, FullName}
        if ($MultiPack -eq 'HpMultiPack') {$MultiPacksToUpdate = $MultiPacksToUpdate | Where-Object {$_.Name -match 'HpMultiPack'} | Select-Object Name, FullName}
        if ($MultiPack -eq 'Multi') {$MultiPacksToUpdate = $MultiPacksToUpdate | Where-Object {$_.Name -match 'DellMultiPack' -or $_.Name -match 'HpMultiPack'} | Select-Object Name, FullName}
        if ($UpdateAll -eq $false) {
            $MultiPacksToUpdate = $MultiPacksToUpdate | Out-GridView -PassThru -Title 'Select MultiPacks to Update and press OK'
        }
        #===================================================================================================
    }
    Process {
        Write-Verbose '========================================================================================' -Verbose
        Write-Verbose $MyInvocation.MyCommand.Name -Verbose

        #===================================================================================================
        if ($AllOSDDrivers -and $MultiPacksToUpdate) {
            foreach ($UpdateMultiPack in $MultiPacksToUpdate) {
                #===================================================================================================
                # Get DRVPACKS
                #===================================================================================================
                $PackagePath = $UpdateMultiPack.FullName
                Write-Host "MultiPack: $PackagePath" -ForegroundColor Green
                Publish-OSDDriverScripts -PublishPath $PackagePath

                $DrvPacks = Get-ChildItem $PackagePath *.drvpack | Select-Object FullName
                $DriverPacks = @()
                $DriverPacks = foreach ($item in $DrvPacks) {
                    Get-Content $item.FullName | ConvertFrom-Json
                }
                $DriverPacks = $DriverPacks | Sort-Object DriverGrouping -Descending -Unique
                #===================================================================================================
                # Get OSDDrivers
                #===================================================================================================
                $OSDDrivers = @()
                $OSDDrivers = $AllOSDDrivers
                $OSDDrivers = $OSDDrivers.Where({$_.DriverGrouping -in $DriverPacks.DriverGrouping})
                Get-ChildItem $PackagePath *.clixml | foreach {Remove-Item -Path $_.FullName -Force | Out-Null}
                #===================================================================================================
                # 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)

                    $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 ($UpdateMultiPack.Name -match 'x86') {$OsArch = 'x86'}
                else {$OsArch = 'x64'}
                #===================================================================================================
                # Generate WMI
                #===================================================================================================
                $OSDDrivers | Export-Clixml "$(Join-Path $PackagePath 'OSDMultiPack.clixml')"
                $OSDDriverWmiQ = @()
                Get-ChildItem $PackagePath *.clixml | foreach {$OSDDriverWmiQ += Import-Clixml $_.FullName}
                if ($OSDDriverWmiQ) {
                    if ($OSDGroup -match 'DellModel') {
                        $OSDDriverWmiQ | Get-OSDDriverWmiQ -OSDGroup DellModel -Result Model | Out-File "$PackagePath\WmiQuery.txt" -Force
                        $OSDDriverWmiQ | Get-OSDDriverWmiQ -OSDGroup DellModel -Result SystemId | Out-File "$PackagePath\WmiQuerySystemId.txt" -Force
                    }
                    if ($OSDGroup -match 'HpModel') {
                        $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
                #===================================================================================================
                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 Cyan
                    #===================================================================================================
                    # 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"
                    }
                    #===================================================================================================
                    # Validate Driver Download
                    #===================================================================================================
                    if (-not (Test-Path "$DownloadedDriverPath")) {
                        Write-Warning "Could not download Driver from $DriverUrl"
                        Write-Warning "Setting RemoveSuperseded to False"
                        $RemoveSuperseded = $false
                        Continue
                    } else {
                        $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
                            if ($DownloadFile -match '.zip') {
                                Expand-Archive -Path "$DownloadedDriverPath" -DestinationPath "$ExpandedDriverPath" -Force -ErrorAction Stop
                            }
                            if ($DownloadFile -match '.cab') {
                                if (-not (Test-Path "$ExpandedDriverPath")) {
                                    New-Item "$ExpandedDriverPath" -ItemType Directory -Force -ErrorAction Stop | Out-Null
                                }
                                Expand -R "$DownloadedDriverPath" -F:* "$ExpandedDriverPath" | Out-Null
                            }
                            if ($DownloadFile -match '.exe') {
                                #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") {
                        if ($OSDGroup -eq 'DellModel') {
                            $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'
                    #===================================================================================================
                    # Generate DRVPACK
                    #===================================================================================================
                    $OSDDriver | ConvertTo-Json | Out-File -FilePath "$ExpandedDriverPath\$($OSDDriver.DriverName).drvpack" -Force
                    $OSDDriver | ConvertTo-Json | Out-File -FilePath "$PackagePath\$($OSDDriver.DriverName).drvpack" -Force
                    #===================================================================================================
                    # MultiPack
                    #===================================================================================================
                    $MultiPackFiles = @()
                    $SourceContent = @()
                    if ($OSDGroup -eq 'DellModel') {
                        if ($OsArch -eq 'x86') {
                            $SourceContent = Get-ChildItem "$ExpandedDriverPath\*\*\x86\*\*" -Directory | Select-Object -Property *
                        } else {
                            $SourceContent = Get-ChildItem "$ExpandedDriverPath\*\*\x64\*\*" -Directory | Select-Object -Property *
                        }
                    }
                    if ($OSDGroup -eq 'HpModel') {
                        $SourceContent = Get-ChildItem "$ExpandedDriverPath\*\*\*\*\*" -Directory | Select-Object -Property *
                    }
                    #===================================================================================================
                    # Dell
                    #===================================================================================================
                    if ($OSDGroup -eq 'DellModel') {
                        if ($SaveAudio -eq $false) {$SourceContent = $SourceContent | Where-Object {$_.FullName -notmatch '\\Audio\\'}}
                        #if ($RemoveVideo.IsPresent) {$SourceContent = $SourceContent | Where-Object {$_.FullName -notmatch '\\Video\\'}}
                        foreach ($DriverDir in $SourceContent) {
                            if ($SaveAmdVideo -eq $false) {
                                if (($DriverDir.FullName -match '\\Video\\') -and (Get-ChildItem "$($DriverDir.FullName)" ati*.dl* -File -Recurse)) {
                                    Write-Host "AMDDisplay: $($DriverDir.FullName)" -ForegroundColor Gray
                                    Continue
                                }
                            }
                            if ($SaveNvidiaVideo -eq $false) {
                                if (($DriverDir.FullName -match '\\Video\\') -and (Get-ChildItem "$($DriverDir.FullName)" nv*.dl* -File -Recurse)) {
                                    Write-Host "NvidiaDisplay: $($DriverDir.FullName)" -ForegroundColor Gray
                                    Continue
                                }
                            }
                            if ($SaveIntelVideo -eq $false) {
                                if (($DriverDir.FullName -match '\\Video\\') -and (Get-ChildItem "$($DriverDir.FullName)" igfx*.* -File -Recurse)) {
                                    Write-Host "IntelDisplay: $($DriverDir.FullName)" -ForegroundColor Gray
                                    Continue
                                }
                            }
                            $MultiPackFiles += $DriverDir
                            if ($SaveIntelVideo -eq $true) {
                                New-MultiPackCabFile "$($DriverDir.FullName)" "$PackagePath\$(($DriverDir.Parent).parent)\$($DriverDir.Parent)"
                            } else {
                                New-MultiPackCabFile "$($DriverDir.FullName)" "$PackagePath\$(($DriverDir.Parent).parent)\$($DriverDir.Parent)" $true
                            }
                        }
                    }
                    #===================================================================================================
                    # HP
                    #===================================================================================================
                    if ($OSDGroup -eq 'HpModel') {
                        if ($SaveAudio -eq $false) {$SourceContent = $SourceContent | Where-Object {"$($_.Parent.Parent)" -ne 'audio'}}
                        #if ($RemoveVideo.IsPresent) {$SourceContent = $SourceContent | Where-Object {"$($_.Parent.Parent)" -ne 'graphics'}}
                        if ($SaveAmdVideo -eq $false) {$SourceContent = $SourceContent | Where-Object {"$($_.FullName)" -notmatch '\\graphics\\amd\\'}}
                        if ($SaveIntelVideo -eq $false) {$SourceContent = $SourceContent | Where-Object {"$($_.FullName)" -notmatch '\\graphics\\intel\\'}}
                        if ($SaveNvidiaVideo -eq $false) {$SourceContent = $SourceContent | Where-Object {"$($_.FullName)" -notmatch '\\graphics\\nvidia\\'}}
                        foreach ($DriverDir in $SourceContent) {
                            $MultiPackFiles += $DriverDir
                            New-MultiPackCabFile "$($DriverDir.FullName)" "$PackagePath\$(($DriverDir.Parent).parent)\$($DriverDir.Parent)"
                        }
                    }
                    #===================================================================================================
                    # Publish Objects
                    #===================================================================================================
                    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 -PublishPath $PackagePath
                }
                #===================================================================================================
                # Get ALL DRVPACK Files
                #===================================================================================================
                $AllDrvPack = Get-ChildItem $PackagePath *.drvpack | Select-Object FullName
                #===================================================================================================
                # Remove Superseded MultiPacks
                #===================================================================================================
                $AllDriverPacks = @()
                $AllDriverPacks = foreach ($Item in $AllDrvPack) {
                    Get-Content $Item.FullName | ConvertFrom-Json
                }
                $AllDriverPacks = $AllDriverPacks | Sort-Object DriverName -Descending

                $CurrentDriverPacks = @()
                $CurrentDriverPacks = $AllDriverPacks | Sort-Object DriverGrouping -Descending -Unique

                foreach ($Item in $AllDriverPacks | Where-Object {$_.DriverName -NotIn $CurrentDriverPacks.DriverName}) {
                    Write-Warning "Superseded Driver Pack: $($Item.DriverName)"
                    if ($RemoveSuperseded.IsPresent) {
                        if (Test-Path "$PackagePath\$($Item.DriverName).*pack") {
                            Remove-Item -Path "$PackagePath\$($Item.DriverName).*pack" -Force | Out-Null
                        }
                    }
                }
                #===================================================================================================
                # Get ALL MULTIPACK Files
                #===================================================================================================
                $AllMultiPacks = Get-ChildItem $PackagePath *.multipack | Select-Object FullName
                $CurrentMPCabs = @()
                foreach ($Item in $AllMultiPacks) {
                    $CurrentMPCabs += Get-Content $Item.FullName | ConvertFrom-Json -ErrorAction SilentlyContinue
                }
                $CurrentMPCabs = $CurrentMPCabs | Sort-Object -Unique
                $CurrentMPCabsFN = @()
                foreach ($Item in $CurrentMPCabs) {
                    $CurrentMPCabsFN += "$PackagePath\$Item"
                }
                #===================================================================================================
                # Get ALL $PackagePath CAB Files
                #===================================================================================================
                $AllMPCabs = Get-ChildItem $PackagePath *.cab -Recurse | Select-Object FullName
                #===================================================================================================
                # Remove Superseded CAB Files
                #===================================================================================================
                foreach ($Item in $AllMPCabs | Where-Object {$_.FullName -NotIn $CurrentMPCabsFN}) {
                    Write-Warning "Superseded Driver CAB: $($Item.FullName)"
                    if ($RemoveSuperseded.IsPresent) {
                        if (Test-Path "$($Item.FullName)") {
                            $RemoveCab = Get-Item $Item.FullName | Select-Object -Property *
                            Remove-Item $RemoveCab.FullName -Force -ErrorAction SilentlyContinue | Out-Null
                        }
                        if (Test-Path "$($RemoveCab.Directory)\$($RemoveCab.BaseName).ddf") {
                            Write-Warning "Superseded Driver Directive: $($RemoveCab.Directory)\$($RemoveCab.BaseName).ddf"
                            Remove-Item -Path "$($RemoveCab.Directory)\$($RemoveCab.BaseName).ddf" -Force -ErrorAction SilentlyContinue | Out-Null
                        }
                    }
                }
            }
        }
    }
    End {
        #===================================================================================================
        # Publish-OSDDriverScripts
        #===================================================================================================
        Write-Host "Complete!" -ForegroundColor Green
        #===================================================================================================
    }







}