DEV/Show-AllOSDUpdatess.ps1
$AllOSDUpdates = @() $AllUpdateCatalogs = Get-ChildItem -Path "$PSScriptRoot\*" -Include '*.xml' foreach ($UpdateCatalog in $AllUpdateCatalogs) {$AllOSDUpdates += Import-Clixml -Path "$($UpdateCatalog.FullName)"} $AllOSDUpdates = $AllOSDUpdates | Select-Object -Property * | Sort-Object CreationDate -Descending | Out-GridView -PassThru -Title "All OSDUpdates" Write-Host "" $AllOSDUpdates | Select-Object CreationDate, KBNumber, Title | Format-Table Write-Host "" Pause |