Public/Get-LatestFlash.ps1
Function Get-LatestFlash { <# .SYNOPSIS Get the latest Adobe Flash Player update for Windows. .DESCRIPTION .NOTES Author: Aaron Parker Twitter: @stealthpuppy .LINK https://docs.stealthpuppy.com/latestupdate .EXAMPLE Get-LatestFlash Description: Enumerate the latest Adobe Flash Player update for the support versions of Windows. #> [CmdletBinding(SupportsShouldProcess = $False)] Param() Begin { [String] $Feed = 'https://support.microsoft.com/app/content/api/content/feeds/sap/en-us/6ae59d69-36fc-8e4d-23dd-631d98bf74a9/atom' [regex] $Flash = ".*Adobe Flash Player.*" } Process { # Return the XML from the feed and filter for the Flash updates $xml = Get-UpdateFeed -UpdateFeed $Feed try { # Find the most current date for the update [regex] $rxM = "(\d{4}-\d{2}-\d{2})" $date = $xml.feed.entry | Where-Object { $_.title -match $Flash } | Select-Object -ExpandProperty updated | ` ForEach-Object { Get-RxString -String $_ -RegEx $rxM } | Sort-Object | Select-Object -Last 1 # Return the KB published for that most current date $kbID = $xml.feed.entry | Where-Object { ($_.title -match $Flash) -and ($_.updated -match $date) } | Select-Object -ExpandProperty id ` | ForEach-Object { $_.split(':') | Select-Object -Last 1 } } catch { If ($Null -eq $kbID) { Write-Warning -Message "kbID is Null. Unable to read from the KB from the JSON." } Break } # Get the download link from Windows Update $kbObj = Get-UpdateCatalogLink -KB $kbID If ($Null -ne $kbObj) { # Contruct a table with KB, Id and Update description $idTable = Get-KbUpdateArray -Links $kbObj.Links -KB $kbID # Process the IdTable to get a new array with KB, Architecture, Note and URL for each download $downloadArray = Get-UpdateDownloadArray -IdTable $idTable } } End { # Write the URLs list to the pipeline Write-Output ($downloadArray | Sort-Object -Property Version -Descending) } } |