Advertisement
Guest User

Untitled

a guest
Oct 5th, 2019
591
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 4.04 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <unattend xmlns="urn:schemas-microsoft-com:unattend">
  3.     <settings pass="windowsPE">
  4.         <component name="Microsoft-Windows-International-Core-WinPE" 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">
  5.             <InputLocale>en-US; ru-RU</InputLocale>
  6.             <SystemLocale>en-US</SystemLocale>
  7.             <UILanguage>en-US</UILanguage>
  8.             <UserLocale>en-US</UserLocale>
  9.         </component>
  10.         <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">
  11.             <RunAsynchronous>
  12.                 <RunAsynchronousCommand wcm:action="add">
  13.                     <Order>1</Order>
  14.                     <Path>powercfg -s 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c</Path>
  15.                 </RunAsynchronousCommand>
  16.             </RunAsynchronous>
  17.             <UserData>
  18.                 <ProductKey>
  19.                     <Key>xxxx</Key>
  20.                 </ProductKey>
  21.                 <AcceptEula>true</AcceptEula>
  22.             </UserData>
  23.         </component>
  24.     </settings>
  25.     <settings pass="oobeSystem">
  26.         <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">
  27.             <InputLocale>en-US; ru-RU</InputLocale>
  28.             <SystemLocale>ru-RU</SystemLocale>
  29.             <UILanguage>en-US</UILanguage>
  30.             <UserLocale>en-US</UserLocale>
  31.         </component>
  32.         <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">
  33.             <OOBE>
  34.                 <!-- <ProtectYourPC>3</ProtectYourPC>
  35.                <SkipUserOOBE>true</SkipUserOOBE> -->
  36.                 <HideOnlineAccountScreens>true</HideOnlineAccountScreens>
  37.                 <NetworkLocation>Home</NetworkLocation>
  38.             </OOBE>
  39.         </component>
  40.     </settings>
  41.     <settings pass="specialize">
  42.         <component name="Microsoft-Windows-Deployment" processorArchitecture="wow64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  43.             <RunSynchronous>
  44.                 <RunSynchronousCommand wcm:action="add">
  45.                     <Path>reg add HKLM\SOFTWARE\Policies\Microsoft\Windows\OOBE /v DisablePrivacyExperience /t REG_DWORD /d 1 /f</Path>
  46.                     <Description>Disable privacy</Description>
  47.                     <Order>1</Order>
  48.                 </RunSynchronousCommand>
  49.                 <RunSynchronousCommand wcm:action="add">
  50.                     <Path>reg add HKLM\SOFTWARE\Policies\Microsoft\Windows\System /v EnableActivityFeed /d 0 /t REG_DWORD /f</Path>
  51.                     <Description>Disable Timeline</Description>
  52.                     <Order>2</Order>
  53.                 </RunSynchronousCommand>
  54.                 <RunSynchronousCommand wcm:action="add">
  55.                     <Description>Disable Cortana screen</Description>
  56.                     <Order>3</Order>
  57.                     <Path>reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\OOBE /v DisableVoice /d 1 /t REG_DWORD /f</Path>
  58.                 </RunSynchronousCommand>
  59.             </RunSynchronous>
  60.         </component>
  61.     </settings>
  62.     <cpi:offlineImage cpi:source="wim:c:/iso/sources/install.wim#Windows 10 Pro 1903 x64 RU June" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
  63. </unattend>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement