Initial commit
This commit is contained in:
134
unattend.xml.example
Normal file
134
unattend.xml.example
Normal file
@@ -0,0 +1,134 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<unattend xmlns="urn:schemas-microsoft-com:unattend">
|
||||
<!--
|
||||
=====================
|
||||
SPECIALIZE SETTINGS
|
||||
=====================
|
||||
During the specialize pass of Windows Setup, machine-specific information for the image is applied.
|
||||
For example, you can configure network settings, international settings, and domain information.
|
||||
The specialize pass is used in conjunction with the generalize pass.
|
||||
The generalize pass is used to create a Windows reference image that can be used throughout an organization.
|
||||
From this basic Windows reference image, you can add further customizations that apply to different divisions
|
||||
within an organization or apply to different installations of Windows.
|
||||
The specialize pass is used to apply these specific customizations.
|
||||
-->
|
||||
<settings pass="specialize">
|
||||
<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">
|
||||
<ComputerName>testws1</ComputerName>
|
||||
|
||||
</component>
|
||||
|
||||
<component name="Microsoft-Windows-RemoteAssistance-Exe" 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">
|
||||
<CreateEncryptedOnlyTickets>true</CreateEncryptedOnlyTickets>
|
||||
<fAllowToGetHelp>true</fAllowToGetHelp>
|
||||
</component>
|
||||
<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>0409:00000409</InputLocale>
|
||||
<SystemLocale>en-US</SystemLocale>
|
||||
<UILanguage>en-US</UILanguage>
|
||||
<UILanguageFallback>en-US</UILanguageFallback>
|
||||
<UserLocale>en-US</UserLocale>
|
||||
</component>
|
||||
<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">
|
||||
<RunSynchronous>
|
||||
<RunSynchronousCommand wcm:action="add">
|
||||
<Description>Some preparation script</Description>
|
||||
<Order>1</Order>
|
||||
<Path>cmd.exe /c C:\my_script.cmd</Path>
|
||||
</RunSynchronousCommand>
|
||||
</RunSynchronous>
|
||||
</component>
|
||||
<component name="Networking-MPSSVC-Svc" 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">
|
||||
<DomainProfile_EnableFirewall>false</DomainProfile_EnableFirewall>
|
||||
<PrivateProfile_EnableFirewall>false</PrivateProfile_EnableFirewall>
|
||||
<PublicProfile_EnableFirewall>false</PublicProfile_EnableFirewall>
|
||||
</component>
|
||||
<component name="Microsoft-Windows-Embedded-EmbeddedLogon" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<NoLockScreen>1</NoLockScreen>
|
||||
</component>
|
||||
</settings>
|
||||
<!--
|
||||
=====================
|
||||
AUDITSYSTEM SETTINGS
|
||||
=====================
|
||||
The auditSystem pass is an optional pass that enables you to add additional device drivers and applications to the image.
|
||||
This results in fewer required images because a reference image can be created with a minimal set of drivers.
|
||||
The image can be updated with additional drivers during the audit process.
|
||||
You can then test and resolve any operating system issues related to malfunctioning or incorrectly installed devices on the image.
|
||||
For example, you can install additional language packs, updates, or other applications, such as Microsoft Office.
|
||||
See Reseal mode in oobeSystem.
|
||||
-->
|
||||
<!--
|
||||
<settings pass="auditSystem">
|
||||
</settings>
|
||||
-->
|
||||
<!--
|
||||
=====================
|
||||
AUDITUSER SETTINGS
|
||||
=====================
|
||||
The auditUser pass is similar to the auditSystem pass.
|
||||
However, the auditUser pass processes these settings after users have logged on, not before they have logged on.
|
||||
Like the auditSystem pass, the auditUser pass is used to test the functionality of the Windows Vista image.
|
||||
See Reseal mode in oobeSystem.
|
||||
-->
|
||||
<!--
|
||||
<settings pass="auditUser">
|
||||
</settings>
|
||||
-->
|
||||
<!--
|
||||
=====================
|
||||
OOBESYSTEM SETTINGS
|
||||
=====================
|
||||
The oobeSystem pass configures settings that are applied during the first-boot experience for end users, also called Windows Welcome.
|
||||
oobeSystem settings are processed before a user first logs into Windows.
|
||||
Out-of-Box-Experience (OOBE) runs the first time the user starts a new computer.
|
||||
OOBE runs before the Windows shell or any additional software runs, and performs a small set of tasks necessary to configure and run Windows.
|
||||
-->
|
||||
<settings pass="oobeSystem">
|
||||
|
||||
<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">
|
||||
|
||||
<TimeZone>Central Europe Standard Time</TimeZone>
|
||||
<UserAccounts>
|
||||
<AdministratorPassword>
|
||||
<PlainText>true</PlainText>
|
||||
<Value>password</Value>
|
||||
</AdministratorPassword>
|
||||
<LocalAccounts>
|
||||
<LocalAccount wcm:action="add">
|
||||
<Password>
|
||||
<PlainText>true</PlainText>
|
||||
<Value>password</Value>
|
||||
</Password>
|
||||
<Description>admin</Description>
|
||||
<Group>Administrators</Group>
|
||||
<Name>admin</Name>
|
||||
<DisplayName>admin</DisplayName>
|
||||
</LocalAccount>
|
||||
</LocalAccounts>
|
||||
|
||||
</UserAccounts>
|
||||
|
||||
<OOBE>
|
||||
<HideEULAPage>true</HideEULAPage>
|
||||
<ProtectYourPC>3</ProtectYourPC>
|
||||
<HideOnlineAccountScreens>true</HideOnlineAccountScreens>
|
||||
<HideLocalAccountScreen>true</HideLocalAccountScreen>
|
||||
<HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
|
||||
<SkipMachineOOBE>true</SkipMachineOOBE>
|
||||
<SkipUserOOBE>true</SkipUserOOBE>
|
||||
<NetworkLocation>Work</NetworkLocation>
|
||||
<HideOEMRegistrationScreen>true</HideOEMRegistrationScreen>
|
||||
</OOBE>
|
||||
|
||||
</component>
|
||||
<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>0409:00000409</InputLocale>
|
||||
<SystemLocale>en-US</SystemLocale>
|
||||
<UILanguage>en-US</UILanguage>
|
||||
<UILanguageFallback>en-US</UILanguageFallback>
|
||||
<UserLocale>en-US</UserLocale>
|
||||
</component>
|
||||
|
||||
</settings>
|
||||
</unattend>
|
||||
Reference in New Issue
Block a user