Advertisement
Guest User

Untitled

a guest
Feb 27th, 2012
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 4.56 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-Deployment" 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.             <Reseal>
  6.                 <Mode>Audit</Mode>
  7.             </Reseal>
  8.         </component>
  9.         <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">
  10.             <OOBE>
  11.                 <HideEULAPage>true</HideEULAPage>
  12.                 <ProtectYourPC>3</ProtectYourPC>
  13.             </OOBE>
  14.         </component>
  15.     </settings>
  16.     <settings pass="windowsPE">
  17.         <component name="Microsoft-Windows-International-Core-WinPE" 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">
  18.             <SetupUILanguage>
  19.                 <UILanguage>en-US</UILanguage>
  20.             </SetupUILanguage>
  21.             <InputLocale>en-US</InputLocale>
  22.             <SystemLocale>en-US</SystemLocale>
  23.             <UILanguage>en-US</UILanguage>
  24.             <UserLocale>en-US</UserLocale>
  25.         </component>
  26.         <component name="Microsoft-Windows-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">
  27.             <DiskConfiguration>
  28.                 <Disk wcm:action="add">
  29.                     <CreatePartitions>
  30.                         <CreatePartition wcm:action="add">
  31.                             <Order>2</Order>
  32.                             <Type>Primary</Type>
  33.                             <Extend>true</Extend>
  34.                         </CreatePartition>
  35.                         <CreatePartition wcm:action="add">
  36.                             <Order>1</Order>
  37.                             <Size>200</Size>
  38.                             <Type>Primary</Type>
  39.                         </CreatePartition>
  40.                     </CreatePartitions>
  41.                     <ModifyPartitions>
  42.                         <ModifyPartition wcm:action="add">
  43.                             <Active>true</Active>
  44.                             <Format>NTFS</Format>
  45.                             <Label>System</Label>
  46.                             <Order>1</Order>
  47.                             <PartitionID>1</PartitionID>
  48.                         </ModifyPartition>
  49.                         <ModifyPartition wcm:action="add">
  50.                             <Format>NTFS</Format>
  51.                             <Label>Windows</Label>
  52.                             <Order>2</Order>
  53.                             <PartitionID>2</PartitionID>
  54.                         </ModifyPartition>
  55.                     </ModifyPartitions>
  56.                     <DiskID>0</DiskID>
  57.                     <WillWipeDisk>true</WillWipeDisk>
  58.                 </Disk>
  59.             </DiskConfiguration>
  60.             <ImageInstall>
  61.                 <OSImage>
  62.                     <InstallTo>
  63.                         <DiskID>0</DiskID>
  64.                         <PartitionID>2</PartitionID>
  65.                     </InstallTo>
  66.                     <InstallToAvailablePartition>false</InstallToAvailablePartition>
  67.                     <WillShowUI>OnError</WillShowUI>
  68.                 </OSImage>
  69.             </ImageInstall>
  70.             <UserData>
  71.                 <ProductKey>
  72.                     <WillShowUI>OnError</WillShowUI>
  73.                 </ProductKey>
  74.                 <AcceptEula>true</AcceptEula>
  75.             </UserData>
  76.         </component>
  77.     </settings>
  78.     <settings pass="specialize">
  79.         <component name="Microsoft-Windows-IE-InternetExplorer" 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">
  80.             <Home_Page>www.google.com</Home_Page>
  81.         </component>
  82.     </settings>
  83.     <cpi:offlineImage cpi:source="wim:c:/users/rgoodrow/desktop/install.wim#Windows 7 PROFESSIONAL" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
  84. </unattend>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement