summaryrefslogtreecommitdiff
path: root/.github/crashdetect/Unattend.xml
diff options
context:
space:
mode:
Diffstat (limited to '.github/crashdetect/Unattend.xml')
-rw-r--r--.github/crashdetect/Unattend.xml64
1 files changed, 64 insertions, 0 deletions
diff --git a/.github/crashdetect/Unattend.xml b/.github/crashdetect/Unattend.xml
new file mode 100644
index 00000000..a235fba0
--- /dev/null
+++ b/.github/crashdetect/Unattend.xml
@@ -0,0 +1,64 @@
+<?xml version="1.0" encoding="utf-8"?>
+<unattend xmlns="urn:schemas-microsoft-com:unattend"
+ xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+
+ <settings pass="oobeSystem">
+ <component name="Microsoft-Windows-International-Core"
+ processorArchitecture="amd64"
+ publicKeyToken="31bf3856ad364e35"
+ language="neutral"
+ versionScope="nonSxS">
+ <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">
+
+ <TimeZone>Pacific Standard Time</TimeZone>
+
+ <!-- Skip all OOBE -->
+ <OOBE>
+ <HideEULAPage>true</HideEULAPage>
+ <HideOEMRegistrationScreen>true</HideOEMRegistrationScreen>
+ <HideOnlineAccountScreens>true</HideOnlineAccountScreens>
+ <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
+ <HideLocalAccountScreen>true</HideLocalAccountScreen>
+ <NetworkLocation>Work</NetworkLocation>
+ <ProtectYourPC>3</ProtectYourPC>
+ </OOBE>
+
+ <UserAccounts>
+ <LocalAccounts>
+ <LocalAccount wcm:action="add">
+ <Name>admin</Name>
+ <Group>Administrators</Group>
+ <Password>
+ <Value>@Password123</Value>
+ <PlainText>true</PlainText>
+ </Password>
+ </LocalAccount>
+ </LocalAccounts>
+ </UserAccounts>
+
+ <!-- Auto logon (lab only) -->
+ <AutoLogon>
+ <Username>admin</Username>
+ <Enabled>true</Enabled>
+ <Password>
+ <Value>@Password123</Value>
+ <PlainText>true</PlainText>
+ </Password>
+ <LogonCount>999</LogonCount>
+ </AutoLogon>
+
+ </component>
+ </settings>
+
+</unattend> \ No newline at end of file