Team OS : Your Only Destination To Custom OS !!

Welcome to TeamOS Community, Register or Login to the Community to Download Torrents, Get Access to Shoutbox, Post Replies, Use Search Engine and many more features. Register Today!

Locked Autounattend.xml

nassernody

Member
Downloaded
180 GB
Uploaded
122.4 GB
Ratio
0.68
Seedbonus
2,109
Upload Count
0 (0)
Member for 7 years
can anyone please help me to make autounattend file to let me go to audit mode because all autounattend files skip this step
or if anyone have ready files gives me link because i cant make it by my self because i don't know what i remove from answer files about choose region
 

Gorstak

✅ Verified Member
Member
Downloaded
291.2 GB
Uploaded
112.7 GB
Ratio
0.39
Seedbonus
923
Upload Count
0 (0)
Member for 5 years
don't use it at all. Press ctrl + shift + F3 at country screen. If you're already in windows, press windows key + r and type in sysprep, then execute sysprep.exe and boot into audit mode. Note that some custom iso's have sysprep removed.
 

nassernody

Member
Downloaded
180 GB
Uploaded
122.4 GB
Ratio
0.68
Seedbonus
2,109
Upload Count
0 (0)
Member for 7 years
don't use it at all. Press ctrl + shift + F3 at country screen
bro i have modified iso so its came with autounattend file in side iso so i remove it and make new iso without is to enter audit mode but when i nstall it in vmware to enter audit mode and add my personal apps it give me error when i get the step of windows key so i want to make answer file without skipping country screen and im not that PRO to do it
 

Gorstak

✅ Verified Member
Member
Downloaded
291.2 GB
Uploaded
112.7 GB
Ratio
0.39
Seedbonus
923
Upload Count
0 (0)
Member for 5 years
It will immediately go to country screen if you don't setup keyboard country and rest and you don't skip user oobe in unattend.xml
 

Gorstak

✅ Verified Member
Member
Downloaded
291.2 GB
Uploaded
112.7 GB
Ratio
0.39
Seedbonus
923
Upload Count
0 (0)
Member for 5 years
You can use ntlite to mount iso and configure it's unattend options
 

Proteus

acta non verba
⚡OS Master
Uploader
Power User
Windows Modifier
✅ Verified Member
Member
Downloaded
207 GB
Uploaded
35.2 TB
Ratio
174.13
Seedbonus
34,503
Upload Count
217 (229)
Member for 5 years
Use this and make your own. Play with the different settings. THIS is just a basic AUTOUNATTEND.XML generator, but it works. ONLY thing missing (for me) is the COPY PROFILE (which I use).

Code:
https://schneegans.de/windows/unattend-generator/
 

Jerry_Xristos

🤴 Super Admin
Downloaded
195.6 GB
Uploaded
67.8 TB
Ratio
354.83
Seedbonus
3,885,917
Upload Count
366 (418)
Member for 9 years
bro i have modified iso so its came with autounattend file in side iso so i remove it and make new iso without is to enter audit mode but when i nstall it in vmware to enter audit mode and add my personal apps it give me error when i get the step of windows key so i want to make answer file without skipping country screen and im not that PRO to do it
Check if you have included the autounattend.xml inside the boot.wim or install.wim file.
If you have thats why you are having that issue.
Also use this to genarate yours
Code:
https://www.windowsafg.com/win10x86_x64_uefi.html
 

nassernody

Member
Downloaded
180 GB
Uploaded
122.4 GB
Ratio
0.68
Seedbonus
2,109
Upload Count
0 (0)
Member for 7 years
Check if you have included the autounattend.xml inside the boot.wim or install.wim file.
If you have thats why you are having that issue.
Also use this to genarate yours
Code:
https://www.windowsafg.com/win10x86_x64_uefi.html
This is my personal autounattend.xml file
what i have to remove to don't skip country step with ctrl + shift + F3
im sorry im not Pro like you

<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
<settings pass="oobeSystem">
<component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm=" " xmlns:xsi=" ">
<InputLocale>0409:00000409</InputLocale>
<SystemLocale>en-US</SystemLocale>
<UILanguage>en-US</UILanguage>
<UILanguageFallback>en-US</UILanguageFallback>
<UserLocale>en-US</UserLocale>
</component>
<component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm=" " xmlns:xsi=" ">
<TimeZone>Egypt Standard Time</TimeZone>
<AutoLogon>
<Enabled>true</Enabled>
<LogonCount>9999999</LogonCount>
<Username>Administrator</Username>
<Password>
<PlainText>true</PlainText>
<Value></Value>
</Password>
</AutoLogon>
<OOBE>
<HideEULAPage>true</HideEULAPage>
<HideLocalAccountScreen>true</HideLocalAccountScreen>
<HideOnlineAccountScreens>true</HideOnlineAccountScreens>
<HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
<NetworkLocation>Home</NetworkLocation>
<ProtectYourPC>3</ProtectYourPC>
<SkipMachineOOBE>true</SkipMachineOOBE>
<SkipUserOOBE>true</SkipUserOOBE>
</OOBE>
<UserAccounts>
<AdministratorPassword>
<PlainText>true</PlainText>
<Value></Value>
</AdministratorPassword>
<LocalAccounts>
<LocalAccount wcm:action="add">
<DisplayName>Nasser</DisplayName>
<Group>Administrators</Group>
<Name>Administrator</Name>
<Password>
<PlainText>true</PlainText>
<Value></Value>
</Password>
</LocalAccount>
</LocalAccounts>
</UserAccounts>
</component>
</settings>
<settings pass="specialize">
<component name="Microsoft-Windows-Deployment" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm=" " xmlns:xsi=" ">
<RunSynchronous>
<RunSynchronousCommand wcm:action="add">
<Order>2</Order>
<Path>net user Administrator /fullname:"Nasser"</Path>
<WillReboot>Never</WillReboot>
</RunSynchronousCommand>
<RunSynchronousCommand wcm:action="add">
<Order>1</Order>
<Path>net user Administrator /active:Yes</Path>
<WillReboot>Never</WillReboot>
</RunSynchronousCommand>
</RunSynchronous>
</component>
<component name="Microsoft-Windows-Security-SPP-UX" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm=" " xmlns:xsi=" ">
<SkipAutoActivation>true</SkipAutoActivation>
</component>
<component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm=" " xmlns:xsi=" ">
<ComputerName>Nasser</ComputerName>
</component>
<component name="Microsoft-Windows-UnattendedJoin" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm=" " xmlns:xsi=" ">
<Identification>
<JoinWorkgroup>WORKGROUP</JoinWorkgroup>
</Identification>
</component>
</settings>
<settings pass="windowsPE">
<component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm=" " xmlns:xsi=" ">
<InputLocale>0409:00000409</InputLocale>
<SystemLocale>en-US</SystemLocale>
<UILanguage>en-US</UILanguage>
<UILanguageFallback>en-US</UILanguageFallback>
<UserLocale>en-US</UserLocale>
<SetupUILanguage>
<UILanguage>en-US</UILanguage>
</SetupUILanguage>
</component>
<component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm=" " xmlns:xsi=" ">
<Diagnostics>
<OptIn>false</OptIn>
</Diagnostics>
<DynamicUpdate>
<Enable>false</Enable>
<WillShowUI>OnError</WillShowUI>
</DynamicUpdate>
<ImageInstall>
<OSImage>
<WillShowUI>OnError</WillShowUI>
<InstallFrom>
<MetaData wcm:action="add">
<Key>/IMAGE/NAME</Key>
<Value>Windows 10 Pro</Value>
</MetaData>
</InstallFrom>
</OSImage>
</ImageInstall>
<UserData>
<AcceptEula>true</AcceptEula>
<ProductKey>
<Key></Key>
</ProductKey>
</UserData>
</component>
</settings>
</unattend>
 

Gorstak

✅ Verified Member
Member
Downloaded
291.2 GB
Uploaded
112.7 GB
Ratio
0.39
Seedbonus
923
Upload Count
0 (0)
Member for 5 years
just the skipuseroobe need to be removed
 

Proteus

acta non verba
⚡OS Master
Uploader
Power User
Windows Modifier
✅ Verified Member
Member
Downloaded
207 GB
Uploaded
35.2 TB
Ratio
174.13
Seedbonus
34,503
Upload Count
217 (229)
Member for 5 years
Here's my ENTIRE file (i use for every build)....

<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
<settings pass="specialize">
<component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm=" " xmlns:xsi=" ">
<CopyProfile>true</CopyProfile>
</component>
</settings>
</unattend>
 

Jerry_Xristos

🤴 Super Admin
Downloaded
195.6 GB
Uploaded
67.8 TB
Ratio
354.83
Seedbonus
3,885,917
Upload Count
366 (418)
Member for 9 years
@nassernody
Try this one


<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
<settings pass="windowsPE">
<component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm=" " xmlns:xsi=" ">
<DynamicUpdate>
<WillShowUI>OnError</WillShowUI>
</DynamicUpdate>
<ImageInstall>
<OSImage>
<Compact>true</Compact>
<WillShowUI>OnError</WillShowUI>
<InstallFrom>
<MetaData wcm:action="add">
<Key>/IMAGE/NAME</Key>
<Value>Windows 10 Pro</Value>
</MetaData>
</InstallFrom>
</OSImage>
</ImageInstall>
<UserData>
<ProductKey>
<Key></Key>
</ProductKey>
</UserData>
</component>
</settings>
</unattend>


You can remove the Dynamic update and the compact option if you don't wanted
 
Last edited:
Top