OSDUpdate
OSDUpdate copied to clipboard
PowerShell Module
Building Windows images on Linux using Packer. Tried using OSDUpdate which looks like a really nice util but is stuck upon it being based on Start-BitsTransfer from the BitsTransfer module....
I cannot use the Catalog Argument 'Windows 10 LTSB'. I found the Windows 10 LTSB.xml in the Catalog Folder but not inside the Get-OSDSUS.ps1
Updated the destination msp files with -kbnumber.msp so no non-superseded updates go missing.
`Get-OSDUpdate | ? {$_.UpdateOS -eq 'Windows 10' -and $_.UpdateArch -EQ 'x64' -and $_.UpdateBuild -eq '22H2' -and $_.IsSuperseded -eq $false } | FT ` `Get-OSDUpdate | ? {$_.UpdateOS -eq 'Windows 11'...
I'm currently trying to automate my offline servicing for Windows 10 21H2 and Windows 11 22H2. All the Windows 10 updates I need are showing up as expected, but it...