sysprep/unattended.xml (44 lines of code) (raw):

<?xml version="1.0" encoding="utf-8"?> <unattend xmlns="urn:schemas-microsoft-com:unattend"> <!-- For more information about unattended.xml please refer too http://technet.microsoft.com/en-us/library/cc722132(v=ws.10).aspx --> <settings pass="generalize"> <component name="Microsoft-Windows-PnpSysprep" 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"> <PersistAllDeviceInstalls>true</PersistAllDeviceInstalls> </component> </settings> <settings pass="specialize"> <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"> <ExtendOSPartition> <Extend>true</Extend> </ExtendOSPartition> </component> <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"> <!-- Random ComputerName, will be replaced by specialize script --> <ComputerName></ComputerName> <TimeZone>Greenwich Standard Time</TimeZone> </component> </settings> <settings pass="oobeSystem"> <!-- Setting Location Information --> <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"> <InputLocale>en-us</InputLocale> <SystemLocale>en-us</SystemLocale> <UILanguage>en-us</UILanguage> <UserLocale>en-us</UserLocale> </component> <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"> <OOBE> <!-- Setting EULA --> <HideEULAPage>true</HideEULAPage> <!-- Setting network location to public --> <NetworkLocation>Other</NetworkLocation> <ProtectYourPC>1</ProtectYourPC> <SkipMachineOOBE>true</SkipMachineOOBE> <SkipUserOOBE>true</SkipUserOOBE> </OOBE> <!-- Setting timezone to GMT --> <ShowWindowsLive>false</ShowWindowsLive> <TimeZone>Greenwich Standard Time</TimeZone> <!--Setting OEM information --> <OEMInformation> <Manufacturer>Google Cloud Platform</Manufacturer> <Model>Google Compute Engine Virtual Machine</Model> <SupportURL>https://support.google.com/enterprisehelp/answer/142244?hl=en#cloud</SupportURL> <Logo>C:\Program Files\Google Compute Engine\sysprep\gcp.bmp</Logo> </OEMInformation> </component> </settings> </unattend>