Created
April 23, 2019 20:12
-
-
Save bocajspear1/36519e2b6612131e2478ce90e550894a to your computer and use it in GitHub Desktop.
Unattend file for sysprep that doesn't ask for new computer name and username. From https://superuser.com/a/1312533.
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"?> | |
| <unattend xmlns="urn:schemas-microsoft-com:unattend"> | |
| <settings pass="oobeSystem"> | |
| <component name="Microsoft-Windows-Shell-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"> | |
| <OOBE> | |
| <SkipMachineOOBE>true</SkipMachineOOBE> | |
| <SkipUserOOBE>true</SkipUserOOBE> | |
| </OOBE> | |
| </component> | |
| </settings> | |
| </unattend> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment