Advertisement
0utsidethebox

UnattendOOBE

Jul 1st, 2024 (edited)
343
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.06 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!-- https://www.outsidethebox.ms/22491/ -->
  3. <unattend xmlns="urn:schemas-microsoft-com:unattend">
  4.     <settings pass="oobeSystem">
  5.         <component name="Microsoft-Windows-International-Core" 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">
  6.             <InputLocale>en-US; ru-RU</InputLocale>
  7.             <SystemLocale>ru-RU</SystemLocale>
  8.             <UILanguage>en-US</UILanguage>
  9.             <UserLocale>en-US</UserLocale>
  10.         </component>
  11.         <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">
  12.             <OOBE>
  13.                 <HideEULAPage>true</HideEULAPage>
  14.                 <HideOnlineAccountScreens>true</HideOnlineAccountScreens>
  15.                 <ProtectYourPC>3</ProtectYourPC>
  16.                 <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
  17.             </OOBE>
  18.             <UserAccounts>
  19.                 <LocalAccounts>
  20.                     <LocalAccount wcm:action="add">
  21.                         <Group>Administrators</Group>
  22.                         <Name>Admin</Name>
  23.                         <Password>
  24.                             <Value>Admin</Value>
  25.                             <PlainText>true</PlainText>
  26.                         </Password>
  27.                     </LocalAccount>
  28.                 </LocalAccounts>
  29.             </UserAccounts>
  30.            <AutoLogon>
  31.                 <Password>
  32.                     <Value>Admin</Value>
  33.                     <PlainText>true</PlainText>
  34.                 </Password>
  35.                 <Username>Admin</Username>
  36.                 <LogonCount>1</LogonCount>
  37.                 <Enabled>true</Enabled>
  38.             </AutoLogon>
  39.         </component>
  40.     </settings>
  41. </unattend>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement