Advertisement
Guest User

Untitled

a guest
Dec 13th, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.45 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <unattend xmlns="urn:schemas-microsoft-com:unattend"
  3. xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
  4. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  5. <settings pass="generalize">
  6. <component name="Microsoft-Windows-PnpSysprep"
  7. processorArchitecture="amd64"
  8. publicKeyToken="31bf3856ad364e35"
  9. language="neutral" versionScope="nonSxS">
  10. <PersistAllDeviceInstalls>true</PersistAllDeviceInstalls>
  11. </component>
  12. </settings>
  13. <settings pass="specialize">
  14. <component name="Microsoft-Windows-Deployment"
  15. processorArchitecture="amd64"
  16. publicKeyToken="31bf3856ad364e35"
  17. language="neutral" versionScope="nonSxS">
  18. <RunSynchronous>
  19. <RunSynchronousCommand wcm:action="add">
  20. <Description>Disable create user account</Description>
  21. <Path>reg add HKLM\Software\Microsoft\Windows\CurrentVersion\Setup\OOBE /v UnattendCreatedUser /t REG_DWORD /d 1 /f</Path>
  22. <Order>1</Order>
  23. </RunSynchronousCommand>
  24. </RunSynchronous>
  25. </component>
  26. <component name="Microsoft-Windows-Shell-Setup"
  27. processorArchitecture="amd64"
  28. publicKeyToken="31bf3856ad364e35"
  29. language="neutral" versionScope="nonSxS">
  30. <RegisteredOwner>Echo Devops</RegisteredOwner>
  31. <RegisteredOrganization>Echo Global Logistics</RegisteredOrganization>
  32. <TimeZone>Central Standard Time</TimeZone>
  33. <Computername>*</Computername>
  34. <OOBE>
  35. <HideEULAPage>true</HideEULAPage>
  36. <NetworkLocation>Other</NetworkLocation>
  37. <ProtectYourPC>2</ProtectYourPC>
  38. <SkipUserOOBE>true</SkipUserOOBE>
  39. </OOBE>
  40. </component>
  41. </settings>
  42. <settings pass="oobeSystem">
  43. <component name="Microsoft-Windows-International-Core"
  44. processorArchitecture="amd64"
  45. publicKeyToken="31bf3856ad364e35"
  46. language="neutral" versionScope="nonSxS">
  47. <InputLocale>en-US</InputLocale>
  48. <SystemLocale>en-US</SystemLocale>
  49. <UILanguage>en-US</UILanguage>
  50. <UserLocale>en-US</UserLocale>
  51. </component>
  52. </settings>
  53. </unattend>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement