forked from ChrisTitusTech/ntlite-configs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGamerOS 10 Final.xml
1038 lines (1038 loc) · 45.6 KB
/
GamerOS 10 Final.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<Preset xmlns="urn:schemas-nliteos-com:pn.v1">
<Date>04/20/1337 16:20:00</Date>
<AppInfo>
<Version>2.3.8.8945</Version>
<Licensed>Yes</Licensed>
<Protections>Yes</Protections>
<Host>Windows 10 Pro (22H2) x64 - 10.0.19045.2132 (en-US)</Host>
</AppInfo>
<ImageInfo>
<Version mode="offline">Windows 10 Professional (22H2) x64 - 10.0.19045.2132 (en-US)</Version>
<GUID></GUID>
</ImageInfo>
<RemoveComponents AppRemovalMode="Custom">
<c>1527c705-839a-4832-9118-54d4Bd6a0c89 'File Picker'</c>
<c>3daudio 'Spatial Sound (3D Audio)'</c>
<c>aarsvc 'Agent Activation Runtime'</c>
<c>accessibility 'Accessibility tools (Ease of Access)'</c>
<c>accessibility_cursors 'Mouse Pointers (Accessibility tools)'</c>
<c>accessibility_magnifier 'Screen Magnifier'</c>
<c>accessibility_narrator 'Narrator'</c>
<c>afunix 'Unix socket (AF_UNIX)'</c>
<c>alg 'Application Layer Gateway Service'</c>
<c>alljoyn 'AllJoyn Router Service'</c>
<c>appid 'Application Identity Service'</c>
<c>appv 'Application Virtualization (App-V)'</c>
<c>asimov 'Telemetry Client'</c>
<c>assignedaccess 'Assigned Access'</c>
<c>audit 'Windows Audit'</c>
<c>auditpol 'Windows Audit (Tools)'</c>
<c>autoplay</c>
<c>azman 'Authorization Manager'</c>
<c>azman32 'Authorization Manager - 32 bit'</c>
<c>azuread 'Azure Active Directory'</c>
<c>backgroundtransfer 'Networking Background Transfer'</c>
<c>backup 'Windows Backup'</c>
<c>branchcacheclient 'BranchCache Client'</c>
<c>browserbrokers 'Browser Brokers'</c>
<c>c5e2524a-ea46-4f67-841f-6a9465d9d515 'File Explorer'</c>
<c>captureservice 'Capture Service'</c>
<c>cdosys 'Collaboration Data Objects for Windows (CDOSYS)'</c>
<c>ceip 'CEIP (SQM)'</c>
<c>cellulartime 'Cellular Time'</c>
<c>certmgr32 'Certificate Manager - 32 bit'</c>
<c>clipboardusersvc 'Clipboard User Service'</c>
<c>cloudid 'Microsoft Cloud Identity Service'</c>
<c>cloudnotifications 'Cloud Notifications'</c>
<c>commmc 'COM+ (Component Services) (management console)'</c>
<c>commmc32 'COM+ (Component Services) (management console) - 32 bit'</c>
<c>complussysapp 'COM+ System Application'</c>
<c>compmgmt32 'Computer Management - 32 bit'</c>
<c>componentpackagesupport 'Component Package Support'</c>
<c>consentux 'Consent UX'</c>
<c>dashost 'Device Association Service'</c>
<c>deliveryoptimization 'Delivery Optimization'</c>
<c>desktopactivitymoderator 'Desktop Activity Moderator (DAM)'</c>
<c>desktopimgdownldr 'Desktop image downloader'</c>
<c>devicepicker 'Device Picker'</c>
<c>devicesetupmanager 'Device Setup Manager'</c>
<c>devicesync 'Microsoft Sync Framework'</c>
<c>deviceupdatecenter 'Device Update Center'</c>
<c>devmgmt32 'Device Manager - 32 bit'</c>
<c>devquerybroker 'DevQuery Background Discovery Broker'</c>
<c>diagnostics 'Diagnostics and Troubleshooting'</c>
<c>directaccess 'Direct Access Connection'</c>
<c>diskdiagnosis 'Disk failure diagnostics'</c>
<c>diskmgmt32 'Disk Management - 32 bit'</c>
<c>diskquota 'Disk Quota'</c>
<c>diskraid 'DiskRAID tool'</c>
<c>displayswitch 'Display Switch'</c>
<c>dolbyatmos 'Dolby Atmos codec pack'</c>
<c>domainclientssvc 'IPsec Policy Agent'</c>
<c>dssvc 'Data Sharing Service'</c>
<c>dvdplay 'DVD Play'</c>
<c>E2A4F912-2574-4A75-9BB0-0D023378592B 'App Resolver'</c>
<c>eaphost 'Extensible Authentication Protocol (EAP)'</c>
<c>easeofaccessthemes 'Ease Of Access Themes'</c>
<c>efsfeature 'Encrypting File System (EFS) - Feature'</c>
<c>em 'Windows Setup EULA Mitigation (EM)'</c>
<c>embeddedmode 'Embedded Mode'</c>
<c>encprovider 'Windows Encryption Provider Host Service'</c>
<c>enhancedstorage 'Enhanced Storage'</c>
<c>enterprisedataprotection 'Enterprise Data Protection (EDP/WIP)'</c>
<c>errorreporting 'Windows Error Reporting'</c>
<c>eudcedit 'Private Character Editor'</c>
<c>eventtracing 'Event Tracing for Windows (ETW)'</c>
<c>eventviewer32 'Event Viewer - 32 bit'</c>
<c>exchangeactivesync 'Exchange ActiveSync (EAS)'</c>
<c>explorer32 'File Explorer - 32 bit'</c>
<c>F46D4000-FD22-4DB4-AC8E-4E1DDDE828FE 'Add Folder Suggestions dialog'</c>
<c>facerecognition 'Face Recognition'</c>
<c>fciclient 'File Server Resource Manager'</c>
<c>fdphost 'Network Discovery'</c>
<c>filehistory 'File History'</c>
<c>filerevocationmanager 'File Revocation Manager - 32 bit'</c>
<c>filetrace 'File Trace MiniFilter'</c>
<c>folderredirection 'Folder Redirection'</c>
<c>font_malgungothicbold 'Malgun Gothic Bold'</c>
<c>font_microsoftjhenghei 'Microsoft JhengHei & Microsoft JhengHei UI'</c>
<c>font_microsoftjhengheibold 'Microsoft JhengHei Bold & Microsoft JhengHei UI Bold'</c>
<c>font_microsoftjhengheilight 'Microsoft JhengHei Light & Microsoft JhengHei UI Light'</c>
<c>font_microsoftyahei 'Microsoft YaHei & Microsoft YaHei UI'</c>
<c>font_microsoftyaheibold 'Microsoft YaHei Bold & Microsoft YaHei UI Bold'</c>
<c>font_microsoftyaheilight 'Microsoft YaHei Light & Microsoft YaHei UI Light'</c>
<c>font_mingliub 'MingLiU-ExtB & PMingLiU-ExtB & MingLiU_HKSCS-ExtB'</c>
<c>font_simsun 'SimSun & NSimSun'</c>
<c>font_simsunb 'SimSun-ExtB'</c>
<c>font_yugothic 'Yu Gothic Regular & Yu Gothic UI Semilight'</c>
<c>font_yugothicbold 'Yu Gothic Bold & Yu Gothic UI Semibold & Yu Gothic UI Bold'</c>
<c>font_yugothiclight 'Yu Gothic Light & Yu Gothic UI Light'</c>
<c>font_yugothicmedium 'Yu Gothic Medium & Yu Gothic UI Regular'</c>
<c>fontpreviewer32 'Font previewer - 32 bit'</c>
<c>frameserver 'Camera Frame Server'</c>
<c>frameservernet 'Networked Camera Source'</c>
<c>fsmgmt 'Shared Folders UI'</c>
<c>fsmgmt32 'Shared Folders UI - 32 bit'</c>
<c>gameexplorer 'Game Explorer'</c>
<c>graphicsperfsvc 'Graphics performance monitor service'</c>
<c>hbaapi 'Host Bus Adapter (HBA) API'</c>
<c>help 'Windows Help content'</c>
<c>helpsupport 'Help file support (CHM)'</c>
<c>homegroup</c>
<c>hwsupport_bluetooth 'Bluetooth'</c>
<c>hwsupport_fax 'Fax'</c>
<c>hwsupport_floppy 'Floppy disk'</c>
<c>hwsupport_infrared 'Infrared devices'</c>
<c>hwsupport_modemsettings 'Shared modem settings (mdmgl*.inf)'</c>
<c>hwsupport_scanner 'Scanner'</c>
<c>hwsupport_smartcard 'Smartcard'</c>
<c>hwsupport_telephony 'Telephony'</c>
<c>hwsupport_tv 'TV Tuner codecs and support'</c>
<c>hwsupport_wia 'Windows Image Acquisition (WIA)'</c>
<c>ias 'Internet Authentication Service (IAS)'</c>
<c>indeo 'Intel Indeo Codecs'</c>
<c>inputservice32 'Input Service (CTFMON) - 32 bit'</c>
<c>inputswitchtoasthandler 'Input Switch Toast Handler'</c>
<c>insiderhub 'Windows Insider Hub'</c>
<c>ipt 'Identity Protection Technology (Intel IPT)'</c>
<c>ipxlatcfg 'IP Translation Configuration Service'</c>
<c>iscsi 'iSCSI Initiator'</c>
<c>isoburn 'Windows Disc Image Burning Tool'</c>
<c>kerberos32 'Kerberos Client - 32 bit'</c>
<c>kerneldebug 'Kernel Debugging'</c>
<c>kl-00000401 'Arabic (101)'</c>
<c>kl-00000402 'Bulgarian (Typewriter)'</c>
<c>kl-00000404 'Chinese (Traditional) - US'</c>
<c>kl-00000405 'Czech'</c>
<c>kl-00000406 'Danish'</c>
<c>kl-00000407 'German'</c>
<c>kl-00000408 'Greek'</c>
<c>kl-0000040a 'Spanish'</c>
<c>kl-0000040b 'Finnish'</c>
<c>kl-0000040c 'French'</c>
<c>kl-0000040d 'Hebrew'</c>
<c>kl-0000040e 'Hungarian'</c>
<c>kl-0000040f 'Icelandic'</c>
<c>kl-00000410 'Italian'</c>
<c>kl-00000411 'Japanese'</c>
<c>kl-00000412 'Korean'</c>
<c>kl-00000413 'Dutch'</c>
<c>kl-00000414 'Norwegian'</c>
<c>kl-00000415 'Polish (Programmers)'</c>
<c>kl-00000416 'Portuguese (Brazil ABNT)'</c>
<c>kl-00000418 'Romanian (Legacy)'</c>
<c>kl-00000419 'Russian'</c>
<c>kl-0000041a 'Standard'</c>
<c>kl-0000041b 'Slovak'</c>
<c>kl-0000041c 'Albanian'</c>
<c>kl-0000041d 'Swedish'</c>
<c>kl-0000041e 'Thai Kedmanee'</c>
<c>kl-0000041f 'Turkish Q'</c>
<c>kl-00000420 'Urdu'</c>
<c>kl-00000422 'Ukrainian'</c>
<c>kl-00000423 'Belarusian'</c>
<c>kl-00000424 'Slovenian'</c>
<c>kl-00000425 'Estonian'</c>
<c>kl-00000426 'Latvian'</c>
<c>kl-00000427 'Lithuanian IBM'</c>
<c>kl-00000428 'Tajik'</c>
<c>kl-00000429 'Persian'</c>
<c>kl-0000042a 'Vietnamese'</c>
<c>kl-0000042b 'Armenian Eastern (Legacy)'</c>
<c>kl-0000042c 'Azerbaijani Latin'</c>
<c>kl-0000042e 'Sorbian Standard (Legacy)'</c>
<c>kl-0000042f 'Macedonian (North Macedonia)'</c>
<c>kl-00000432 'Setswana'</c>
<c>kl-00000437 'Georgian (Legacy)'</c>
<c>kl-00000438 'Faeroese'</c>
<c>kl-00000439 'Devanagari - INSCRIPT'</c>
<c>kl-0000043a 'Maltese 47-Key'</c>
<c>kl-0000043b 'Norwegian with Sami'</c>
<c>kl-0000043f 'Kazakh'</c>
<c>kl-00000440 'Kyrgyz Cyrillic'</c>
<c>kl-00000442 'Turkmen'</c>
<c>kl-00000444 'Tatar (Legacy)'</c>
<c>kl-00000445 'Bangla'</c>
<c>kl-00000446 'Punjabi'</c>
<c>kl-00000447 'Gujarati'</c>
<c>kl-00000448 'Odia'</c>
<c>kl-00000449 'Tamil'</c>
<c>kl-0000044a 'Telugu'</c>
<c>kl-0000044b 'Kannada'</c>
<c>kl-0000044c 'Malayalam'</c>
<c>kl-0000044d 'Assamese - INSCRIPT'</c>
<c>kl-0000044e 'Marathi'</c>
<c>kl-00000450 'Mongolian Cyrillic'</c>
<c>kl-00000451 'Tibetan (PRC)'</c>
<c>kl-00000452 'United Kingdom Extended'</c>
<c>kl-00000453 'Khmer'</c>
<c>kl-00000454 'Lao'</c>
<c>kl-0000045a 'Syriac'</c>
<c>kl-0000045b 'Sinhala'</c>
<c>kl-0000045c 'Cherokee Nation'</c>
<c>kl-00000461 'Nepali'</c>
<c>kl-00000463 'Pashto (Afghanistan)'</c>
<c>kl-00000465 'Divehi Phonetic'</c>
<c>kl-00000468 'Hausa'</c>
<c>kl-0000046a 'Yoruba'</c>
<c>kl-0000046c 'Sesotho sa Leboa'</c>
<c>kl-0000046d 'Bashkir'</c>
<c>kl-0000046e 'Luxembourgish'</c>
<c>kl-0000046f 'Greenlandic'</c>
<c>kl-00000470 'Igbo'</c>
<c>kl-00000474 'Guarani'</c>
<c>kl-00000475 'Hawaiian'</c>
<c>kl-00000480 'Uyghur (Legacy)'</c>
<c>kl-00000481 'Maori'</c>
<c>kl-00000485 'Sakha'</c>
<c>kl-00000488 'Wolof'</c>
<c>kl-00000492 'Central Kurdish'</c>
<c>kl-00000804 'Chinese (Simplified) - US'</c>
<c>kl-00000807 'Swiss German'</c>
<c>kl-00000809 'United Kingdom'</c>
<c>kl-0000080a 'Latin American'</c>
<c>kl-0000080c 'Belgian French'</c>
<c>kl-00000813 'Belgian (Period)'</c>
<c>kl-00000816 'Portuguese'</c>
<c>kl-0000081a 'Serbian (Latin)'</c>
<c>kl-0000082c 'Azerbaijani Cyrillic'</c>
<c>kl-0000083b 'Swedish with Sami'</c>
<c>kl-00000843 'Uzbek Cyrillic'</c>
<c>kl-00000850 'Mongolian (Mongolian Script)'</c>
<c>kl-0000085d 'Inuktitut - Latin'</c>
<c>kl-0000085f 'Central Atlas Tamazight'</c>
<c>kl-00000c04 'Chinese (Traditional, Hong Kong S.A.R.) - US'</c>
<c>kl-00000c0c 'Canadian French (Legacy)'</c>
<c>kl-00000c1a 'Serbian (Cyrillic)'</c>
<c>kl-00000c51 'Dzongkha'</c>
<c>kl-00001004 'Chinese (Simplified, Singapore) - US'</c>
<c>kl-00001009 'Canadian French'</c>
<c>kl-0000100c 'Swiss French'</c>
<c>kl-0000105f 'Tifinagh (Basic)'</c>
<c>kl-00001404 'Chinese (Traditional, Macao S.A.R.) - US'</c>
<c>kl-00001809 'Irish'</c>
<c>kl-0000201a 'Bosnian (Cyrillic)'</c>
<c>kl-00004009 'English (India)'</c>
<c>kl-00010401 'Arabic (102)'</c>
<c>kl-00010402 'Bulgarian (Latin)'</c>
<c>kl-00010405 'Czech (QWERTY)'</c>
<c>kl-00010407 'German (IBM)'</c>
<c>kl-00010408 'Greek (220)'</c>
<c>kl-00010409 'United States-Dvorak'</c>
<c>kl-0001040a 'Spanish Variation'</c>
<c>kl-0001040e 'Hungarian 101-key'</c>
<c>kl-00010410 'Italian (142)'</c>
<c>kl-00010415 'Polish (214)'</c>
<c>kl-00010416 'Portuguese (Brazil ABNT2)'</c>
<c>kl-00010418 'Romanian (Standard)'</c>
<c>kl-00010419 'Russian (Typewriter)'</c>
<c>kl-0001041b 'Slovak (QWERTY)'</c>
<c>kl-0001041e 'Thai Pattachote'</c>
<c>kl-0001041f 'Turkish F'</c>
<c>kl-00010426 'Latvian (QWERTY)'</c>
<c>kl-00010427 'Lithuanian'</c>
<c>kl-0001042b 'Armenian Western (Legacy)'</c>
<c>kl-0001042c 'Azerbaijani (Standard)'</c>
<c>kl-0001042e 'Sorbian Extended'</c>
<c>kl-0001042f 'Macedonian (North Macedonia) - Standard'</c>
<c>kl-00010437 'Georgian (QWERTY)'</c>
<c>kl-00010439 'Hindi Traditional'</c>
<c>kl-0001043a 'Maltese 48-Key'</c>
<c>kl-0001043b 'Sami Extended Norway'</c>
<c>kl-00010444 'Tatar'</c>
<c>kl-00010445 'Bangla - INSCRIPT (Legacy)'</c>
<c>kl-00010451 'Tibetan (PRC) - Updated'</c>
<c>kl-00010453 'Khmer (NIDA)'</c>
<c>kl-0001045a 'Syriac Phonetic'</c>
<c>kl-0001045b 'Sinhala - Wij 9'</c>
<c>kl-0001045c 'Cherokee Phonetic'</c>
<c>kl-0001045d 'Inuktitut - Naqittaut'</c>
<c>kl-00010465 'Divehi Typewriter'</c>
<c>kl-00010480 'Uyghur'</c>
<c>kl-0001080c 'Belgian (Comma)'</c>
<c>kl-0001083b 'Finnish with Sami'</c>
<c>kl-00010850 'Traditional Mongolian (Standard)'</c>
<c>kl-00010c00 'Myanmar (Phonetic order)'</c>
<c>kl-00011009 'Canadian Multilingual Standard'</c>
<c>kl-0001105f 'Tifinagh (Extended)'</c>
<c>kl-00011809 'Scottish Gaelic'</c>
<c>kl-00020401 'Arabic (102) AZERTY'</c>
<c>kl-00020402 'Bulgarian (Phonetic)'</c>
<c>kl-00020405 'Czech Programmers'</c>
<c>kl-00020408 'Greek (319)'</c>
<c>kl-00020409 'United States-International'</c>
<c>kl-0002040d 'Hebrew (Standard)'</c>
<c>kl-00020418 'Romanian (Programmers)'</c>
<c>kl-00020419 'Russian - Mnemonic'</c>
<c>kl-0002041e 'Thai Kedmanee (non-ShiftLock)'</c>
<c>kl-00020422 'Ukrainian (Enhanced)'</c>
<c>kl-00020426 'Latvian (Standard)'</c>
<c>kl-00020427 'Lithuanian Standard'</c>
<c>kl-0002042b 'Armenian Phonetic'</c>
<c>kl-0002042e 'Sorbian Standard'</c>
<c>kl-00020437 'Georgian (Ergonomic)'</c>
<c>kl-00020445 'Bangla - INSCRIPT'</c>
<c>kl-00020449 'Tamil 99'</c>
<c>kl-0002083b 'Sami Extended Finland-Sweden'</c>
<c>kl-00020c00 'New Tai Lue'</c>
<c>kl-00030402 'Bulgarian'</c>
<c>kl-00030408 'Greek (220) Latin'</c>
<c>kl-00030409 'United States-Dvorak for left hand'</c>
<c>kl-0003041e 'Thai Pattachote (non-ShiftLock)'</c>
<c>kl-0003042b 'Armenian Typewriter'</c>
<c>kl-00030437 'Georgian (MES)'</c>
<c>kl-00030c00 'Tai Le'</c>
<c>kl-00040402 'Bulgarian (Phonetic Traditional)'</c>
<c>kl-00040408 'Greek (319) Latin'</c>
<c>kl-00040409 'United States-Dvorak for right hand'</c>
<c>kl-00040437 'Georgian (Old Alphabets)'</c>
<c>kl-00040c00 'Ogham'</c>
<c>kl-00050408 'Greek Latin'</c>
<c>kl-00050409 'US English Table for IBM Arabic 238_L'</c>
<c>kl-00050429 'Persian (Standard)'</c>
<c>kl-00060408 'Greek Polytonic'</c>
<c>kl-00070c00 'Lisu (Basic)'</c>
<c>kl-00080c00 'Lisu (Standard)'</c>
<c>kl-00090c00 'N’Ko'</c>
<c>kl-000a0c00 'Phags-pa'</c>
<c>kl-000b0c00 'Buginese'</c>
<c>kl-000c0c00 'Gothic'</c>
<c>kl-000d0c00 'Ol Chiki'</c>
<c>kl-000e0c00 'Osmanya'</c>
<c>kl-000f0c00 'Old Italic'</c>
<c>kl-00100c00 'Sora'</c>
<c>kl-00110c00 'Javanese'</c>
<c>kl-00120c00 'Futhark'</c>
<c>kl-00130c00 'Myanmar (Visual order)'</c>
<c>kl-00140c00 'ADLaM'</c>
<c>kl-00150c00 'Osage'</c>
<c>langarabic 'Arabic'</c>
<c>langbulgarian 'Bulgarian'</c>
<c>langchineses 'Chinese Simplified'</c>
<c>langchineset 'Chinese Traditional'</c>
<c>langcroatian 'Croatian'</c>
<c>langczech 'Czech'</c>
<c>langdanish 'Danish'</c>
<c>langdutch 'Dutch'</c>
<c>langenglishgb 'English (GB)'</c>
<c>langestonian 'Estonian'</c>
<c>langfinnish 'Finnish'</c>
<c>langfrench 'French'</c>
<c>langfrenchcanadian 'French (Canadian)'</c>
<c>langgerman 'German'</c>
<c>langgreek 'Greek'</c>
<c>langhebrew 'Hebrew'</c>
<c>langhungarian 'Hungarian'</c>
<c>langime 'Input Method Editor (IME)'</c>
<c>langimejp 'Japanese (IME)'</c>
<c>langimeko 'Korean (IME)'</c>
<c>langimetc 'Chinese Traditional (IME)'</c>
<c>langitalian 'Italian'</c>
<c>langjapanese 'Japanese'</c>
<c>langkorean 'Korean'</c>
<c>langlatvian 'Latvian'</c>
<c>langlithuanian 'Lithuanian'</c>
<c>langnorwegian 'Norwegian'</c>
<c>langpolish 'Polish'</c>
<c>langportuguesebr 'Portuguese (Brazilian)'</c>
<c>langportuguesept 'Portuguese'</c>
<c>langromanian 'Romanian'</c>
<c>langrussian 'Russian'</c>
<c>langserbian 'Serbian'</c>
<c>langslovak 'Slovak'</c>
<c>langslovenian 'Slovenian'</c>
<c>langspanish 'Spanish'</c>
<c>langswedish 'Swedish'</c>
<c>langtamil 'Tamil'</c>
<c>langthai 'Thai'</c>
<c>langturkish 'Turkish'</c>
<c>langukrainian 'Ukrainian'</c>
<c>lcu 'Cumulative Update cache (LCU)'</c>
<c>location 'Location Service'</c>
<c>lpasvc 'Local Profile Assistant Service'</c>
<c>lpksetup 'Language Pack Setup'</c>
<c>lusrmgr32 'Local Users and Groups Manager - 32 bit'</c>
<c>mailcommdll 'Windows Mail Communications Library'</c>
<c>manifestbackup 'Manifest Backup (WinSxS\Backup)'</c>
<c>mapcontrol 'Map Control'</c>
<c>mdac 'Microsoft Data Access Components (MDAC)'</c>
<c>mediafoundation32 'Media Foundation - 32 bit'</c>
<c>mediaplayernetworksharing 'WMP Network Sharing Service'</c>
<c>mediaplayernetworksharing32 'WMP Network Sharing Service - 32 bit'</c>
<c>mediastreaming 'Media Streaming'</c>
<c>memorydiagnostic 'Memory Diagnostic'</c>
<c>messagingsvc 'Messaging Service'</c>
<c>Microsoft.549981C3F5F10 'Cortana'</c>
<c>Microsoft.AAD.BrokerPlugin 'Work or school account'</c>
<c>Microsoft.AccountsControl 'Email and accounts'</c>
<c>Microsoft.Advertising.Xaml 'Microsoft Advertising SDK for XAML'</c>
<c>Microsoft.AsyncTextService 'AsyncTextService'</c>
<c>Microsoft.BingWeather 'MSN Weather'</c>
<c>Microsoft.BioEnrollment 'Windows Hello Setup'</c>
<c>Microsoft.CredDialogHost 'Credential Dialog'</c>
<c>Microsoft.ECApp 'Eye Control'</c>
<c>Microsoft.GetHelp 'Get Help'</c>
<c>Microsoft.Getstarted 'Tips (Get Started)'</c>
<c>Microsoft.HEIFImageExtension 'HEIF Image Extensions'</c>
<c>Microsoft.LockApp 'Windows Default Lock Screen'</c>
<c>Microsoft.Microsoft3DViewer '3D Viewer'</c>
<c>Microsoft.MicrosoftEdge.Stable 'Microsoft Edge (Chromium)'</c>
<c>Microsoft.MicrosoftEdge 'Microsoft Edge (Legacy)'</c>
<c>Microsoft.MicrosoftEdgeDevToolsClient 'Microsoft Edge DevTools Client'</c>
<c>Microsoft.MicrosoftOfficeHub 'Office'</c>
<c>Microsoft.MicrosoftSolitaireCollection 'Microsoft Solitaire Collection'</c>
<c>Microsoft.MicrosoftStickyNotes 'Microsoft Sticky Notes'</c>
<c>Microsoft.MixedReality.Portal 'Mixed Reality Portal'</c>
<c>Microsoft.MSPaint 'Paint 3D'</c>
<c>Microsoft.Office.OneNote 'OneNote'</c>
<c>Microsoft.People 'Microsoft People'</c>
<c>Microsoft.ScreenSketch 'Snip & Sketch'</c>
<c>Microsoft.Services.Store.Engagement 'Microsoft Engagement Framework'</c>
<c>Microsoft.SkypeApp 'Skype'</c>
<c>Microsoft.StorePurchaseApp 'Store Experience Host'</c>
<c>Microsoft.Wallet 'Wallet Service'</c>
<c>Microsoft.WebMediaExtensions 'Web Media Extensions'</c>
<c>Microsoft.WebpImageExtension 'Webp Image Extensions'</c>
<c>Microsoft.Win32WebViewHost 'Desktop App Web Viewer'</c>
<c>Microsoft.Windows.Apprep.ChxApp 'SmartScreen'</c>
<c>Microsoft.Windows.AssignedAccessLockApp 'Assigned Access Lock app'</c>
<c>Microsoft.Windows.CallingShellApp 'Call'</c>
<c>Microsoft.Windows.CapturePicker 'Capture Picker'</c>
<c>Microsoft.Windows.ContentDeliveryManager 'Content Delivery Manager'</c>
<c>Microsoft.Windows.NarratorQuickStart 'Narrator'</c>
<c>Microsoft.Windows.OOBENetworkCaptivePortal 'Captive Portal Flow'</c>
<c>Microsoft.Windows.OOBENetworkConnectionFlow 'Network Connection Flow'</c>
<c>Microsoft.Windows.ParentalControls 'Microsoft family features'</c>
<c>Microsoft.Windows.PeopleExperienceHost 'Windows Shell Experience'</c>
<c>Microsoft.Windows.Photos 'Microsoft Photos'</c>
<c>Microsoft.Windows.PinningConfirmationDialog 'PinningConfirmationDialog'</c>
<c>Microsoft.Windows.SecureAssessmentBrowser 'Take a Test'</c>
<c>Microsoft.Windows.XGpuEjectDialog 'Safely Remove Device'</c>
<c>Microsoft.WindowsAlarms 'Windows Alarms & Clock'</c>
<c>Microsoft.WindowsCalculator 'Windows Calculator'</c>
<c>Microsoft.WindowsCamera 'Windows Camera'</c>
<c>microsoft.windowscommunicationsapps 'Windows Mail'</c>
<c>Microsoft.WindowsFeedbackHub 'Feedback Hub'</c>
<c>Microsoft.WindowsMaps 'Windows Maps'</c>
<c>Microsoft.WindowsSoundRecorder 'Windows Voice Recorder'</c>
<c>Microsoft.WindowsStore 'Windows Store'</c>
<c>Microsoft.XboxGameCallableUI 'Xbox Game UI'</c>
<c>Microsoft.YourPhone 'Your Phone'</c>
<c>Microsoft.ZuneMusic 'Groove Music'</c>
<c>Microsoft.ZuneVideo 'Movies & TV'</c>
<c>midi 'Microsoft GS Wavetable SW Synth (MIDI)'</c>
<c>migwiz 'Easy Transfer'</c>
<c>mixedreality 'Windows Mixed Reality'</c>
<c>mmc32 'Microsoft Management Console (MMC) - 32 bit'</c>
<c>mmga 'MMGA MAPI'</c>
<c>mobiledevicemanagement 'Mobile Device Management (MDM)'</c>
<c>mobilepc</c>
<c>mobilepc_location 'Location notifications'</c>
<c>mobilepc_networkprojection 'Network Projection'</c>
<c>mobilepc_sensors 'Sensors'</c>
<c>mpeg2splitter 'MPEG-2 Splitter'</c>
<c>msdtc 'Distributed Transaction Coordinator (DTC)'</c>
<c>naturalauthentication 'Natural Authentication'</c>
<c>ncb 'Network Connection Broker'</c>
<c>ncdauto 'Network Connected Devices Auto-Setup'</c>
<c>NcsiUwpApp 'Network Connectivity Status Indicator (NCSI)'</c>
<c>ndiscap 'NDIS Packet Capturing (NDISCAP)'</c>
<c>ndisuio 'NDIS User Mode I/O driver'</c>
<c>ndu 'Network Data Usage Monitoring Driver'</c>
<c>netcenter 'Network and Sharing Center'</c>
<c>nfc 'Near Field Communication (NFC)'</c>
<c>nowplaying 'Now Playing Session Manager'</c>
<c>ntvdm 'NTVDM 16 bit subsystem'</c>
<c>offlinefiles 'Offline Files'</c>
<c>onedrive</c>
<c>onesettingsclient 'OneSettings Client'</c>
<c>onesyncsvc 'Sync Host'</c>
<c>osk_acc 'On-Screen Keyboard (Accessibility tools)'</c>
<c>otherthemes 'Windows Personalization themes'</c>
<c>passport 'Microsoft Passport'</c>
<c>payments</c>
<c>pdfreader 'Windows Reader (PDF)'</c>
<c>peertopeer 'Peer Networking'</c>
<c>perfmon 'Performance Monitor'</c>
<c>performancerecorder 'Windows Performance Recorder'</c>
<c>perftools 'Performance CMD Tools for Tracing'</c>
<c>phonesvc 'Phone Service'</c>
<c>photocodec32 'Photo codec - 32 bit'</c>
<c>photoviewer32 'Photo Viewer - 32 bit'</c>
<c>pickerhost32 'File Picker UI Host - 32 bit'</c>
<c>picturepassword 'Picture password'</c>
<c>pimindexmaintenancesvc 'Contact Data'</c>
<c>pinsignin 'PIN sign-in support'</c>
<c>pktmon 'Packet Monitor (PktMon)'</c>
<c>pla 'Performance Logs and Alerts'</c>
<c>pos 'Point of Service (POS)'</c>
<c>printmgmt 'Print Management'</c>
<c>proximity</c>
<c>pushnotificationssvc 'Windows Push Notifications Service (System)'</c>
<c>pushtoinstall 'Windows PushToInstall Service'</c>
<c>quiethours 'Quiet Hours (Focus Assist)'</c>
<c>rasauto 'Remote Access Auto Connection Manager'</c>
<c>rascmd 'Remote Access Service Client Tools'</c>
<c>rasmans 'Remote Access Connection Manager'</c>
<c>rdmaping 'Remote Direct Memory Access (RDMA) ping tool'</c>
<c>rdpclient32 'Remote Desktop Client - 32 bit'</c>
<c>rdpserver 'Remote Desktop Server'</c>
<c>rdpserverlic 'Remote Desktop Licensing'</c>
<c>reliabilityanalysis 'Reliability Analysis Services'</c>
<c>remoteaccessservice 'Routing and Remote Access Service'</c>
<c>remoteaccesssupport 'Routing and Remote Access support'</c>
<c>remoteactivex32 'Remote Desktop Services ActiveX Client - 32 bit'</c>
<c>remoteassistance 'Remote Assistance'</c>
<c>remotefx</c>
<c>remoteportredirector 'Remote Desktop Services Port Redirector'</c>
<c>remoteregistry 'Remote Registry'</c>
<c>retaildemo 'Retail Demo Content'</c>
<c>rightsmanagement 'Rights Management support'</c>
<c>rotationmanager 'Auto-Rotation Manager'</c>
<c>rpclocator 'Remote Procedure Call (RPC) Locator'</c>
<c>secedit 'Local Security Policy Editor'</c>
<c>securestartup 'BitLocker Drive Encryption'</c>
<c>securitycenter 'Security Center'</c>
<c>sendmail 'Send To Mail and Desktop'</c>
<c>sens 'System Event Notification Service (SENS)'</c>
<c>servicesmmc32 'Services (management console) - 32 bit'</c>
<c>settingsync 'Setting Sync'</c>
<c>sharedaccess 'Internet Connection Sharing (ICS)'</c>
<c>sharedexperiences 'Shared Experiences'</c>
<c>sharedpc 'Shared PC mode'</c>
<c>sharehost32 'Share Host - 32 bit'</c>
<c>sharemediacpl 'Share Media Control Panel'</c>
<c>shellappruntime 'Shell App Runtime'</c>
<c>sihclient 'Server-Initiated Healing Client'</c>
<c>skypeortc 'Skype ORTC'</c>
<c>smsrouter 'SMS Router Service'</c>
<c>snippingtool 'Snipping Tool'</c>
<c>snmp 'Simple Network Management Protocol (SNMP)'</c>
<c>sorting 'Natural Language - Sorting'</c>
<c>soundthemes 'Sound Themes'</c>
<c>sourcessxsdir 'Manual feature repository'</c>
<c>speechapi 'Speech API'</c>
<c>speechcommon 'Speech Recognition'</c>
<c>speechtts 'Speech TTS'</c>
<c>spellchecking 'Spell Checking'</c>
<c>srumon 'Data Usage service'</c>
<c>sstackwow64 'Servicing Stack - 32 bit'</c>
<c>stici 'Still Image Class Installer'</c>
<c>storageqos 'Storage Quality of Service (Storage QoS)'</c>
<c>storagespaces 'Storage Spaces'</c>
<c>supportdir 'Support directory'</c>
<c>synccenter 'Sync Center'</c>
<c>systemguard 'System Guard'</c>
<c>systemreset 'System Reset for Windows'</c>
<c>systemrestore 'System Restore'</c>
<c>tabletextservice 'Table Text Service'</c>
<c>tabletpc 'Tablet PC'</c>
<c>targetedcontent32 'Targeted Content Service - 32 bit'</c>
<c>taskmanager32 'Task Manager - 32 bit'</c>
<c>taskschdmsc32 'Task Scheduler (management console) - 32 bit'</c>
<c>taskscheduler32 'Task Scheduler - 32 bit'</c>
<c>textprediction 'Text prediction'</c>
<c>tieringengine 'Storage Tiers Management'</c>
<c>timetraveldebugger 'Time Travel Debugger (TTD)'</c>
<c>tpmmmc32 'Trusted Platform Module (TPM) (management console) - 32 bit'</c>
<c>tpmvsc 'Virtual Smart Card'</c>
<c>trkwks 'Distributed Link Tracking Client'</c>
<c>troubleshootingsvc 'Recommended Troubleshooting service'</c>
<c>tzautoupdate 'Auto Time Zone Updater'</c>
<c>uev 'User Experience Virtualization (UE-V)'</c>
<c>unistoresvc 'User Data Storage'</c>
<c>unp 'Universal Notification Platform (UNP)'</c>
<c>upnp 'UPnP Device Host'</c>
<c>userdatasvc 'User Data Access'</c>
<c>userdeviceregistration 'User Device Registration'</c>
<c>vpn 'Virtual Private Network (VPN) support'</c>
<c>vwifi 'Virtual WiFi'</c>
<c>waasassessment 'Windows Update Medic Service'</c>
<c>wallpapers 'Wallpapers (Themes)'</c>
<c>warpjitsvc 'DirectX WARP JIT Service'</c>
<c>wcn 'Windows Connect Now (WCN)'</c>
<c>webcamexperience 'Webcam Experience'</c>
<c>webclient</c>
<c>wfds 'Wi-Fi Direct Services Connection Manager Service'</c>
<c>wfmmc32 'Windows Firewall (management console) - 32 bit'</c>
<c>wificloudstore 'WiFi Sync Provider'</c>
<c>wifinetworkmanager 'Wi-Fi Network Manager (Wi-Fi Sense)'</c>
<c>winai 'Windows AI Machine Learning'</c>
<c>Windows.CBSPreview 'Windows Barcode Preview'</c>
<c>windows.devicesflow32 'Devices Flow - 32 bit'</c>
<c>windowstogo 'Windows To Go'</c>
<c>windowsupdate 'Windows Update'</c>
<c>winre 'Windows Recovery'</c>
<c>winrm 'Windows Remote Management (WS-Management)'</c>
<c>winsat 'Windows System Assessment Tool (WinSAT)'</c>
<c>wiredautoconfig 'Wired AutoConfig'</c>
<c>wlan</c>
<c>wmitools 'Windows Management Instrumentation Tools'</c>
<c>wpdbusenum 'Portable Device Enumerator Service'</c>
<c>wwanautoconfig 'WWAN AutoConfig'</c>
<c>zipfolder 'Zip & Cab folder'</c>
</RemoveComponents>
<Compatibility protectHidden="true">
<ComponentFeatures>
<Feature enabled="no">AppGuard</Feature>
<Feature enabled="no">Bluetooth</Feature>
<Feature enabled="no">CapFrameX</Feature>
<Feature enabled="no">Discord</Feature>
<Feature enabled="no">FileSharing</Feature>
<Feature enabled="no">Hyper-V</Feature>
<Feature enabled="no">iCloud</Feature>
<Feature enabled="no">ManualSetup</Feature>
<Feature enabled="no">OfficeSupport</Feature>
<Feature enabled="no">AppxSupport</Feature>
<Feature enabled="no">Netflix</Feature>
<Feature enabled="no">NetworkDiscovery</Feature>
<Feature enabled="no">NightLight</Feature>
<Feature enabled="yes">NvidiaSetup</Feature>
<Feature enabled="yes">OOBE</Feature>
<Feature enabled="no">Printing</Feature>
<Feature enabled="no">Recommended-All</Feature>
<Feature enabled="no">SamsungSwitch</Feature>
<Feature enabled="no">Scanning</Feature>
<Feature enabled="yes">ServicingStack</Feature>
<Feature enabled="no">ShellSearchSupport</Feature>
<Feature enabled="no">Spotify</Feature>
<Feature enabled="yes">SFC</Feature>
<Feature enabled="no">DefaultFonts</Feature>
<Feature enabled="no">SafeMode</Feature>
<Feature enabled="no">TeamViewer</Feature>
<Feature enabled="no">Recommended-Tablet</Feature>
<Feature enabled="no">USBModem</Feature>
<Feature enabled="no">USB</Feature>
<Feature enabled="no">VideoPlayback</Feature>
<Feature enabled="no">VPN</Feature>
<Feature enabled="no">VisualStudio</Feature>
<Feature enabled="yes">VSS</Feature>
<Feature enabled="no">ActivationKMS</Feature>
<Feature enabled="yes">Activation</Feature>
<Feature enabled="no">WindowsStore</Feature>
<Feature enabled="no">WindowsUpdate</Feature>
<Feature enabled="no">WLAN</Feature>
<Feature enabled="no">YubiKey</Feature>
</ComponentFeatures>
<MachineDrivers>
<Machine enabled="yes">HostMachine</Machine>
<Machine enabled="no">Hyper-V VM</Machine>
<Machine enabled="no">Parallels VM</Machine>
<Machine enabled="no">Virtual Box VM</Machine>
<Machine enabled="no">VMware VM</Machine>
</MachineDrivers>
</Compatibility>
<Features>
<Feature name="Language.Handwriting~~~en-us~0.0.1.0">false</Feature>
<Feature name="Language.OCR~~~en-us~0.0.1.0">false</Feature>
<Feature name="Language.Speech~~~en-us~0.0.1.0">false</Feature>
<Feature name="Language.TextToSpeech~~~en-us~0.0.1.0">false</Feature>
<Feature name="Language.Basic~~~en-us~0.0.1.0">false</Feature>
<Feature name="OneCoreUAP.OneSync~~~~0.0.1.0">false</Feature>
<Feature name="Internet-Explorer-Optional-amd64">false</Feature>
<Feature name="Printing-Foundation-InternetPrinting-Client">false</Feature>
<Feature name="MathRecognizer~~~~0.0.1.0">false</Feature>
<Feature name="Printing-PrintToPDFServices-Features">false</Feature>
<Feature name="App.Support.QuickAssist~~~~0.0.1.0">false</Feature>
<Feature name="Printing-XPSServices-Features">false</Feature>
<Feature name="OpenSSH.Client~~~~0.0.1.0">false</Feature>
<Feature name="Printing-Foundation-Features">false</Feature>
<Feature name="Print.Management.Console~~~~0.0.1.0">false</Feature>
<Feature name="MSRDC-Infrastructure">false</Feature>
<Feature name="SmbDirect">false</Feature>
<Feature name="App.StepsRecorder~~~~0.0.1.0">false</Feature>
<Feature name="WCF-TCP-PortSharing45">false</Feature>
<Feature name="WCF-Services45">false</Feature>
<Feature name="Print.Fax.Scan~~~~0.0.1.0">false</Feature>
<Feature name="Windows.Client.ShellComponents~~~~0.0.1.0">false</Feature>
<Feature name="Hello.Face.18967~~~~0.0.1.0">false</Feature>
<Feature name="WindowsMediaPlayer">false</Feature>
<Feature name="Microsoft.Windows.WordPad~~~~0.0.1.0">false</Feature>
<Feature name="WorkFolders-Client">false</Feature>
</Features>
<Packages></Packages>
<Commands>
<PostUpdates>
<!--<Command>cmd /c echo Example from [MOUNTDIR]\Windows & pause</Command>-->
<!--<Command>dism /image:[MOUNTDIR] /get-intl</Command>-->
</PostUpdates>
</Commands>
<Drivers showHidden="true"></Drivers>
<Unattended mode="1">
<OEMSetupComplete>false</OEMSetupComplete>
<AnswerFileLocationPanther>false</AnswerFileLocationPanther>
<AnswerFileLocationBoot>true</AnswerFileLocationBoot>
<SaveBothArch>false</SaveBothArch>
<EditionPrompt>false</EditionPrompt>
<settings pass="oobeSystem">
<component name="Microsoft-Windows-International-Core">
<InputLocale>0409:00000409</InputLocale>
<SystemLocale>en-US</SystemLocale>
<UILanguage>en-US</UILanguage>
<UILanguageFallback>en-US</UILanguageFallback>
<UserLocale>en-US</UserLocale>
</component>
<component name="Microsoft-Windows-Shell-Setup">
<TimeZone>Eastern Standard Time</TimeZone>
<AutoLogon>
<Enabled>true</Enabled>
<LogonCount>9999999</LogonCount>
<Username>Administrator</Username>
<Password>
<PlainText>true</PlainText>
<Value></Value>
</Password>
</AutoLogon>
<OOBE>
<HideEULAPage>true</HideEULAPage>
<HideLocalAccountScreen>true</HideLocalAccountScreen>
<HideOnlineAccountScreens>true</HideOnlineAccountScreens>
<HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
<NetworkLocation>Other</NetworkLocation>
<ProtectYourPC>3</ProtectYourPC>
<SkipMachineOOBE>true</SkipMachineOOBE>
<SkipUserOOBE>true</SkipUserOOBE>
</OOBE>
<UserAccounts>
<AdministratorPassword>
<PlainText>true</PlainText>
<Value></Value>
</AdministratorPassword>
<LocalAccounts>
<LocalAccount>
<DisplayName>User</DisplayName>
<Group>Administrators</Group>
<Name>Administrator</Name>
<Password>
<PlainText>true</PlainText>
<Value></Value>
</Password>
</LocalAccount>
</LocalAccounts>
</UserAccounts>
</component>
</settings>
<settings pass="specialize">
<component name="Microsoft-Windows-Deployment">
<RunSynchronous>
<RunSynchronousCommand>
<Order>1</Order>
<Path>net user Administrator /active:Yes</Path>
<WillReboot>Never</WillReboot>
</RunSynchronousCommand>
<RunSynchronousCommand>
<Order>2</Order>
<Path>net user Administrator /fullname:"User"</Path>
<WillReboot>Never</WillReboot>
</RunSynchronousCommand>
</RunSynchronous>
</component>
<component name="Microsoft-Windows-Shell-Setup">
<ComputerName>*</ComputerName>
</component>
</settings>
<settings pass="windowsPE">
<component name="Microsoft-Windows-International-Core-WinPE">
<InputLocale>0409:00000409</InputLocale>
<SystemLocale>en-US</SystemLocale>
<UILanguage>en-US</UILanguage>
<UILanguageFallback>en-US</UILanguageFallback>
<UserLocale>en-US</UserLocale>
</component>
<component name="Microsoft-Windows-Setup">
<Diagnostics>
<OptIn>false</OptIn>
</Diagnostics>
<DynamicUpdate>
<Enable>false</Enable>
<WillShowUI>OnError</WillShowUI>
</DynamicUpdate>
<ImageInstall>
<OSImage>
<Compact>true</Compact>
<WillShowUI>OnError</WillShowUI>
<InstallFrom>
<MetaData>
<Key>/IMAGE/INDEX</Key>
<Value>1</Value>
</MetaData>
</InstallFrom>
</OSImage>
</ImageInstall>
<UserData>
<AcceptEula>true</AcceptEula>
<FullName>GAMEROS</FullName>
<ProductKey>
<Key></Key>
</ProductKey>
</UserData>
</component>
</settings>
</Unattended>
<Tweaks>
<Settings>
<TweakGroup name="CrashControl">
<Tweak name="CrashControl\AutoReboot">0</Tweak>
<Tweak name="CrashControl\LogEvent">0</Tweak>
<Tweak name="CrashControl\CrashDumpEnabled">0</Tweak>
</TweakGroup>
<TweakGroup name="DesktopTweaks">
<Tweak name="Explorer\NoPinningStoreToTaskbar">1</Tweak>
<Tweak name="Explorer\AltTabSettings">1</Tweak>
<Tweak name="Personalize\AppsUseLightTheme">0</Tweak>
<Tweak name="Personalize\SystemUsesLightTheme">0</Tweak>
<Tweak name="NewStartPanel\{20D04FE0-3AEA-1069-A2D8-08002B30309D}">0</Tweak>
<Tweak name="NewStartPanel\{645FF040-5081-101B-9F08-00AA002F954E}">0</Tweak>
<Tweak name="Explorer\HideSCAMeetNow">1</Tweak>
<Tweak name="Feeds\ShellFeedsTaskbarViewMode">2</Tweak>
<Tweak name="PushNotifications\NoCloudApplicationNotification">1</Tweak>
<Tweak name="Desktop\ScreenSaverIsSecure">0</Tweak>
<Tweak name="QuietHours\Enable">0</Tweak>
<Tweak name="Start\HideRecentJumplists">1</Tweak>
<Tweak name="Search\SearchboxTaskbarMode">0</Tweak>
<Tweak name="Advanced\DisablePreviewDesktop">1</Tweak>
<Tweak name="People\PeopleBand">0</Tweak>
<Tweak name="Keyboard\PrintScreenKeyForSnippingEnabled">0</Tweak>
</TweakGroup>
<TweakGroup name="Explorer">
<Tweak name="Explorer\EnableAutoTray">0</Tweak>
<Tweak name="OperationStatusManager\EnthusiastMode">1</Tweak>
<Tweak name="AutoplayHandlers\DisableAutoplay">1</Tweak>
<Tweak name="Explorer\EnableLegacyBalloonNotifications">1</Tweak>
<Tweak name="Explorer\NoThumbnailCache">0</Tweak>
<Tweak name="Explorer\NoCDBurning">1</Tweak>
<Tweak name="Explorer\ClearRecentDocsOnExit">1</Tweak>
<Tweak name="Advanced\FolderContentsInfoTip">1</Tweak>
<Tweak name="Advanced\HideMergeConflicts">0</Tweak>
<Tweak name="Explorer\NoRecentDocsHistory">1</Tweak>
<Tweak name="Advanced\SeparateProcess">0</Tweak>
<Tweak name="Advanced\NavPaneExpandToCurrentFolder">0</Tweak>
<Tweak name="Advanced\LaunchTo">1</Tweak>
<Tweak name="Explorer\NoReadingPane">1</Tweak>
<Tweak name="Explorer\HubMode">1</Tweak>
<Tweak name=".jpg\PhotoViewer.FileAssoc.Tiff">PhotoViewer.FileAssoc.Tiff</Tweak>
<Tweak name="Explorer\DisableSearchBoxSuggestions">1</Tweak>
<Tweak name="Explorer\NoNetConnectDisconnect">0</Tweak>
<Tweak name="Advanced\ShowInfoTip">1</Tweak>
<Tweak name="Advanced\ShowSyncProviderNotifications">0</Tweak>
<Tweak name="Advanced\ShowTaskViewButton">0</Tweak>
<Tweak name="Advanced\AutoCheckSelect">0</Tweak>
<Tweak name="Advanced\SharingWizardOn">0</Tweak>
<Tweak name="Advanced\HideFileExt">0</Tweak>
<Tweak name="Advanced\Hidden">2</Tweak>
<Tweak name="Advanced\ShowSuperHidden">0</Tweak>
</TweakGroup>
<TweakGroup name="PowerAndShutdown">
<Tweak name="Power\HiberbootEnabled">0</Tweak>
<Tweak name="FlyoutMenuSettings\ShowHibernateOption">0</Tweak>
<Tweak name="FlyoutMenuSettings\ShowLockOption">0</Tweak>
<Tweak name="FlyoutMenuSettings\ShowSleepOption">0</Tweak>
<Tweak name="System\ShutdownWithoutLogon">0</Tweak>
</TweakGroup>
<TweakGroup name="Privacy">
<Tweak name="appointments\Value">Deny</Tweak>
<Tweak name="phoneCallHistory\Value">Deny</Tweak>
<Tweak name="webcam\Value">Deny</Tweak>
<Tweak name="contacts\Value">Deny</Tweak>
<Tweak name="appDiagnostics\Value">Deny</Tweak>
<Tweak name="documentsLibrary\Value">Deny</Tweak>
<Tweak name="email\Value">Deny</Tweak>
<Tweak name="broadFileSystemAccess\Value">Deny</Tweak>
<Tweak name="chat\Value">Deny</Tweak>
<Tweak name="microphone\Value">Allow</Tweak>
<Tweak name="userNotificationListener\Value">Deny</Tweak>
<Tweak name="phoneCall\Value">Deny</Tweak>
<Tweak name="picturesLibrary\Value">Deny</Tweak>
<Tweak name="radios\Value">Deny</Tweak>
<Tweak name="LooselyCoupled\Value">Deny</Tweak>
<Tweak name="userDataTasks\Value">Deny</Tweak>
<Tweak name="userAccountInformation\Value">Deny</Tweak>
<Tweak name="videosLibrary\Value">Deny</Tweak>
<Tweak name="Client\OptInOrOutPreference">0</Tweak>
<Tweak name="System\AllowExperimentation">0</Tweak>
<Tweak name="System\AllowLocation">0</Tweak>
<Tweak name="DataCollection\AllowTelemetry">0</Tweak>
<Tweak name="CloudContent\DisableWindowsConsumerFeatures">1</Tweak>
<Tweak name="features\PaidWifi">0</Tweak>
<Tweak name="features\WiFiSenseOpen">0</Tweak>
<Tweak name="ContentDeliveryManager\SilentInstalledAppsEnabled">0</Tweak>
<Tweak name="System\AllowClipboardHistory">0</Tweak>
<Tweak name="CloudContent\DisableCloudOptimizedContent">1</Tweak>
<Tweak name="AppCompat\DisableInventory">1</Tweak>
<Tweak name="TrainedDataStore\HarvestContacts">0</Tweak>
<Tweak name="InputPersonalization\RestrictImplicitTextCollection">1</Tweak>
<Tweak name="InputPersonalization\RestrictImplicitInkCollection">1</Tweak>
<Tweak name="Windows Search\AllowCortana">0</Tweak>
<Tweak name="Search\HistoryViewEnabled">0</Tweak>
<Tweak name="Search\DeviceHistoryEnabled">0</Tweak>
<Tweak name="Advanced\ShowCortanaButton">0</Tweak>
<Tweak name="AppCompat\RequireIntegrityActivationAuthenticationLevel">0</Tweak>
<Tweak name="Rules\NumberOfSIUFInPeriod">0</Tweak>
<Tweak name="SmartGlass\UserAuthPolicy">0</Tweak>
<Tweak name="SmartGlass\BluetoothPolicy">0</Tweak>
<Tweak name="BackgroundAccessApplications\GlobalUserDisabled">1</Tweak>
<Tweak name="AdvertisingInfo\Enabled">0</Tweak>
<Tweak name="Privacy\TailoredExperiencesWithDiagnosticDataEnabled">0</Tweak>
<Tweak name="AppSettings\Skype-UserConsentAccepted">0</Tweak>
<Tweak name="User Profile\HttpAcceptLanguageOptOut">1</Tweak>
<Tweak name="System\EnableActivityFeed">0</Tweak>
<Tweak name="Advanced\Start_TrackProgs">0</Tweak>
<Tweak name="Advanced\Start_TrackDocs">0</Tweak>
<Tweak name="ContentDeliveryManager\SystemPaneSuggestionsEnabled">0</Tweak>
<Tweak name="InputPersonalization\AllowInputPersonalization">0</Tweak>
<Tweak name="Settings\AcceptedPrivacyPolicy">0</Tweak>
<Tweak name="ContentDeliveryManager\PreInstalledAppsEnabled">0</Tweak>
<Tweak name="ContentDeliveryManager\OemPreInstalledAppsEnabled">0</Tweak>
<Tweak name="AppCompat\DisablePCA">1</Tweak>
<Tweak name="Windows Search\AllowCloudSearch">0</Tweak>
<Tweak name="SystemIndex\EnableFindMyFiles">0</Tweak>
<Tweak name="Search\BingSearchEnabled">0</Tweak>
<Tweak name="TIPC\Enabled">0</Tweak>
<Tweak name="System\EnableCdp">0</Tweak>
<Tweak name="Shell\BagMRU Size">1</Tweak>
<Tweak name="Explorer\ShowFrequent">0</Tweak>
<Tweak name="ContentDeliveryManager\SubscribedContent-338393Enabled">0</Tweak>
<Tweak name="ContentDeliveryManager\SubscribedContent-310093Enabled">0</Tweak>
<Tweak name="Explorer\ShowRecent">0</Tweak>
<Tweak name="UserProfileEngagement\ScoobeSystemSettingEnabled">0</Tweak>
<Tweak name="AppHost\EnableWebContentEvaluation">0</Tweak>
<Tweak name="Settings\InsightsEnabled">0</Tweak>
<Tweak name="AnqpCache\OsuRegistrationStatus">0</Tweak>
<Tweak name="FlipAhead\FPEnabled">0</Tweak>
<Tweak name="MicrosoftEdge\PhishingFilter\Enabledv9">0</Tweak>
<Tweak name="Internet Explorer\PhishingFilter\Enabledv9">0</Tweak>
<Tweak name="Explorer\SmartScreenEnabled">Off</Tweak>
<Tweak name="CloudContent\DisableWindowsSpotlightFeatures">1</Tweak>
</TweakGroup>
<TweakGroup name="StartTweaks">
<Tweak name="Start\HideFrequentlyUsedApps">1</Tweak>
<Tweak name="Start\HideRecentlyAddedApps">1</Tweak>
<Tweak name="Start\AllowPinnedFolderDocuments">0</Tweak>
<Tweak name="Start\AllowPinnedFolderDownloads">0</Tweak>
<Tweak name="Start\AllowPinnedFolderFileExplorer">0</Tweak>
<Tweak name="Start\AllowPinnedFolderHomeGroup">0</Tweak>
<Tweak name="Start\AllowPinnedFolderMusic">0</Tweak>
<Tweak name="Start\AllowPinnedFolderNetwork">0</Tweak>
<Tweak name="Start\AllowPinnedFolderPersonalFolder">0</Tweak>
<Tweak name="Start\AllowPinnedFolderPictures">0</Tweak>
<Tweak name="Start\AllowPinnedFolderVideos">0</Tweak>
<Tweak name="Start\HideHibernate">1</Tweak>
<Tweak name="Start\HideSleep">1</Tweak>
<Tweak name="Start\HideLock">1</Tweak>
<Tweak name="Start\HideSwitchAccount">1</Tweak>
</TweakGroup>
<TweakGroup name="System">
<Tweak name="Windows\DisableATMFD">1</Tweak>
<Tweak name="Appx\AllowAutomaticAppArchiving">0</Tweak>
<Tweak name="Winlogon\RestartApps">0</Tweak>
<Tweak name="DiskQuota\Enable">0</Tweak>
<Tweak name="Personalization\NoLockScreen">1</Tweak>
<Tweak name="System\HideFastUserSwitching">1</Tweak>
<Tweak name="System\EnableLinkedConnections">0</Tweak>
<Tweak name="System\NoConnectedUser">3</Tweak>
<Tweak name="OneDrive\DisableFileSyncNGSC">1</Tweak>
<Tweak name="RDP-Tcp\PortNumber">55555</Tweak>
<Tweak name="Device\DevicePasswordLessBuildVersion">0</Tweak>
<Tweak name="ReserveManager\ShippedWithReserves">0</Tweak>
<Tweak name="StoragePolicy\01">0</Tweak>
<Tweak name="StoragePolicy\512">0</Tweak>
<Tweak name="StoragePolicy\256">0</Tweak>
<Tweak name="StoragePolicy\04">0</Tweak>
<Tweak name="StoragePolicy\2048">0</Tweak>
<Tweak name="System\DisableAutomaticRestartSignOn">1</Tweak>
<Tweak name="UserGpuPreferences\DirectXUserGlobalSettings">VRROptimizeEnable=0</Tweak>
<Tweak name="DeviceGuard\EnableVirtualizationBasedSecurity">0</Tweak>
</TweakGroup>
<TweakGroup name="WindowsDefender">
<Tweak name="State\AccountProtection_MicrosoftAccount_Disconnected">0</Tweak>
<Tweak name="Notifications\DisableNotifications">1</Tweak>
<Tweak name="Notifications\DisableEnhancedNotifications">1</Tweak>
<Tweak name="Features\TamperProtection">0</Tweak>
<Tweak name="Windows Defender\DisableAntiSpyware">1</Tweak>
</TweakGroup>
<TweakGroup name="WindowsUpdate">
<Tweak name="DriverSearching\SearchOrderConfig">0</Tweak>
<Tweak name="Preferences\ModelDownloadAllowed">0</Tweak>
<Tweak name="Device Metadata\PreventDeviceMetadataFromNetwork">1</Tweak>
<Tweak name="DeliveryOptimization\DODownloadMode">99</Tweak>
<Tweak name="WindowsUpdate\DisableWUfBSafeguards">1</Tweak>
<Tweak name="7971f918-a847-4430-9279-4a52d1efe18d\RegisterWithAU">0</Tweak>