Skip to content

Instantly share code, notes, and snippets.

@mlemiam
Last active January 26, 2024 01:43
Show Gist options
  • Save mlemiam/a1857465331b630b74ca7f92ff9714ee to your computer and use it in GitHub Desktop.
Save mlemiam/a1857465331b630b74ca7f92ff9714ee to your computer and use it in GitHub Desktop.
Bypass oem auto choosing Windows edition with ventoy
{
"auto_install":[
{
"image":"/ISO/Win11_23H2_French_x64v2.iso",
"template":[
"/script/Windows11_bypass_oem_key_unattend.xml"
]
}
]
}
<?xml version="1.0" encoding="utf-8" ?>
<unattend
xmlns="urn:schemas-microsoft-com:unattend">
<settings pass="windowsPE">
<component name="Microsoft-Windows-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS"
xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<UserData>
<AcceptEula>true</AcceptEula>
<ProductKey>
<Key></Key>
</ProductKey>
</UserData>
</component>
<component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS"
xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<UserData>
<AcceptEula>true</AcceptEula>
<ProductKey>
<Key></Key>
</ProductKey>
</UserData>
</component>
</settings>
</unattend>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment