win11x64.xml 22 KB

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