For the complete documentation index, see llms.txt. This page is also available as Markdown.

OSBuild Task WinPE

To properly add the Language Resources that you need, you have to know what Packages are in the different Windows PE's. OSDBuilder captures this information in a TXT, JSON, and XML format

You can use a similar command

$WinPE = "D:\OSD\OSMedia\Windows 10 Enterprise x64 1903 18362.449\WinPE\info\xml\Get-WindowsPackage-WinPE.xml"
Import-Clixml $WinPE | ? {$_.ReleaseType -like "*LanguagePack*"} | Select -Property PackageName

The following are in are the contents from Windows 10 1903 x64

You will probably have to run this command a few times to build out your Task properly. Here is an example of the Language Packages I had to add to Windows 10 1809

Last updated

Was this helpful?