1
0

win11x64.xml 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401
  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>300</Size>
  24. </CreatePartition>
  25. <!-- System partition (ESP) -->
  26. <CreatePartition wcm:action="add">
  27. <Order>2</Order>
  28. <Type>EFI</Type>
  29. <Size>100</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. </DriverPaths>
  157. </component>
  158. </settings>
  159. <settings pass="offlineServicing">
  160. <component name="Microsoft-Windows-LUA-Settings" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
  161. <EnableLUA>false</EnableLUA>
  162. </component>
  163. <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
  164. <ComputerName>*</ComputerName>
  165. </component>
  166. </settings>
  167. <settings pass="generalize">
  168. <component name="Microsoft-Windows-PnPSysprep" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
  169. <PersistAllDeviceInstalls>true</PersistAllDeviceInstalls>
  170. </component>
  171. <component name="Microsoft-Windows-Security-SPP" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
  172. <SkipRearm>1</SkipRearm>
  173. </component>
  174. </settings>
  175. <settings pass="specialize">
  176. <component name="Microsoft-Windows-Security-SPP-UX" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
  177. <SkipAutoActivation>true</SkipAutoActivation>
  178. </component>
  179. <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
  180. <ComputerName>*</ComputerName>
  181. <OEMInformation>
  182. <Manufacturer>Dockur</Manufacturer>
  183. <Model>Windows for Docker</Model>
  184. <SupportHours>24/7</SupportHours>
  185. <SupportPhone />
  186. <SupportProvider>Dockur</SupportProvider>
  187. <SupportURL>https://github.com/dockur/windows/issues</SupportURL>
  188. </OEMInformation>
  189. <OEMName>Windows for Docker</OEMName>
  190. </component>
  191. <component name="Microsoft-Windows-ErrorReportingCore" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
  192. <DisableWER>1</DisableWER>
  193. </component>
  194. <component name="Microsoft-Windows-IE-InternetExplorer" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
  195. <DisableAccelerators>true</DisableAccelerators>
  196. <DisableFirstRunWizard>true</DisableFirstRunWizard>
  197. <Home_Page>about:blank</Home_Page>
  198. <Help_Page>about:blank</Help_Page>
  199. </component>
  200. <component name="Microsoft-Windows-IE-InternetExplorer" processorArchitecture="wow64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
  201. <DisableAccelerators>true</DisableAccelerators>
  202. <DisableFirstRunWizard>true</DisableFirstRunWizard>
  203. <Home_Page>about:blank</Home_Page>
  204. <Help_Page>about:blank</Help_Page>
  205. </component>
  206. <component name="Microsoft-Windows-SQMApi" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
  207. <CEIPEnabled>0</CEIPEnabled>
  208. </component>
  209. <component name="Microsoft-Windows-Deployment" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
  210. <RunSynchronous>
  211. <RunSynchronousCommand wcm:action="add">
  212. <Order>1</Order>
  213. <Path>reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\OOBE" /v BypassNRO /t REG_DWORD /d 1 /f</Path>
  214. </RunSynchronousCommand>
  215. <RunSynchronousCommand wcm:action="add">
  216. <Order>2</Order>
  217. <Path>netsh.exe advfirewall firewall set rule group="Remote Desktop" new enable=Yes</Path>
  218. </RunSynchronousCommand>
  219. <RunSynchronousCommand wcm:action="add">
  220. <Order>3</Order>
  221. <Path>reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 0 /f</Path>
  222. </RunSynchronousCommand>
  223. <RunSynchronousCommand wcm:action="add">
  224. <Order>4</Order>
  225. <Path>fsutil.exe behavior set disableLastAccess 1</Path>
  226. </RunSynchronousCommand>
  227. <RunSynchronousCommand wcm:action="add">
  228. <Order>5</Order>
  229. <Path>reg.exe load "HKU\mount" "C:\Users\Default\NTUSER.DAT"</Path>
  230. </RunSynchronousCommand>
  231. <RunSynchronousCommand wcm:action="add">
  232. <Order>6</Order>
  233. <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "ContentDeliveryAllowed" /t REG_DWORD /d 0 /f</Path>
  234. </RunSynchronousCommand>
  235. <RunSynchronousCommand wcm:action="add">
  236. <Order>7</Order>
  237. <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "FeatureManagementEnabled" /t REG_DWORD /d 0 /f</Path>
  238. </RunSynchronousCommand>
  239. <RunSynchronousCommand wcm:action="add">
  240. <Order>8</Order>
  241. <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "OEMPreInstalledAppsEnabled" /t REG_DWORD /d 0 /f</Path>
  242. </RunSynchronousCommand>
  243. <RunSynchronousCommand wcm:action="add">
  244. <Order>9</Order>
  245. <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "PreInstalledAppsEnabled" /t REG_DWORD /d 0 /f</Path>
  246. </RunSynchronousCommand>
  247. <RunSynchronousCommand wcm:action="add">
  248. <Order>10</Order>
  249. <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "PreInstalledAppsEverEnabled" /t REG_DWORD /d 0 /f</Path>
  250. </RunSynchronousCommand>
  251. <RunSynchronousCommand wcm:action="add">
  252. <Order>11</Order>
  253. <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SilentInstalledAppsEnabled" /t REG_DWORD /d 0 /f</Path>
  254. </RunSynchronousCommand>
  255. <RunSynchronousCommand wcm:action="add">
  256. <Order>12</Order>
  257. <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SoftLandingEnabled" /t REG_DWORD /d 0 /f</Path>
  258. </RunSynchronousCommand>
  259. <RunSynchronousCommand wcm:action="add">
  260. <Order>13</Order>
  261. <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContentEnabled" /t REG_DWORD /d 0 /f</Path>
  262. </RunSynchronousCommand>
  263. <RunSynchronousCommand wcm:action="add">
  264. <Order>14</Order>
  265. <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-310093Enabled" /t REG_DWORD /d 0 /f</Path>
  266. </RunSynchronousCommand>
  267. <RunSynchronousCommand wcm:action="add">
  268. <Order>15</Order>
  269. <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338387Enabled" /t REG_DWORD /d 0 /f</Path>
  270. </RunSynchronousCommand>
  271. <RunSynchronousCommand wcm:action="add">
  272. <Order>16</Order>
  273. <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338388Enabled" /t REG_DWORD /d 0 /f</Path>
  274. </RunSynchronousCommand>
  275. <RunSynchronousCommand wcm:action="add">
  276. <Order>17</Order>
  277. <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338389Enabled" /t REG_DWORD /d 0 /f</Path>
  278. </RunSynchronousCommand>
  279. <RunSynchronousCommand wcm:action="add">
  280. <Order>18</Order>
  281. <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338393Enabled" /t REG_DWORD /d 0 /f</Path>
  282. </RunSynchronousCommand>
  283. <RunSynchronousCommand wcm:action="add">
  284. <Order>19</Order>
  285. <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-353698Enabled" /t REG_DWORD /d 0 /f</Path>
  286. </RunSynchronousCommand>
  287. <RunSynchronousCommand wcm:action="add">
  288. <Order>20</Order>
  289. <Path>reg.exe add "HKU\mount\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SystemPaneSuggestionsEnabled" /t REG_DWORD /d 0 /f</Path>
  290. </RunSynchronousCommand>
  291. <RunSynchronousCommand wcm:action="add">
  292. <Order>21</Order>
  293. <Path>reg.exe unload "HKU\mount"</Path>
  294. </RunSynchronousCommand>
  295. <RunSynchronousCommand wcm:action="add">
  296. <Order>22</Order>
  297. <Path>reg.exe add "HKLM\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableWindowsConsumerFeatures" /t REG_DWORD /d 0 /f</Path>
  298. </RunSynchronousCommand>
  299. </RunSynchronous>
  300. </component>
  301. </settings>
  302. <settings pass="auditSystem" />
  303. <settings pass="auditUser" />
  304. <settings pass="oobeSystem">
  305. <component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
  306. <InputLocale>0409:00000409</InputLocale>
  307. <SystemLocale>en-US</SystemLocale>
  308. <UILanguage>en-US</UILanguage>
  309. <UserLocale>en-US</UserLocale>
  310. </component>
  311. <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
  312. <UserAccounts>
  313. <LocalAccounts>
  314. <LocalAccount wcm:action="add">
  315. <Name>Docker</Name>
  316. <Group>Administrators</Group>
  317. <Password>
  318. <Value />
  319. <PlainText>true</PlainText>
  320. </Password>
  321. </LocalAccount>
  322. </LocalAccounts>
  323. <AdministratorPassword>
  324. <Value>password</Value>
  325. <PlainText>true</PlainText>
  326. </AdministratorPassword>
  327. </UserAccounts>
  328. <AutoLogon>
  329. <Username>Docker</Username>
  330. <Enabled>true</Enabled>
  331. <LogonCount>1</LogonCount>
  332. <Password>
  333. <Value />
  334. <PlainText>true</PlainText>
  335. </Password>
  336. </AutoLogon>
  337. <OOBE>
  338. <HideEULAPage>true</HideEULAPage>
  339. <HideLocalAccountScreen>true</HideLocalAccountScreen>
  340. <HideOEMRegistrationScreen>true</HideOEMRegistrationScreen>
  341. <HideOnlineAccountScreens>true</HideOnlineAccountScreens>
  342. <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
  343. <NetworkLocation>Other</NetworkLocation>
  344. <ProtectYourPC>3</ProtectYourPC>
  345. <SkipUserOOBE>true</SkipUserOOBE>
  346. <SkipMachineOOBE>true</SkipMachineOOBE>
  347. <VMModeOptimizations>
  348. <SkipWinREInitialization>true</SkipWinREInitialization>
  349. </VMModeOptimizations>
  350. </OOBE>
  351. <RegisteredOrganization>Dockur</RegisteredOrganization>
  352. <RegisteredOwner>Windows for Docker</RegisteredOwner>
  353. <FirstLogonCommands>
  354. <SynchronousCommand wcm:action="add">
  355. <Order>1</Order>
  356. <CommandLine>reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v AutoLogonCount /t REG_DWORD /d 0 /f</CommandLine>
  357. <Description>Set AutoLogonCount to 0</Description>
  358. </SynchronousCommand>
  359. <SynchronousCommand wcm:action="add">
  360. <Order>2</Order>
  361. <CommandLine>reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Lsa" /v LimitBlankPasswordUse /t REG_DWORD /d 0 /f</CommandLine>
  362. <Description>Allow RDP login with blank password</Description>
  363. </SynchronousCommand>
  364. <SynchronousCommand wcm:action="add">
  365. <Order>3</Order>
  366. <CommandLine>reg.exe add "HKCU\Control Panel\UnsupportedHardwareNotificationCache" /v SV1 /d 0 /t REG_DWORD /f</CommandLine>
  367. </SynchronousCommand>
  368. <SynchronousCommand wcm:action="add">
  369. <Order>4</Order>
  370. <CommandLine>reg.exe add "HKCU\Control Panel\UnsupportedHardwareNotificationCache" /v SV2 /d 0 /t REG_DWORD /f</CommandLine>
  371. </SynchronousCommand>
  372. <SynchronousCommand wcm:action="add">
  373. <Order>5</Order>
  374. <RequiresUserInput>false</RequiresUserInput>
  375. <CommandLine>cmd /C wmic useraccount where name="Docker" set PasswordExpires=false</CommandLine>
  376. <Description>Password Never Expires</Description>
  377. </SynchronousCommand>
  378. <SynchronousCommand wcm:action="add">
  379. <Order>6</Order>
  380. <CommandLine>cmd /C POWERCFG -H OFF</CommandLine>
  381. <Description>Disable Hibernation</Description>
  382. </SynchronousCommand>
  383. <SynchronousCommand wcm:action="add">
  384. <Order>7</Order>
  385. <CommandLine>msiexec /i E:\virtio-win-gt-x64.msi /qb!</CommandLine>
  386. <Description>Install VirtIO drivers</Description>
  387. </SynchronousCommand>
  388. <SynchronousCommand wcm:action="add">
  389. <Order>8</Order>
  390. <CommandLine>reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Network\NewNetworkWindowOff" /f</CommandLine>
  391. <Description>Disable Network Discovery popup</Description>
  392. </SynchronousCommand>
  393. <SynchronousCommand wcm:action="add">
  394. <Order>9</Order>
  395. <CommandLine>reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Network\NetworkLocationWizard" /v HideWizard /t REG_DWORD /d 1 /f</CommandLine>
  396. <Description>Disable Network Discovery popup</Description>
  397. </SynchronousCommand>
  398. </FirstLogonCommands>
  399. </component>
  400. </settings>
  401. </unattend>