Advertisement
ErwinO1991

unattend.xml FOG Client Template

Jan 4th, 2018
290
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 4.18 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <--!
  3. This is a template unattend.xml for FOG Client in OEM Sysprep usage on Windows 7 Professional x86_64.
  4. Remove this comment from your unattend.xml
  5. -->
  6. <unattend xmlns="urn:schemas-microsoft-com:unattend">
  7.     <settings pass="generalize">
  8.         <component name="Microsoft-Windows-Security-SPP" 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">
  9.             <SkipRearm>1</SkipRearm>
  10.         </component>
  11.     </settings>
  12.     <settings pass="specialize">
  13.         <component name="Microsoft-Windows-Deployment" 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">
  14.             <RunSynchronous>
  15.                 <RunSynchronousCommand wcm:action="add">
  16.                     <Order>1</Order>
  17.                     <Path>net user administrator /active:yes</Path>
  18.                 </RunSynchronousCommand>
  19.             </RunSynchronous>
  20.         </component>
  21.         <component name="Microsoft-Windows-Security-SPP-UX" 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">
  22.             <SkipAutoActivation>true</SkipAutoActivation>
  23.         </component>
  24.         <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">
  25.             <ComputerName></ComputerName>
  26.             <CopyProfile>false</CopyProfile>
  27.             <ShowWindowsLive>false</ShowWindowsLive>
  28.             <ProductKey>XXXXX-XXXXX-XXXXX-XXXXX-XXXXX</ProductKey>
  29.         </component>
  30.     </settings>
  31.     <settings pass="oobeSystem">
  32.         <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">
  33.             <InputLocale>nl-NL</InputLocale>
  34.             <SystemLocale>nl-NL</SystemLocale>
  35.             <UILanguage>nl-NL</UILanguage>
  36.             <UserLocale>nl-NL</UserLocale>
  37.         </component>
  38.         <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">
  39.             <AutoLogon>
  40.                 <Enabled>true</Enabled>
  41.                 <LogonCount>1</LogonCount>
  42.                 <Username>administrator</Username>
  43.             </AutoLogon>
  44.             <FirstLogonCommands>
  45.                 <SynchronousCommand wcm:action="add">
  46.                     <CommandLine>c:\windows\setup\scripts\setupcomplete.cmd</CommandLine>
  47.                     <Order>1</Order>
  48.                 </SynchronousCommand>
  49.             </FirstLogonCommands>
  50.             <OOBE>
  51.                 <HideEULAPage>true</HideEULAPage>
  52.                 <NetworkLocation>Work</NetworkLocation>
  53.                 <ProtectYourPC>1</ProtectYourPC>
  54.                 <SkipUserOOBE>true</SkipUserOOBE>
  55.                 <SkipMachineOOBE>true</SkipMachineOOBE>
  56.             </OOBE>
  57.             <UserAccounts>
  58.                 <AdministratorPassword>
  59.                     <Value>PASSWORD</Value>
  60.                     <PlainText>true</PlainText>
  61.                 </AdministratorPassword>
  62.             </UserAccounts>
  63.             <RegisteredOrganization>Organization</RegisteredOrganization>
  64.             <RegisteredOwner>Owner</RegisteredOwner>
  65.         </component>
  66.     </settings>
  67.     <cpi:offlineImage cpi:source="catalog:d:/sources/install_windows 7 professional.clg" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
  68. </unattend>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement