Guest User

Untitled

a guest
Jun 14th, 2018
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.30 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <unattend xmlns="urn:schemas-microsoft-com:unattend">
  3. <settings pass="oobeSystem">
  4. <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">
  5. <InputLocale>EN-GB</InputLocale>
  6. <SystemLocale>EN-GB</SystemLocale>
  7. <UILanguage>EN-GB</UILanguage>
  8. <UILanguageFallback>EN-GB</UILanguageFallback>
  9. <UserLocale>EN-GB</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. <HideLocalAccountScreen>true</HideLocalAccountScreen>
  15. <HideOEMRegistrationScreen>true</HideOEMRegistrationScreen>
  16. <HideOnlineAccountScreens>true</HideOnlineAccountScreens>
  17. <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
  18. <NetworkLocation>Work</NetworkLocation>
  19. <SkipUserOOBE>true</SkipUserOOBE>
  20. <SkipMachineOOBE>true</SkipMachineOOBE>
  21. </OOBE>
  22. <UserAccounts>
  23. <AdministratorPassword>
  24. <Value>derp</Value>
  25. <PlainText>false</PlainText>
  26. </AdministratorPassword>
  27. </UserAccounts>
  28. <RegisteredOrganization>Hiya</RegisteredOrganization>
  29. <TimeZone>(UTC) Dublin, Edinburgh, Lisbon, London</TimeZone>
  30. <FirstLogonCommands>
  31. <SynchronousCommand wcm:action="add">
  32. <Order>2</Order>
  33. <RequiresUserInput>false</RequiresUserInput>
  34. <Description>Installs software to deployed work stations</Description>
  35. <CommandLine>PowerShell -ExecutionPolicy ByPass -File \\test\Software\Windows10Debloater.ps1 -input1 'Sysprep,Debloat,StopEdgePDF'</CommandLine>
  36. </SynchronousCommand>
  37. <SynchronousCommand wcm:action="add">
  38. <Order>3</Order>
  39. <RequiresUserInput>false</RequiresUserInput>
  40. <Description>Installs software to deployed work stations</Description>
  41. <CommandLine>PowerShell -ExecutionPolicy ByPass -File \\test\Software\SoftwareDeploymentWDS.ps1</CommandLine>
  42. </SynchronousCommand>
  43. <SynchronousCommand wcm:action="add">
  44. <Order>1</Order>
  45. <RequiresUserInput>false</RequiresUserInput>
  46. <CommandLine>net use \\test\Software test /USER:test\test</CommandLine>
  47. <Description>net use \\test\Software test /USER:test\test</Description>
  48. </SynchronousCommand>
  49. </FirstLogonCommands>
  50. <AutoLogon>
  51. <Password>
  52. <Value>derp</Value>
  53. <PlainText>false</PlainText>
  54. </Password>
  55. <Username>.\Administrator</Username>
  56. <Enabled>true</Enabled>
  57. </AutoLogon>
  58. </component>
  59. </settings>
  60. <settings pass="specialize">
  61. <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">
  62. <RunSynchronous>
  63. <RunSynchronousCommand wcm:action="add">
  64. <Order>1</Order>
  65. <Path>net user administrator /active:yes</Path>
  66. </RunSynchronousCommand>
  67. </RunSynchronous>
  68. </component>
  69. <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">
  70. <ComputerName>%MACHINENAME%</ComputerName>
  71. <ProductKey>key</ProductKey>
  72. </component>
  73. <component name="Microsoft-Windows-UnattendedJoin" 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">
  74. <Identification>
  75. <UnsecureJoin>false</UnsecureJoin>
  76. <Credentials>
  77. <Username>test</Username>
  78. <Password>test</Password>
  79. <Domain>test.local</Domain>
  80. </Credentials>
  81. <DebugJoin>true</DebugJoin>
  82. <JoinDomain>True</JoinDomain>
  83. </Identification>
  84. </component>
  85. </settings>
  86. <cpi:offlineImage cpi:source="wim:c:/new%20folder/install.wim#Windows 10 Enterprise" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
  87. </unattend>
Add Comment
Please, Sign In to add comment