Created
November 7, 2024 15:28
-
-
Save mkorvas/3cc543f9256949282330286358428af9 to your computer and use it in GitHub Desktop.
Tweak for installing Windows 11 on Framework Laptop 16 DIY Edition
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <!-- Created based on Rufus source code (see esp. https://github.com/pbatard/rufus/blob/master/src/wue.c) | |
| and consulting an example from Ventoy (https://www.ventoy.net/download/unattended.xml). --> | |
| <unattend xmlns="urn:schemas-microsoft-com:unattend"> | |
| <settings pass="windowsPE"> | |
| <component name="Microsoft-Windows-Setup" processorArchitecture="amd64" language="neutral" | |
| xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| publicKeyToken="31bf3856ad364e35" versionScope="nonSxS"> | |
| <UserData> | |
| <ProductKey> | |
| <Key /> | |
| </ProductKey> | |
| </UserData> | |
| </component> | |
| </settings> | |
| <settings pass="specialize"> | |
| <component name="Microsoft-Windows-Deployment" processorArchitecture="amd64" language="neutral" | |
| xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| publicKeyToken="31bf3856ad364e35" versionScope="nonSxS"> | |
| <RunSynchronous> | |
| <RunSynchronousCommand wcm:action="add"> | |
| <Order>1</Order> | |
| <Path>reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\OOBE /v BypassNRO /t REG_DWORD /d 1 /f</Path> | |
| </RunSynchronousCommand> | |
| </RunSynchronous> | |
| </component> | |
| </settings> | |
| </unattend> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment