Public/Functions/Catalog/Get-OSDCatalogIntelEthernetDriver.ps1
<#
.SYNOPSIS Returns a Intel Wireless Driver Object .DESCRIPTION Returns a Intel Wireless Driver Object .LINK https://osddrivers.osdeploy.com #> function Get-OSDCatalogIntelEthernetDriver { [CmdletBinding()] param () #================================================= # Uri #================================================= $Uri = 'https://www.intel.com/content/www/us/en/download/15084/intel-ethernet-adapter-complete-driver-pack.html' #================================================= # Import Base Catalog #================================================= $OSDCatalog = Get-Content -Path "$($MyInvocation.MyCommand.Module.ModuleBase)\Catalogs\OSDCatalog\OSDCatalogIntelEthernetDriver.json" -Raw | ConvertFrom-Json #================================================= # Online #================================================= if (Test-WebConnection $Uri) { Write-Verbose "Catalog is Online" #All Drivers are from the same URL $OSDCatalog = $OSDCatalog | Select-Object -First 1 #================================================= # ForEach #================================================= $ZipFileResults = @() $DriverResults = @() $DriverResults = foreach ($OSDCatalogItem in $OSDCatalog) { #Write-Verbose "$($OSDCatalogItem.DriverGrouping) $($OSDCatalogItem.OsArch)" -Verbose #Write-Verbose " $($OSDCatalogItem.DriverInfo)" -Verbose #================================================= # WebRequest #================================================= $DriverInfoWebRequest = Invoke-WebRequest -Uri $OSDCatalogItem.DriverInfo -Method Get -UseBasicParsing $DriverInfoWebRequestContent = $DriverInfoWebRequest.Content $DriverInfoHTML = $DriverInfoWebRequest.ParsedHtml.childNodes | Where-Object {$_.nodename -eq 'HTML'} $DriverInfoHEAD = $DriverInfoHTML.childNodes | Where-Object {$_.nodename -eq 'HEAD'} $DriverInfoMETA = $DriverInfoHEAD.childNodes | Where-Object {$_.nodename -like "meta*"} | Select-Object -Property Name, Content $OSCompatibility = $DriverInfoMETA | Where-Object {$_.name -eq 'DownloadOSes'} | Select-Object -ExpandProperty Content Write-Verbose " $OSCompatibility" #================================================= # Driver Filter #================================================= $ZipFileResults = @($DriverInfoWebRequestContent -split " " -split '"' -match 'http' -match "downloadmirror" -match ".zip") $ZipFileResults = $ZipFileResults | Select-Object -Unique #================================================= # Driver Details #================================================= foreach ($DriverZipFile in $ZipFileResults) { Write-Verbose " $DriverZipFile" #================================================= # Defaults #================================================= $OSDVersion = $(Get-Module -Name OSD | Sort-Object Version | Select-Object Version -Last 1).Version $LastUpdate = [datetime] $(Get-Date) $OSDStatus = $null $OSDGroup = 'IntelEthernet' $OSDType = 'Driver' $DriverName = $null $DriverVersion = $null $DriverReleaseId = $null $DriverGrouping = $null $OsVersion = '10.0' $OsArch = 'x64' $OsBuildMax = @() $OsBuildMin = @() $Make = @() $MakeNe = @() $MakeLike = @() $MakeNotLike = @() $MakeMatch = @() $MakeNotMatch = @() $Generation = $null $SystemFamily = $null $Model = @() $ModelNe = @() $ModelLike = @() $ModelNotLike = @() $ModelMatch = @() $ModelNotMatch = @() $SystemSku = @() $SystemSkuNe = @() $DriverBundle = $null $DriverWeight = 100 $DownloadFile = $null $SizeMB = $null $DriverUrl = $null $DriverInfo = $OSDCatalogItem.DriverInfo $DriverDescription = $null $Hash = $null $OSDGuid = $(New-Guid) #================================================= # LastUpdate #================================================= #$LastUpdateRaw = $DriverInfoMETA | Where-Object {$_.name -eq 'LastUpdate'} | Select-Object -ExpandProperty Content #$LastUpdate = [datetime]::ParseExact($LastUpdateRaw, "MM/dd/yyyy HH:mm:ss", $null) $LastUpdateRaw = $DriverInfoMETA | Where-Object {$_.name -eq 'LastUpdate'} | Select-Object -ExpandProperty Content Write-Verbose "LastUpdateRaw: $LastUpdateRaw" $LastUpdateSplit = ($LastUpdateRaw -split (' '))[0] Write-Verbose "LastUpdateSplit: $LastUpdateSplit" $LastUpdate = [datetime]::Parse($LastUpdateSplit) Write-Verbose "LastUpdate: $LastUpdate" #================================================= # DriverUrl #================================================= $DriverUrl = $DriverZipFile $DownloadFile = Split-Path $DriverUrl -Leaf #================================================= # DriverVersion #================================================= $DriverVersion = ($DownloadFile -split '.zip')[0] $DriverVersion = $DriverVersion -replace '_', '.' #================================================= # Values #================================================= $DriverGrouping = $OSDCatalogItem.DriverGrouping $DriverName = "$DriverGrouping $OsArch $DriverVersion $OsVersion" $DriverDescription = $DriverInfoMETA | Where-Object {$_.name -eq 'Description'} | Select-Object -ExpandProperty Content $OSDPnpClass = 'Net' $OSDPnpClassGuid = '{4D36E972-E325-11CE-BFC1-08002BE10318}' #================================================= # Create Object #================================================= $ObjectProperties = @{ OSDVersion = [string] $OSDVersion LastUpdate = [datetime] $LastUpdate OSDStatus = [string] $OSDStatus OSDType = [string] $OSDType OSDGroup = [string] $OSDGroup DriverName = [string] $DriverName DriverVersion = [string] $DriverVersion DriverReleaseId = [string] $DriverReleaseID OperatingSystem = [string[]] $OperatingSystem OsVersion = [string[]] $OsVersion OsArch = [string[]] $OsArch OsBuildMax = [string] $OsBuildMax OsBuildMin = [string] $OsBuildMin Make = [string[]] $Make MakeNe = [string[]] $MakeNe MakeLike = [string[]] $MakeLike MakeNotLike = [string[]] $MakeNotLike MakeMatch = [string[]] $MakeMatch MakeNotMatch = [string[]] $MakeNotMatch Generation = [string] $Generation SystemFamily = [string] $SystemFamily Model = [string[]] $Model ModelNe = [string[]] $ModelNe ModelLike = [string[]] $ModelLike ModelNotLike = [string[]] $ModelNotLike ModelMatch = [string[]] $ModelMatch ModelNotMatch = [string[]] $ModelNotMatch SystemSku = [string[]] $SystemSku SystemSkuNe = [string[]] $SystemSkuNe SystemFamilyMatch = [string[]] $SystemFamilyMatch SystemFamilyNotMatch = [string[]] $SystemFamilyNotMatch SystemSkuMatch = [string[]] $SystemSkuMatch SystemSkuNotMatch = [string[]] $SystemSkuNotMatch DriverGrouping = [string] $DriverGrouping DriverBundle = [string] $DriverBundle DriverWeight = [int] $DriverWeight DownloadFile = [string] $DownloadFile SizeMB = [int] $SizeMB DriverUrl = [string] $DriverUrl DriverInfo = [string] $DriverInfo DriverDescription = [string] $DriverDescription Hash = [string] $Hash OSDGuid = [string] $OSDGuid OSDPnpClass = [string] $OSDPnpClass OSDPnpClassGuid = [string] $OSDPnpClassGuid } New-Object -TypeName PSObject -Property $ObjectProperties } } } #================================================= # Offline #================================================= else { Write-Verbose "Catalog is Offline" $DriverResults = $OSDCatalog } #================================================= # Remove Duplicates #================================================= $DriverResults = $DriverResults | Sort-Object DriverUrl -Unique #================================================= # Select-Object #================================================= $DriverResults = $DriverResults | Select-Object OSDVersion, LastUpdate, OSDStatus, OSDType, OSDGroup,` DriverName, DriverVersion,` OsVersion, OsArch,` DriverGrouping,` DownloadFile, DriverUrl, DriverInfo, DriverDescription,` OSDGuid,` OSDPnpClass, OSDPnpClassGuid #================================================= # Sort-Object #================================================= $DriverResults = $DriverResults | Sort-Object -Property LastUpdate -Descending $DriverResults | ConvertTo-Json | Out-File "$env:TEMP\OSDCatalogIntelEthernetDriver.json" #================================================= # Filter #================================================= switch ($CompatArch) { 'x64' {$DriverResults = $DriverResults | Where-Object {$_.OSArch -match 'x64'}} 'x86' {$DriverResults = $DriverResults | Where-Object {$_.OSArch -match 'x86'}} } switch ($CompatOS) { 'Win7' {$DriverResults = $DriverResults | Where-Object {$_.OsVersion -match '6.0'}} 'Win8' {$DriverResults = $DriverResults | Where-Object {$_.OsVersion -match '6.3'}} 'Win10' {$DriverResults = $DriverResults | Where-Object {$_.OsVersion -match '10.0'}} } #================================================= # Return #================================================= Return $DriverResults #================================================= } |