Advertisement
new23d

sysprep.w7

Jan 28th, 2013
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.54 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="x86" 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="x86" 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.                 <NetworkLocation>Work</NetworkLocation>
  15.                 <ProtectYourPC>3</ProtectYourPC>
  16.                 <SkipUserOOBE>true</SkipUserOOBE>
  17.                 <SkipMachineOOBE>true</SkipMachineOOBE>
  18.             </OOBE>
  19.             <TimeZone>GMT Standard Time</TimeZone>
  20.         </component>
  21.     </settings>
  22.     <settings pass="specialize">
  23.         <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  24.             <ComputerName>$ComputerName$</ComputerName>
  25.         </component>
  26.         <component name="Microsoft-Windows-UnattendedJoin" processorArchitecture="x86" 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.             <Identification>
  28.                 <Credentials>
  29.                     <Domain>$JoinDomain$</Domain>
  30.                     <Password>$DomainAdminPassword$</Password>
  31.                     <Username>$DomainAdmin$</Username>
  32.                 </Credentials>
  33.                 <DebugJoin>true</DebugJoin>
  34.                 <JoinDomain>$JoinDomain$</JoinDomain>
  35.             </Identification>
  36.         </component>
  37.     </settings>
  38.     <cpi:offlineImage cpi:source="catalog:d:/sources/install_windows 7 professional.clg" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
  39. </unattend>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement