Unattend.xml
edited
1<!-- Docs: https://learn.microsoft.com/en-us/windows-hardware/customize/desktop/unattend -->
2<settings pass="windowsPE"
3 xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
4 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5<component name="Microsoft-Windows-UnattendedJoin">
6<Identification>
7 <JoinDomain>fabrikam.com</JoinDomain>
8 <MachinePassword><!-- this gets changed by a script --></MachinePassword>
9 <UnsecureJoin>true</UnsecureJoin>
10</Identification>
11</component>
12<OOBE>
13 <HideOEMRegistrationScreen>true</HideOEMRegistrationScreen>
14 <HideOnlineAccountScreens>true</HideOnlineAccountScreens>
15 <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
16 <ProtectYourPC>3</ProtectYourPC> <!-- Limit user data sharing with Microsoft -->
17</OOBE>
18<RegisteredOrganization>Fabrikam</RegisteredOrganization>
19<ShowPowerButtonOnStartScreen>false</ShowPowerButtonOnStartScreen>
20<TaskbarLinks>
21 <Link0>%ALLUSERSPROFILE%\Microsoft\Windows\Start Menu\Programs\Accessories\Remote Desktop Connection.lnk</Link0>
22 <Link1>%ALLUSERSPROFILE%\Microsoft\Windows\Start Menu\Programs\Accessories\Sound Recorder.lnk</Link1>
23 <Link2>%ALLUSERSPROFILE%\Microsoft\Windows\Start Menu\Programs\Accessories\Calculator.lnk</Link2>
24</TaskbarLinks>
25<Themes>
26 <ThemeName>Fabrikam Theme</ThemeName>
27 <DesktopBackground>%WINDIR%\OEM\CustomizationFiles\Theme1\fabrikam-wallpaper.jpg</DesktopBackground>
28 <BrandIcon>%WINDIR%\OEM\CustomizationFiles\Theme1\fabrikam-logo.png</BrandIcon>
29 <WindowColor>Automatic</WindowColor>
30 <UWPAppsUseLightTheme>false</UWPAppsUseLightTheme>
31</Themes>
32
33<component name="Microsoft-Windows-Deployment">
34<ExtendOSPartition>
35 <Extend>true</Extend>
36</ExtendOSPartition>
37<RunAsynchronous>
38 <RunAsynchronousCommand wcm:action="add">
39 <Credentials>
40 <Domain>MyDomain</Domain>
41 <Password>MyPassword</Password>
42 <Username>MyUsername</Username>
43 </Credentials>
44 <Description>AsynchCommand1</Description>
45 <Order>1</Order>
46 <Path>\\network\server\share\filename</Path>
47 </RunAsynchronousCommand>
48</RunAsynchronous>
49</component>
50
51 <!-- Online support screen -->
52 <component name="Microsoft-Windows-DiagCpl">
53 <Title>@%SystemRoot%\System32\DiagCpl.dll,-82</Title>
54 <Description>@%SystemRoot%\System32\DiagCpl.dll,-83</Description>
55 <Icon>@%SystemRoot%\System32\imageres.dll,-179</Icon>
56 <Link>https://www.fabrikam.com/support</Link>
57 </component>
58
59</settings>