win11x64.xml 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <unattend xmlns="urn:schemas-microsoft-com:unattend" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State">
  3. <settings pass="windowsPE">
  4. <component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
  5. <SetupUILanguage>
  6. <UILanguage>en-US</UILanguage>
  7. </SetupUILanguage>
  8. <InputLocale>0409:00000409</InputLocale>
  9. <SystemLocale>en-US</SystemLocale>
  10. <UILanguage>en-US</UILanguage>
  11. <UserLocale>en-US</UserLocale>
  12. </component>
  13. <component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
  14. <DiskConfiguration>
  15. <Disk wcm:action="add">
  16. <DiskID>0</DiskID>
  17. <WillWipeDisk>true</WillWipeDisk>
  18. <CreatePartitions>
  19. <!-- System partition (ESP) -->
  20. <CreatePartition wcm:action="add">
  21. <Order>1</Order>
  22. <Type>EFI</Type>
  23. <Size>128</Size>
  24. </CreatePartition>
  25. <!-- Microsoft reserved partition (MSR) -->
  26. <CreatePartition wcm:action="add">
  27. <Order>2</Order>
  28. <Type>MSR</Type>
  29. <Size>128</Size>
  30. </CreatePartition>
  31. <!-- Windows partition -->
  32. <CreatePartition wcm:action="add">
  33. <Order>3</Order>
  34. <Type>Primary</Type>
  35. <Extend>true</Extend>
  36. </CreatePartition>
  37. </CreatePartitions>
  38. <ModifyPartitions>
  39. <!-- System partition (ESP) -->
  40. <ModifyPartition wcm:action="add">
  41. <Order>1</Order>
  42. <PartitionID>1</PartitionID>
  43. <Label>System</Label>
  44. <Format>FAT32</Format>
  45. </ModifyPartition>
  46. <!-- MSR partition does not need to be modified -->
  47. <ModifyPartition wcm:action="add">
  48. <Order>2</Order>
  49. <PartitionID>2</PartitionID>
  50. </ModifyPartition>
  51. <!-- Windows partition -->
  52. <ModifyPartition wcm:action="add">
  53. <Order>3</Order>
  54. <PartitionID>3</PartitionID>
  55. <Label>Windows</Label>
  56. <Letter>C</Letter>
  57. <Format>NTFS</Format>
  58. </ModifyPartition>
  59. </ModifyPartitions>
  60. </Disk>
  61. </DiskConfiguration>
  62. <ImageInstall>
  63. <OSImage>
  64. <InstallTo>
  65. <DiskID>0</DiskID>
  66. <PartitionID>3</PartitionID>
  67. </InstallTo>
  68. <InstallToAvailablePartition>false</InstallToAvailablePartition>
  69. </OSImage>
  70. </ImageInstall>
  71. <DynamicUpdate>
  72. <Enable>true</Enable>
  73. <WillShowUI>Never</WillShowUI>
  74. </DynamicUpdate>
  75. <UpgradeData>
  76. <Upgrade>false</Upgrade>
  77. <WillShowUI>Never</WillShowUI>
  78. </UpgradeData>
  79. <UserData>
  80. <AcceptEula>true</AcceptEula>
  81. <FullName>Docker</FullName>
  82. <Organization>Windows for Docker</Organization>
  83. <ProductKey>
  84. <Key>VK7JG-NPHTM-C97JM-9MPGT-3V66T</Key>
  85. </ProductKey>
  86. </UserData>
  87. <EnableFirewall>false</EnableFirewall>
  88. <Diagnostics>
  89. <OptIn>false</OptIn>
  90. </Diagnostics>
  91. <RunSynchronous>
  92. <RunSynchronousCommand wcm:action="add">
  93. <Order>1</Order>
  94. <Path>reg.exe add "HKLM\SYSTEM\Setup\LabConfig" /v BypassTPMCheck /t REG_DWORD /d 1 /f</Path>
  95. </RunSynchronousCommand>
  96. <RunSynchronousCommand wcm:action="add">
  97. <Order>2</Order>
  98. <Path>reg.exe add "HKLM\SYSTEM\Setup\LabConfig" /v BypassSecureBootCheck /t REG_DWORD /d 1 /f</Path>
  99. </RunSynchronousCommand>
  100. <RunSynchronousCommand wcm:action="add">
  101. <Order>3</Order>
  102. <Path>reg.exe add "HKLM\SYSTEM\Setup\LabConfig" /v BypassRAMCheck /t REG_DWORD /d 1 /f</Path>
  103. </RunSynchronousCommand>
  104. <RunSynchronousCommand wcm:action="add">
  105. <Order>4</Order>
  106. <Path>reg.exe add "HKLM\SYSTEM\Setup\MoSetup" /v AllowUpgradesWithUnsupportedTPMOrCPU /t REG_DWORD /d 1 /f</Path>
  107. </RunSynchronousCommand>
  108. </RunSynchronous>
  109. </component>
  110. <component name="Microsoft-Windows-PnpCustomizationsWinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
  111. <DriverPaths>
  112. <PathAndCredentials wcm:action="add" wcm:keyValue="1">
  113. <Path>D:\viostor\w11\amd64</Path>
  114. </PathAndCredentials>
  115. <PathAndCredentials wcm:action="add" wcm:keyValue="2">
  116. <Path>D:\NetKVM\w11\amd64</Path>
  117. </PathAndCredentials>
  118. <PathAndCredentials wcm:action="add" wcm:keyValue="3">
  119. <Path>D:\Balloon\w11\amd64</Path>
  120. </PathAndCredentials>
  121. <PathAndCredentials wcm:action="add" wcm:keyValue="4">
  122. <Path>D:\pvpanic\w11\amd64</Path>
  123. </PathAndCredentials>
  124. <PathAndCredentials wcm:action="add" wcm:keyValue="5">
  125. <Path>D:\qemupciserial\w11\amd64</Path>
  126. </PathAndCredentials>
  127. <PathAndCredentials wcm:action="add" wcm:keyValue="6">
  128. <Path>D:\qxldod\w11\amd64</Path>
  129. </PathAndCredentials>
  130. <PathAndCredentials wcm:action="add" wcm:keyValue="7">
  131. <Path>D:\vioinput\w11\amd64</Path>
  132. </PathAndCredentials>
  133. <PathAndCredentials wcm:action="add" wcm:keyValue="8">
  134. <Path>D:\viorng\w11\amd64</Path>
  135. </PathAndCredentials>
  136. <PathAndCredentials wcm:action="add" wcm:keyValue="9">
  137. <Path>D:\vioscsi\w11\amd64</Path>
  138. </PathAndCredentials>
  139. <PathAndCredentials wcm:action="add" wcm:keyValue="10">
  140. <Path>D:\vioserial\w11\amd64</Path>
  141. </PathAndCredentials>
  142. <PathAndCredentials wcm:action="add" wcm:keyValue="11">
  143. <Path>D:\viogpudo\w11\amd64</Path>
  144. </PathAndCredentials>
  145. <PathAndCredentials wcm:action="add" wcm:keyValue="12">
  146. <Path>D:\sriov\w11\amd64</Path>
  147. </PathAndCredentials>
  148. <PathAndCredentials wcm:action="add" wcm:keyValue="13">
  149. <Path>D:\viofs\w11\amd64</Path>
  150. </PathAndCredentials>
  151. </DriverPaths>
  152. </component>
  153. </settings>
  154. <settings pass="offlineServicing">
  155. <component name="Microsoft-Windows-LUA-Settings" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
  156. <EnableLUA>false</EnableLUA>
  157. </component>
  158. </settings>
  159. <settings pass="generalize">
  160. <component name="Microsoft-Windows-PnPSysprep" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
  161. <PersistAllDeviceInstalls>true</PersistAllDeviceInstalls>
  162. </component>
  163. <component name="Microsoft-Windows-Security-SPP" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
  164. <SkipRearm>1</SkipRearm>
  165. </component>
  166. </settings>
  167. <settings pass="specialize">
  168. <component name="Microsoft-Windows-Security-SPP-UX" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
  169. <SkipAutoActivation>true</SkipAutoActivation>
  170. </component>
  171. <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
  172. <ComputerName>*</ComputerName>
  173. <OEMInformation>
  174. <Manufacturer>Dockur</Manufacturer>
  175. <Model>Windows for Docker</Model>
  176. <SupportHours>24/7</SupportHours>
  177. <SupportPhone />
  178. <SupportProvider>Dockur</SupportProvider>
  179. <SupportURL>https://github.com/dockur/windows/issues</SupportURL>
  180. </OEMInformation>
  181. <OEMName>Windows for Docker</OEMName>
  182. </component>
  183. <component name="Microsoft-Windows-ErrorReportingCore" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
  184. <DisableWER>1</DisableWER>
  185. </component>
  186. <component name="Microsoft-Windows-IE-InternetExplorer" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
  187. <DisableAccelerators>true</DisableAccelerators>
  188. <DisableFirstRunWizard>true</DisableFirstRunWizard>
  189. <Home_Page>https://google.com</Home_Page>
  190. <Help_Page>about:blank</Help_Page>
  191. </component>
  192. <component name="Microsoft-Windows-IE-InternetExplorer" processorArchitecture="wow64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
  193. <DisableAccelerators>true</DisableAccelerators>
  194. <DisableFirstRunWizard>true</DisableFirstRunWizard>
  195. <Home_Page>https://google.com</Home_Page>
  196. <Help_Page>about:blank</Help_Page>
  197. </component>
  198. <component name="Microsoft-Windows-SQMApi" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
  199. <CEIPEnabled>0</CEIPEnabled>
  200. </component>
  201. <component name="Microsoft-Windows-SystemRestore-Main" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
  202. <DisableSR>1</DisableSR>
  203. </component>
  204. <component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
  205. <InputLocale>0409:00000409</InputLocale>
  206. <SystemLocale>en-US</SystemLocale>
  207. <UILanguage>en-US</UILanguage>
  208. <UserLocale>en-US</UserLocale>
  209. </component>
  210. <component name="Microsoft-Windows-Deployment" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
  211. <RunSynchronous>
  212. <RunSynchronousCommand wcm:action="add">
  213. <Order>1</Order>
  214. <Path>reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\OOBE" /v BypassNRO /t REG_DWORD /d 1 /f</Path>
  215. </RunSynchronousCommand>
  216. <RunSynchronousCommand wcm:action="add">
  217. <Order>2</Order>
  218. <Path>reg.exe load "HKU\mount" "C:\Users\Default\NTUSER.DAT"</Path>
  219. </RunSynchronousCommand>
  220. <RunSynchronousCommand wcm:action="add">
  221. <Order>3</Order>
  222. <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "ContentDeliveryAllowed" /t REG_DWORD /d 0 /f</Path>
  223. </RunSynchronousCommand>
  224. <RunSynchronousCommand wcm:action="add">
  225. <Order>4</Order>
  226. <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "FeatureManagementEnabled" /t REG_DWORD /d 0 /f</Path>
  227. </RunSynchronousCommand>
  228. <RunSynchronousCommand wcm:action="add">
  229. <Order>5</Order>
  230. <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "OEMPreInstalledAppsEnabled" /t REG_DWORD /d 0 /f</Path>
  231. </RunSynchronousCommand>
  232. <RunSynchronousCommand wcm:action="add">
  233. <Order>6</Order>
  234. <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "PreInstalledAppsEnabled" /t REG_DWORD /d 0 /f</Path>
  235. </RunSynchronousCommand>
  236. <RunSynchronousCommand wcm:action="add">
  237. <Order>7</Order>
  238. <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "PreInstalledAppsEverEnabled" /t REG_DWORD /d 0 /f</Path>
  239. </RunSynchronousCommand>
  240. <RunSynchronousCommand wcm:action="add">
  241. <Order>8</Order>
  242. <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SilentInstalledAppsEnabled" /t REG_DWORD /d 0 /f</Path>
  243. </RunSynchronousCommand>
  244. <RunSynchronousCommand wcm:action="add">
  245. <Order>9</Order>
  246. <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SoftLandingEnabled" /t REG_DWORD /d 0 /f</Path>
  247. </RunSynchronousCommand>
  248. <RunSynchronousCommand wcm:action="add">
  249. <Order>10</Order>
  250. <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContentEnabled" /t REG_DWORD /d 0 /f</Path>
  251. </RunSynchronousCommand>
  252. <RunSynchronousCommand wcm:action="add">
  253. <Order>11</Order>
  254. <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-310093Enabled" /t REG_DWORD /d 0 /f</Path>
  255. </RunSynchronousCommand>
  256. <RunSynchronousCommand wcm:action="add">
  257. <Order>12</Order>
  258. <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338387Enabled" /t REG_DWORD /d 0 /f</Path>
  259. </RunSynchronousCommand>
  260. <RunSynchronousCommand wcm:action="add">
  261. <Order>13</Order>
  262. <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338388Enabled" /t REG_DWORD /d 0 /f</Path>
  263. </RunSynchronousCommand>
  264. <RunSynchronousCommand wcm:action="add">
  265. <Order>14</Order>
  266. <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338389Enabled" /t REG_DWORD /d 0 /f</Path>
  267. </RunSynchronousCommand>
  268. <RunSynchronousCommand wcm:action="add">
  269. <Order>15</Order>
  270. <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338393Enabled" /t REG_DWORD /d 0 /f</Path>
  271. </RunSynchronousCommand>
  272. <RunSynchronousCommand wcm:action="add">
  273. <Order>16</Order>
  274. <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-353698Enabled" /t REG_DWORD /d 0 /f</Path>
  275. </RunSynchronousCommand>
  276. <RunSynchronousCommand wcm:action="add">
  277. <Order>17</Order>
  278. <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SystemPaneSuggestionsEnabled" /t REG_DWORD /d 0 /f</Path>
  279. </RunSynchronousCommand>
  280. <RunSynchronousCommand wcm:action="add">
  281. <Order>18</Order>
  282. <Path>reg.exe unload "HKU\mount"</Path>
  283. </RunSynchronousCommand>
  284. <RunSynchronousCommand wcm:action="add">
  285. <Order>19</Order>
  286. <Path>reg.exe add "HKLM\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableWindowsConsumerFeatures" /t REG_DWORD /d 0 /f</Path>
  287. </RunSynchronousCommand>
  288. </RunSynchronous>
  289. </component>
  290. <component name="Microsoft-Windows-TerminalServices-LocalSessionManager" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
  291. <fDenyTSConnections>false</fDenyTSConnections>
  292. </component>
  293. <component name="Microsoft-Windows-TerminalServices-RDP-WinStationExtensions" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
  294. <UserAuthentication>0</UserAuthentication>
  295. </component>
  296. <component name="Networking-MPSSVC-Svc" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
  297. <FirewallGroups>
  298. <FirewallGroup wcm:action="add" wcm:keyValue="RemoteDesktop">
  299. <Active>true</Active>
  300. <Group>Remote Desktop</Group>
  301. <Profile>all</Profile>
  302. </FirewallGroup>
  303. </FirewallGroups>
  304. </component>
  305. </settings>
  306. <settings pass="auditSystem" />
  307. <settings pass="auditUser" />
  308. <settings pass="oobeSystem">
  309. <component name="Microsoft-Windows-SecureStartup-FilterDriver" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
  310. <PreventDeviceEncryption>true</PreventDeviceEncryption>
  311. </component>
  312. <component name="Microsoft-Windows-EnhancedStorage-Adm" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
  313. <TCGSecurityActivationDisabled>1</TCGSecurityActivationDisabled>
  314. </component>
  315. <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
  316. <UserAccounts>
  317. <LocalAccounts>
  318. <LocalAccount wcm:action="add">
  319. <Name>Docker</Name>
  320. <Group>Administrators</Group>
  321. <Password>
  322. <Value />
  323. <PlainText>true</PlainText>
  324. </Password>
  325. </LocalAccount>
  326. </LocalAccounts>
  327. <AdministratorPassword>
  328. <Value>password</Value>
  329. <PlainText>true</PlainText>
  330. </AdministratorPassword>
  331. </UserAccounts>
  332. <AutoLogon>
  333. <Username>Docker</Username>
  334. <Enabled>true</Enabled>
  335. <LogonCount>65432</LogonCount>
  336. <Password>
  337. <Value />
  338. <PlainText>true</PlainText>
  339. </Password>
  340. </AutoLogon>
  341. <OOBE>
  342. <HideEULAPage>true</HideEULAPage>
  343. <HideLocalAccountScreen>true</HideLocalAccountScreen>
  344. <HideOEMRegistrationScreen>true</HideOEMRegistrationScreen>
  345. <HideOnlineAccountScreens>true</HideOnlineAccountScreens>
  346. <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
  347. <NetworkLocation>Other</NetworkLocation>
  348. <ProtectYourPC>3</ProtectYourPC>
  349. <SkipUserOOBE>true</SkipUserOOBE>
  350. <SkipMachineOOBE>true</SkipMachineOOBE>
  351. </OOBE>
  352. <RegisteredOrganization>Dockur</RegisteredOrganization>
  353. <RegisteredOwner>Windows for Docker</RegisteredOwner>
  354. <FirstLogonCommands>
  355. <SynchronousCommand wcm:action="add">
  356. <Order>1</Order>
  357. <CommandLine>reg.exe add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters" /v "AllowInsecureGuestAuth" /t REG_DWORD /d 1 /f</CommandLine>
  358. <Description>Allow guest access to network shares</Description>
  359. </SynchronousCommand>
  360. <SynchronousCommand wcm:action="add">
  361. <Order>2</Order>
  362. <CommandLine>reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Lsa" /v LimitBlankPasswordUse /t REG_DWORD /d 0 /f</CommandLine>
  363. <Description>Allow RDP login with blank password</Description>
  364. </SynchronousCommand>
  365. <SynchronousCommand wcm:action="add">
  366. <Order>3</Order>
  367. <CommandLine>reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\PasswordLess\Device" /v "DevicePasswordLessBuildVersion" /t REG_DWORD /d 0 /f</CommandLine>
  368. <Description>Enable option for passwordless sign-in</Description>
  369. </SynchronousCommand>
  370. <SynchronousCommand wcm:action="add">
  371. <Order>4</Order>
  372. <CommandLine>cmd /C wmic useraccount where name="Docker" set PasswordExpires=false</CommandLine>
  373. <Description>Password Never Expires</Description>
  374. </SynchronousCommand>
  375. <SynchronousCommand wcm:action="add">
  376. <Order>5</Order>
  377. <CommandLine>cmd /C POWERCFG -H OFF</CommandLine>
  378. <Description>Disable Hibernation</Description>
  379. </SynchronousCommand>
  380. <SynchronousCommand wcm:action="add">
  381. <Order>6</Order>
  382. <CommandLine>cmd /C POWERCFG -X -monitor-timeout-ac 0</CommandLine>
  383. <Description>Disable monitor blanking</Description>
  384. </SynchronousCommand>
  385. <SynchronousCommand wcm:action="add">
  386. <Order>7</Order>
  387. <CommandLine>reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Network\NewNetworkWindowOff" /f</CommandLine>
  388. <Description>Disable Network Discovery popup</Description>
  389. </SynchronousCommand>
  390. <SynchronousCommand wcm:action="add">
  391. <Order>8</Order>
  392. <CommandLine>reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Network\NetworkLocationWizard" /v "HideWizard" /t REG_DWORD /d 1 /f</CommandLine>
  393. <Description>Disable Network Discovery popup</Description>
  394. </SynchronousCommand>
  395. <SynchronousCommand wcm:action="add">
  396. <Order>9</Order>
  397. <CommandLine>reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /v "HideFirstRunExperience" /t REG_DWORD /d 1 /f</CommandLine>
  398. <Description>Disable first-run experience in Edge</Description>
  399. </SynchronousCommand>
  400. <SynchronousCommand wcm:action="add">
  401. <Order>10</Order>
  402. <CommandLine>reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "HideFileExt" /t REG_DWORD /d 0 /f</CommandLine>
  403. <Description>Show file extensions in Explorer</Description>
  404. </SynchronousCommand>
  405. <SynchronousCommand wcm:action="add">
  406. <Order>11</Order>
  407. <CommandLine>reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateFileSizePercent" /t REG_DWORD /d 0 /f</CommandLine>
  408. <Description>Zero Hibernation File</Description>
  409. </SynchronousCommand>
  410. <SynchronousCommand wcm:action="add">
  411. <Order>12</Order>
  412. <CommandLine>reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateEnabled" /t REG_DWORD /d 0 /f</CommandLine>
  413. <Description>Disable Hibernation Mode</Description>
  414. </SynchronousCommand>
  415. <SynchronousCommand wcm:action="add">
  416. <Order>13</Order>
  417. <CommandLine>reg.exe add "HKCU\Control Panel\UnsupportedHardwareNotificationCache" /v SV1 /d 0 /t REG_DWORD /f</CommandLine>
  418. <Description>Disable unsupported hardware notifications</Description>
  419. </SynchronousCommand>
  420. <SynchronousCommand wcm:action="add">
  421. <Order>14</Order>
  422. <CommandLine>reg.exe add "HKCU\Control Panel\UnsupportedHardwareNotificationCache" /v SV2 /d 0 /t REG_DWORD /f</CommandLine>
  423. <Description>Disable unsupported hardware notifications</Description>
  424. </SynchronousCommand>
  425. </FirstLogonCommands>
  426. </component>
  427. </settings>
  428. </unattend>