-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path22631.3527.txt
3884 lines (3874 loc) · 144 KB
/
22631.3527.txt
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
## Unknown:
1004427583: 0
1019722044: 45248337
1126878526: 0
1130498364: 0
1152278846: 46429647
1156468029: 0
1167518012: 48642895
1275465022: 0
1282564412: 0
1326854462: 0
1375924541: 0
1532650813: 0
1550dceee7e6541f6947fc7822fcd3fd: 46346320
1648287037: 0
1691278653: 0
1708799293: 47261703
1750753599: 46418052
1757807934: 0
1793743166: 0
1843018046: 47327429
1888940348: 48266050
1917481279: 0
1924810044: 47050818
1940794685: 47691010
1944715583: 0
1959397692: 48131139
2033585469: 48173824
2034646333: 47386368
2038576445: 47267328
206453055: 0
2070832445: 0
2115119421: 47634945
2135842110: 0
2297313599: 0
2330382653: 48817980
2344759613: 0
2374121791: 0
2405058879: 47089853
2411070783: 48083901
2446996796: 47261818
2515727676: 48308859
2546861375: 0
2552134973: 0
256010557: 0
2639667518: 0
2656700732: 0
2656965951: 47827385
2689479999: 47271350
27285228: 27285228
2782809405: 47130935
2794851646: 48233463
2806909244: 0
2850436413: 47261492
289028415: 0
2890806590: 47271413
2899718463: 0
2907854141: 0
2959575357: 0
2966300988: 0
29785186: 29785186
3014025535: 0
3033663804: 0
3053646141: 0
3054119231: 0
3105234238: 0
3112319293: 47332912
3121230141: 47242288
3137215806: 0
3156098367: 0
3168687423: 0
3185457471: 47327665
3208613183: 0
32112219: 32112219
3252827454: 47261422
3426891069: 47271469
345436477: 0
35409324: 35409324
35548184: 0
3574209855: 47914155
3575052604: 48372587
35907871: 35907871
3618516285: 47691051
3628830015: 46091432
36434497: 36434497
36435131: 36435131
365568316: 47459419
36571082: 36571082
37023586: 37023586
37141740: 37141740
3728983358: 44945129
37971030: 37971030
3840546111: 0
3856807229: 47261223
387592510: 47225051
3910072637: 48373028
391828798: 0
393888063: 0
3941523775: 0
3FingerAnimationSwitchApps: 36221438
3c12a7c0543c5303a5916e3ea43ca1ce: 38476224
40047512: 40047512
4060279101: 0
4109545790: 0
411451710: 46956504
4138078527: 47773603
41508182: 41508182
4154073405: 47495203
4160886076: 0
4166135102: 0
41981645: 41981645
4220155196: 0
4273865022: 0
42768911: 42768911
428487997: 47266840
42905461: 42905461
42916428: 42916428
4294847805: 47685921
43349339: 43349339
43480734: 43480734
43598358: 43598358
43669419: 43669419
43698028: 43698028
438184255: 0
44077960: 44077960
44078564: 44078564
44532749: 44532749
44533041: 44533041
44573805: 44573805
446314814: 47380696
44655134: 44655134
44717088: 44717088
44741402: 44741402
44780443: 44780443
44879714: 44879714
44925582: 44925582
45123335: 45123335
45189206: 45189206
45732051: 45732051
45799695: 45799695
45848909: 45848909
45977652: 45977652
45986094: 0
46045587: 46045587
460474685: 47088152
46111200: 46111200
46192941: 46192941
46375308: 46375308
46536486: 46536486
46541070: 46541070
46635544: 46635544
471498045: 0
47205210: 47205210
47251916: 47251916
47505206: 47505206
47692516: 47692516
47826483: 47826483
47988461: 47988461
48004252: 48004252
48101911: 48101911
48139195: 48139195
48391939: 48391939
48398247: 48398247
48439115: 0
48640443: 48640443
48655641: 48655641
48697323: 48697323
48797684: 48797684
48909483: 48909483
48933097: 0
48969045: 0
48986217: 48986217
491408703: 0
49215155: 49215155
49287928: 0
49288124: 0
49288137: 0
49290602: 49290602
49428468: 49428468
49488881: 49488881
495075647: 0
518140222: 47245017
519019837: 45868313
557452607: 0
563223870: 0
567957820: 0
615921983: 47346583
683706687: 41840276
685114687: 48065428
747565375: 48266645
753011004: 0
790769983: 47224469
803864895: 0
886966588: 0
91473213: 44892703
955f4bc824695a7c1152882648316681: 48392734
AADAclCertificateForNetworkService: 37014609
AADBindingTokenLogonForRDP: 25585329
AADClientIDForPRTHeader: 36670474
AADCrossCloudB2BWAMSupport: 25510753
AADKDFContextV2: 28991043
AADRecoveryPasswordDeletion: 26987393
AADShowErrorInUI: 19235072
AADSupportInvalidateCacheAsyncInPlugin: 19583676
AADToMicrosoftEntra: 47256399
AADVirtualDesktopTagging: 34862216
AADWAMUniversalID: 22516394
ADC: 40642155
ADFSKDFContextV2: 31335338
AHDTB: 48121519
ANCID: 43021120
APCE_fix: 44557781
ARFIO: 44811738
ASRTest: 38888144
ATFOI_Test: 41066657
ATFOI_Test_V2: 46816931
AbydosInfra: 0
AccessRegistryLockAcquireCount: 0
AccessibilityFlyoutRejuvenation: 36416085
AccessibilitySettingsBackupRestoreHandler: 45024493
AccountsGroup_FirstPartySilentEnumSecondarySSO: 12509893
AccountsServiceUdk: 28237372
AcknowledgeReceiptOnLoad: 43200402
ActionCenterNotification: 8598334
ActionsPullLimit: 44574455
AddDataToRequestGETMethod: 42948817
AddExtensionPackagesBeforeResourceAccess: 46722668
AddLoggedInUserToFamilyRoster: 36462142
AddMicrosoftDeviceToMasterToggle: 47053746
AddPhoneButton: 11618552
AddSourceWindowFromViewNavigationRequested: 9205753
AddSwitchAsyncContextToPositionerActivations: 9582236
AddTextToSpeechPackages: 13516602
AdvancedColorBrightnessSlider: 12259052
AdvancedColorSettingsPage: 10834416
AeinvLock: 37678576
AepicLock: 37712552
AeroShakeEnabled: 29983356
AgentActivationRuntimeAPI_AboveLock: 20829994
AlarmsOnlyDeprecation: 36133780
AllowBypassUndockedShellHostCheck: 43418350
AllowColorimetryWithoutMHC2: 45194707
AllowCrossDeviceUpdateForUO: 47452530
AllowCustomSSPsAPs: 37242222
AllowDevHomeUpdateForUO: 45520592
AllowOemToForceNightLightUsingDES: 34718006
AllowOutlookUpdateForUO: 45293209
AllowTFLUpdateForUO: 45293196
AllowTestOverrideForPublisherIntentMetadata: 46049481
AltTabModal: 36226836
AmbientDeviceLighting: 35262205
AnaheimEdgeDetailedView: 30031104
AnimateWorkAreaChanges: 0
Annotations: 12221178
ApiLogging: 22006889
AppBackgroundPermissions: 29616923
AppDataBackupRestore: 35763176
AppDefaultApplicationPageLaunch: 43489656
AppDefaultTelemetry: 48986653
AppDefaultVersionForPolicy: 23954010
AppDefaultsAutoSuggestBox: 33154494
AppDefaultsBrowserButton: 36648580
AppInstallBatching: 6867405
AppIsolationSeparateSublayer: 6268226
AppLaunchDb: 37347557
AppLockerPolicyMergeFix: 0
AppRestorePlaceholders: 41088358
AppRestorePlaceholdersWait: 43968183
AppRestorePolicyRemediation: 44507213
AppUriHandlerWildcardSupport: 11539576
AppVContainer: 8295088
ApplicationFrameTitleFromWindowManager: 26290763
ApplicationGuardDownloadToHost: 13740217
AppraiserSVChecks: 32064666
AppsFolderChangeNotify: 37601784
ArbiterBaselineMetadataAcquisition: 42073314
ArbiterMetadataContainer: 38339672
ArrowKeysUnselect: 17685567
ArticulatedHand2DInteraction: 18127454
ArticulatedHandData: 17781907
AssignedAccess_MultiApp: 39714986
AsyncVmBusMessages: 0
AtomicCheckFailure: 0
AttributeManagerSingleton: 37586555
AttributeProvidersConcurrentRefresh: 39379499
AudioEndpointBuilderTopoPerfImp: 27511625
Audio_MultiChannelRenderAttempted: 11831216
Audio_Spatial_VSSPlayed: 11901839
AuditBehaviorShellExperience: 37014865
AuditGdi32LoadForFontdrvhost: 0
AugmentedEntryPoint: 36226054
AuthorityChangesForAGC: 25884645
AutoGameMode: 11015710
AutoGameModeProfile: 11650261
AutoGamePowerProfile: 14290802
AutoInitSystemMRTResourceManager: 36329833
AutoRestartWidgets: 43837678
AutoSuggestBoxFlyoutFocusFix: 45880110
AutopilotReset: 21412447
AutopilotRestoration: 37048941
AutopilotUpdateInOobe: 18248749
AvoidCreatingViewWhileSuspending: 33362568
BAM_SeverParentChildConnections: 36646996
BIETSCWTest: 41255619
BLDataFix: 46010302
BSTAImmersiveShell: 37077905
BackgroundInstalls: 37746346
BackgroundSlideShowBackupHandler: 47509692
BackgroundSlideShowRestoreHandler: 47514554
BackgroundTaskCanceledTelemetry: 45625845
BackgroundTaskImprovements: 46599966
BackupAndRestore: 34853379
BackupBannerL3Alerts: 43983840
BackupButtonVisibleTrigger: 45276856
BackupRestoreCoordinatorCore: 42285344
BackupRestoreCoordinatorDelayNetworkRestore: 46735733
BackupRestoreCoordinatorThemeInitialize: 44404979
BackupRestoreCoordinatorWait: 42865538
BackupSVStartPinnedLayout: 42285200
BackupSignals: 43884502
BackupStatus: 43866633
BackupUsoStore: 36845438
BamQosGrouping: 0
BatteryNotificationsApplyAll: 27883184
BioFeedbackOnXamlIsland: 31517562
BitLockerRemovableDrivesExcludedFromEncryptionCspNode: 31583761
BitLocker_Encrypt_All_Drives: 13686439
BitLocker_RP_AAD_Backup_Check: 21341508
BitLocker_RP_Backup_Monitor: 36481772
BlackForestShellSupport: 10960001
BluetoothA2DPSink: 4450109
BluetoothA2dpAacSupport: 0
BluetoothA2dpOffloadSupport: 0
BluetoothAudioTransportSelector: 35617047
BluetoothAutoConnectionEstablishmentProcedure: 0
BluetoothConvergedAvrcp: 10826832
BluetoothConvergedHfp: 7639556
BluetoothEnhancedRadioDiagnostics: 0
BluetoothFlyout_WCOSCDG: 19919111
BluetoothHfpHF: 4854405
BluetoothL2: 29881313
BluetoothLEAudioMediaControlServer: 23710927
BluetoothLEConnectedIsochronousStreams: 23538000
BluetoothLECoordinatedSetIdentitificationProfile: 25155868
BluetoothManifestServiceLEAudio: 40047135
BluetoothProximityPlatform: 17815254
BluetoothSupportForB2CAndSwitch: 44210199
BluetoothUnifiedAudioEndpoint: 20624938
BoostOnDragSize: 0
BorderedItemsControlDisconnectedExceptionFix: 44358317
BorderedItemsControlLeakFix: 39342723
BrailleListNumberingIssueMsWord: 41449011
BrailleSupportForNarratorScripting: 44407689
Brain_BinaryFileValidation: 34806659
Brain_CheckAllCapabilities: 40466762
Brain_CheckStableForLock: 38648112
Brain_Containment_DefaultDisallowP3SxS: 48798897
Brain_DisableStateUpdateInAppContainer: 38726312
Brain_ExcludeSxSPackageOnLoadFailure: 38687670
Brain_FallbackToInbox: 43307165
Brain_PreviewPackageEnabled: 38634282
Brain_RestrictPreviewPackageScan_Containment: 46633926
Brain_ResultLoggingAsTelemetry: 43380232
Brain_SkipSelfIfSxSNotVersioned: 38762750
Brain_StableScanPreviewPackages: 38685060
Brain_V10SearchesForP3: 45786062
Brain_V12SearchesForP3: 45786681
BreadcrumbDragAndDrop: 47664723
Brokered_Win32_File_APIs: 0
BrowserSettingsErrorHandling: 37438569
BthA2dpAbsoluteVolume: 153764
BufferCommands: 7471763
BugFix31829865: 31829865
BugFix31829903: 31829903
BugFix31851003: 31851003
BugFix33456184: 33456184
BugFix34683034: 34683034
BugFix35364902_Refactor: 35364902
BugFix35366473_HideDictationForVoiceAccess: 35366473
BugFix36335292_MakeLayoutPositionButtonCollapsed: 36335292
BugFix36938728_HideToolBarOnLockScreen: 36938728
BugFix37289095: 37289095
BugFix37403713: 37403713
BugFix37803519_VisualIssues: 37803519
BugFix37826815_RegistrySettings: 37826815
BugFix37935345: 37935345
BugFix38048044_PreloadIssues: 38048044
BugFixCHSConversionListStyle: 33343659
BugFixForSV2CraftAndTheme: 35046510
BugFixHwpNoCandidates: 34886873
BugFixTabTipAdapterNullCheck: 34370999
BugFix_DisableShapeWritingOnGestureCusror: 36684004
BugFix_PasswordFeedbackAnimation: 35249410
BugFix_VoiceTypingInvocationByShellViewCoordinator: 36862943
Bugfix_PcaShutdownCrash: 45050706
CBRAppListRestore: 35460598
CBRS: 29855943
CDMLiteAssetsValidation: 41172133
CDMLiteBackupSignals: 45027619
CDMLiteDownloadAssets: 31797835
CDMLiteVersion: 33572137
CDM_WEXPIntegration: 28150355
CDSRoamPenAndInkingSettings: 38494504
CET_Kernel_Shadow_Stacks: 19770572
CGDefaultEnable: 34857562
CHSIMESOptIn: 47099301
CPSSHostImplementation: 27385849
CShellOnWindowManagerIDK: 22855141
CShellSettingsSearchbox: 19920047
CUDIEX: 47796414
CUICOORD: 28330126
CacheCleanup: 37066007
CallScenarioCenterAlignNotifications: 35595222
CameraRollUpload: 31558405
CanUserGiveConsent: 25943177
CandidateWindowOnLogonMitigation: 36730529
CandidateWindowV2ModelCleanup: 36815292
CastDiscoverabilityIrisPrompt: 46932225
CastDiscoverabilityNotification: 44592271
CastDiscoverability_UI_AllowInput: 47129450
CastDiscoverability_UI_CantFindDevice: 47129464
CastDiscoverability_UI_MoreCastSettings: 47129476
CastInterimCombinedExperience: 36646826
CastProjectL2s: 35221101
CategorySpecificXamlExtensions: 42952021
CcImprovementsForReFS: 0
CdplProtectKnownUserFolders: 21852964
CellularFailover: 43797893
Census_TryCatchRemoval: 37367356
CenterCluster: 47270778
CertInUse_Telemetry: 0
ChangeDumpTypeByTelemetryLevel: 37733775
ChangeSignatureTrustAnchor: 23882506
ChatIconBadging: 31581781
CheckBoxImageListHandleLeak_36884240: 36884240
CheckHighContrastEnablement: 45951034
CheckPersonalizationCSPEnablement: 46074233
CheckRemoveBackgroundImageSetting: 46641766
CheckWallPaperAndThemePolicy: 46592582
ChildHwndForIslandInputSite: 43667795
ChineseSimplifiedImeTheming_OSClient: 35746557
ChsNarrowKeyboard: 36963879
CldFltBlockSession0Hydration: 0
ClearMsaWamCookies: 45419461
ClientRecoveryPasswordRotation: 18157663
ClipboardHistorySettingsRejuv: 31731897
ClipboardRetries: 25277690
CloudBMRSingleDownload: 37065183
CloudBackupRestoreSvc: 42865047
CloudDataStoreDirectRestore: 43698924
CloudDataStoreLongPathSupport: 44718782
CloudDrivenTextAndGleam: 41950597
CloudExperienceHostRedirection: 25357983
CloudExperienceHostRedirectionBinary: 27980645
CloudEyeControlSettingsRestore: 44647912
CloudFileDisguisePlaceholders: 0
CloudFileDisguisePlaceholdersForGUIApps: 0
CloudPCBoot: 34546734
CloudPCBootFrontline: 44919447
CloudPCBootLogonUI: 42453017
CloudPCBootLogonUI_v2: 44128751
CloudPCCommon: 39702984
CloudPCCommon_v2: 44131712
CloudPCCommon_v3: 47542902
CloudPCFastSwitchDiscovery: 40459297
CloudPCSwitch: 34508225
CloudPCSwitchAwaitingUX: 43976477
CloudRestoreLauncher: 36767960
CloudStore: 6201249
CloudStoreBackupRestoreForLargeBlob: 29898970
CloudStoreDirectPDRSClient: 43200472
CloudStoreLoadOnAllAccounts: 46852395
CloudStoreMultipleDisplaySettings: 38858566
CloudStoreOnActivityFeed: 10942792
CloudStoreOnActivityFeedOnWcos: 16311570
CloudStoreOnWindowsUdk: 20357897
CloudStorePolicySyncOnSubstrate: 14114247
CloudStoreResiliency: 43072241
CloudStoreResiliency|mach2.warning.duplicate0: 42325580
CloudStoreSyncOnSubstrate: 13273215
CloudStoreSyncOnSubstrateForAAD: 14114146
CloudSuggestionUpdate: 36862855
ColorBackupHandler: 34853364
ColorRestoreHandler: 45802977
CombinedDataUsageStatusPage: 21743692
ComboBoxTouchNavigationIssue: 45003843
CompUIForEmbeddedPdf: 9669088
CompatFeatureSafeguard: 47234579
CompositionUseFastestMonitorAsPrimary: 42996952
CompositorClockUseFastestMonitor: 42996897
ConfigLock_DMClientCSP: 23806551
ConsentGating: 44653065
ConsentGatingForAssets: 47287095
ConsentRoaming: 40896275
ConsoleLogonUXUseDisplayLangCodePage: 27866248
Containment_UUS_AHDefaultDetection_46853789: 46853789
Containment_UUS_AddFlushTimer_46344601: 46344601
Containment_UUS_AddPowerInfoToTelemetry_46552247: 46552247
Containment_UUS_AppxProvision_46346123: 46346123
Containment_UUS_AutoActiveHoursRefresh_46238341: 46238341
Containment_UUS_BrokerDestructorLock_42156363: 42156363
Containment_UUS_BugFix_AlwaysClearAdminApprovalAfterAction_44366152: 44366152
Containment_UUS_BugFix_CodeQLSM02986_44929136: 44929136
Containment_UUS_BugFix_CurrentVersionOnlyFU_46598616: 46598616
Containment_UUS_BugFix_CurrentVersionSessionData_49072601: 49072601
Containment_UUS_BugFix_DataStoreLocks_45556653: 45556653
Containment_UUS_BugFix_DeploymentErrorCode_48783771: 48783771
Containment_UUS_BugFix_FederatedSearchResultLock_46059104: 46059104
Containment_UUS_BugFix_FiringDownloadResumedEvent_46651643: 46651643
Containment_UUS_BugFix_GetAttributeTargeting_46094346: 46094346
Containment_UUS_BugFix_HistoryLimit_45592339: 45592339
Containment_UUS_BugFix_IgnoreDownloadError_48036326: 48036326
Containment_UUS_BugFix_IpuAutoRescan_45693608: 45693608
Containment_UUS_BugFix_IpuCacheStatus_46264179: 46264179
Containment_UUS_BugFix_IpuCacheThread_33203440: 33203440
Containment_UUS_BugFix_MccHostConfigUpdates: 46081111
Containment_UUS_BugFix_MccHostForXvcDownloads: 46026037
Containment_UUS_BugFix_OfframpOneSettings_48966333: 48966333
Containment_UUS_BugFix_PublisherIntentBadSignature_41669303: 41669303
Containment_UUS_BugFix_TestKeysAllowedNoCache_45169978: 45169978
Containment_UUS_BypassStandby_48482468: 48482468
Containment_UUS_Catch_43222144: 43222144
Containment_UUS_ChangeOnVpnIsReversible: 37335379
Containment_UUS_CountdownRelatedToastDisplaying_46654910: 46654910
Containment_UUS_CountdownToast_46654910: 46654910
Containment_UUS_DMAEnforcement_47826378: 47826378
Containment_UUS_DatapointMissingInUpdateMetadataIntegritySignatureEvent_48376547: 48376547
Containment_UUS_DbErrorHandling_46518005: 46518005
Containment_UUS_Deadlock_44266139: 44266139
Containment_UUS_DefaultCDNPrefix_43813875: 43813875
Containment_UUS_DoWorkLock_46732892: 46732892
Containment_UUS_DockedFlightSettingsAPIs_46898267: 46898267
Containment_UUS_DowntimeRulesEngineRemoval_41776166: 41776166
Containment_UUS_ExpeditedAppsHonorWUZeroExhaust_45903863: 45903863
Containment_UUS_FCONMetadata_47113452: 47113452
Containment_UUS_FailoverMLIntegration_44354618: 44354618
Containment_UUS_Feature_FairScheduling_44505567: 44505567
Containment_UUS_Feature_HotPatching_47051542: 47051542
Containment_UUS_Feature_HotPatching_ModDB_48069993: 48069993
Containment_UUS_Feature_MinorUSOFixes_46718534: 46718534
Containment_UUS_Feature_PostLogonDisableServer_46639152: 46639152
Containment_UUS_Feature_RemoveIAUpdaterIfStoreProviderEnabled_48927779: 48927779
Containment_UUS_FileVerificationTelemetry_46042231: 46042231
Containment_UUS_GetFederatedServicesLogging_48731870: 48731870
Containment_UUS_GetUpdateManagerWithProviderFilters_45722020: 45722020
Containment_UUS_GraphProvider_48345727: 48345727
Containment_UUS_HTTPServerDataDOAPI: 45014229
Containment_UUS_HonorMeteredNetworkBlocks_45279540: 45279540
Containment_UUS_HotpatchPreDownload_46770631: 46770631
Containment_UUS_LessNoNetworkRetries_46091514: 46091514
Containment_UUS_LoadSheddingEnforcement_43636047: 43636047
Containment_UUS_MisattributedOSSwapDetectionBugfix_45817459: 45817459
Containment_UUS_NotificationCadencedReset_46550572: 46550572
Containment_UUS_OSSwapDetectionPositiveSignal_46425039: 46425039
Containment_UUS_OfframpIpu_43619912: 43619912
Containment_UUS_OneSettingsRedocking_45264146: 45264146
Containment_UUS_QueryDynamicAttributes_48026448: 48026448
Containment_UUS_RebootEstimateSSConfig_45742613: 45742613
Containment_UUS_RebootHistory_45795558: 45795558
Containment_UUS_RebootTimeBoundCache_45066796: 45066796
Containment_UUS_RemoveRefreshWuRedirRecoveryAction_46091646: 46091646
Containment_UUS_RemoveUpgLib_44711117: 44711117
Containment_UUS_SLSCleanup_45717484: 45717484
Containment_UUS_SLSTransientErrors_46091987: 46091987
Containment_UUS_SSValidationPredictionRefresh_46359109: 46359109
Containment_UUS_ScanHotpatching_46346146: 46346146
Containment_UUS_ScanTransientErrors_46091930: 46091930
Containment_UUS_ServiceFailureResiliency_43925584: 43925584
Containment_UUS_SetCorrelationIdOnWAMAPI_46687054: 46687054
Containment_UUS_StartupDownloadFailed_49177054: 49177054
Containment_UUS_StaticLinkingWuTrust_45488806: 45488806
Containment_UUS_SustainabilityNarrowingFix_45677336: 45677336
Containment_UUS_TaskBatteryTelemetry_45480261: 45480261
Containment_UUS_UOExpedite_DMACompliance_47913262: 47913262
Containment_UUS_UXDowntimeFUInputs_48316174: 48316174
Containment_UUS_UXDowntimeSignalQuery_47612276: 47612276
Containment_UUS_UXFeatureUpdateFix_46110984: 46110984
Containment_UUS_UXPauseStateSettings_45952994: 45952994
Containment_UUS_UXPredownloadSupport_48872055: 48872055
Containment_UUS_UpdateAttentionDEWrapper_46396370: 46396370
Containment_UUS_UpdateForcedRebootScheduling_46268222: 46268222
Containment_UUS_UpdateModesSLA_47049334: 47049334
Containment_UUS_UserIpuComplete_47052844: 47052844
Containment_UUS_UsoCapabilities_47346049: 47346049
Containment_UUS_UsoCapabilities_StoreProviderImprovements_47287245: 47287245
Containment_UUS_UxContextHashFix_46551987: 46551987
Containment_UUS_WUHotpatchSupport_48544521: 48544521
Containment_UUS_WaasTelemetry_45397723: 45397723
Containment_UUS_WatchdogActionTimeouts_45279571: 45279571
Containment_UUS_Watchdog_43469387: 43469387
Containment_UUS_WisePredictionsAPIChange_46077814: 46077814
Containment_UUS_v14_HandleBandwidthLimitPoliciesSetToZero: 49104139
ContentDeliveryManagerRS3Scalability: 11171023
ContentDeliveryPolicyRestrictions: 4877938
ContextMenuGlitch: 33937858
ContextMenuSmallRoundedCorner: 35985633
ControlIndexingOnBattery: 13610405
ConvergedEapTlsStack: 25326317
CopilotHover: 48797432
CopilotNudges_CopyImage: 48681146
CopyDriverToSystem32: 0
CopyLinkInShareUI: 11184089
CoreApplicationShutdown: 11449154
CorrectAvWhenBuildingLoadAckMutex: 48381212
CorrelationIdFix: 43746533
CorruptStoreFixes: 36750110
CortanaOnLockOutProcModel: 9223629
CortanaOnSV: 33269642
CortanaOnSpotlight: 11545976
CortanaPersonainActionCenter: 13615582
CortanaWindowsSearchSettings: 12716999
CreateEccEndorsementKey: 25354082
CredEnumerateReturnsNoSuchLogon: 24000434
CrossContainerAuth: 22096226
CrossDevice: 46619780
CrossDeviceStubPreference: 47148933
CtacSessionContext: 32137669
CurfewAllowanceCalculation: 33207570
CurrentVmVersionIsDefault: 11906105
CustomXamlUIDialog: 34037864
CxhWamLauncher: 43788167
CyberEOCompliantVoiceModels: 48095422
D3D12ComputeOnlyCustomHeapSupport: 42637981
D3D12ContentProtection: 11067548
D3D12ExperimentalShaderModels: 8482022
D3D12HeapPriorities: 8187072
D3D12LegacyAPICompatibility: 23543104
D3D12MetaCommand: 14291127
D3D12PeerToPeerAtomics: 12944950
D3D12PinResources: 22965649
D3D12Redist: 20160405
D3D12SRVOnlyTiledResourceTier3: 14611894
D3D12TiledResourceTier4: 13847762
D3D12Video: 5642192
D3D12VideoEncode: 23156850
D3D9OverlayWin7Blt: 0
D3D9_GameConfigStore_Override: 11420000
DBUpdateFlighting: 47095722
DESEnableBrightnessHotkeysWithoutPowerGuids: 21706588
DHDefaultUpgrade: 31561196
DLAApis: 42501175
DLToastDelay: 46097855
DLWatcherRetryLoop: 45105418
DPLOnPushAPI: 29848869
DSBSearchAPIParamRefactor: 43998261
DXGI_2DListQueries: 16273325
DXGI_BufferUpgrades: 25957903
DXGI_BufferUpgrades_DX12LDA: 36778252
DXGI_BufferUpgrades_Notifications: 28817166
DXGI_BufferUpgrades_Optimizations: 32156044
DXGI_CrossAdapterScanOut: 24599531
DXGI_ExpandedPresentErrors: 37303151
DXGI_Hybrid_DList_Support_Update: 24640165
DXGI_VailMPO: 23425898
DXGI_WindowedSwapEffectUpgrade: 23990563
DXGI_WindowedSwapEffectUpgradeToggle: 29747211
DafEscl: 27860843
DamUserSessionDelay: 0
DateTimeBackRestoreHandler: 43231308
DateTimeRestoreHandler: 45026441
Dcr_22_12_NonSec: 0
Dcr_23_01_NonSec: 0
Dcr_23_02_NonSec: 0
Dcr_23_03_NonSec: 0
Dcr_23_04_NonSec: 0
Dcr_23_05_NonSec: 0
Dcr_23_06_NonSec: 0
Dcr_23_07_NonSec: 0
Dcr_23_08_NonSec: 0
Dcr_23_09_NonSec: 0
Dcr_23_10_NonSec: 0
Dcr_23_11_NonSec: 45034731
Dcr_23_12_NonSec: 0
Dcr_24_01_NonSec: 0
Dcr_24_02_NonSec: 0
Dcr_24_03_NonSec: 0
Dcr_24_04_NonSec: 45034769
Dcr_24_05_NonSec: 0
Dcr_24_06_NonSec: 0
Dcr_24_07_NonSec: 0
Dcr_24_08_NonSec: 0
Dcr_24_09_NonSec: 0
Dcr_24_10_NonSec: 0
Dcr_24_11_NonSec: 0
Dcr_24_12_NonSec: 0
Dcr_25_01_NonSec: 0
Dcr_25_02_NonSec: 0
Dcr_25_03_NonSec: 0
Dcr_25_04_NonSec: 0
Dcr_25_05_NonSec: 0
Dcr_25_06_NonSec: 0
Dcr_25_07_NonSec: 0
Dcr_25_08_NonSec: 0
Dcr_25_09_NonSec: 0
Dcr_25_10_NonSec: 0
Dcr_25_11_NonSec: 0
DebounceDeviceConnectSound: 34734680
DeclaredConfiguration_Allow_Custom_Endpoint_3rd_Party: 44700043
DeclaredConfiguration_BulkTemplate: 43981794
DeclaredConfiguration_BulkTemplate_CheckSum: 48860261
DeclaredConfiguration_Desktop: 32303130
DeclaredConfiguration_DriftControl: 43587418
DeclaredConfiguration_SupportNotConfigured: 42236871
DecreaseTabSuspensionDelay: 14184448
DeepInferno: 11038064
DefaultApp: 16458099
DefaultAudioDeviceChangeUserPrompt: 30163509
DefaultBundle: 48818825
DefaultUser: 14861475
DelayedForceEviction: 0
DeliverDespiteMessageFilter: 0
DeliveryOptimization_DnsSdPeerDiscovery: 37260154
DeliveryOptimization_RLedbat: 32050313
DeprecateVoiceAssistantLighting: 48746228
DeprecatedBatteryUsageUX: 28919845
DepthReprojectionOnSydney: 20149162
DesktopSettingsBackupRestoreHandler: 45079713
DesktopSpotlight: 26008405
DesktopSpotlightCheckStateFix: 46677043
DesktopSpotlightContextMenuIrisBeacons: 44876995
DesktopSpotlightDataTemplateV2: 41520931
DesktopSpotlightDispatcherQueueShutdownFix: 44529175
DesktopSpotlightEnterpriseControl: 45472624
DesktopSpotlightFocusFixAfterClosingFlyout: 44571790
DesktopSpotlightHandleNoIrisCreatives: 43581066
DesktopSpotlightImageRescale: 0
DesktopSpotlightImg0AsFallbackwallpaper: 46353846
DesktopSpotlightLogonFlagCheck: 46868766
DesktopSpotlightMultiMonitorPortraitFix: 45941751
DesktopSpotlightMultiMonitorTranscodeFix: 44633047
DesktopSpotlightNoFallbackImage: 43527701
DesktopSpotlightOOBEBackgroundFix: 43027450
DesktopSpotlightOnByDefaultOnFirstLogon: 46550263
DesktopSpotlightOnByDefaultOnUpgrade: 46550267
DesktopSpotlightOneTimeUpgrade: 46559584
DesktopSpotlightProtocolLaunchUri: 46616323
DesktopSpotlightRejuvenatedFlyout: 40268500
DesktopSpotlightRescaleImprovements: 47162830
DesktopSpotlightRestoreLogon: 46741527
DesktopSpotlightSystemSettingsPageTrigger: 38179238
DesktopSpotlightThemeIntegration: 41080559
DesktopSpotlightThemeSetToCustomIssue: 46229605
DesktopSpotlightTipImprovements: 46890315
DesktopSpotlightUdk: 39880030
DesktopSpotlightUdkOnByDefault: 41744267
DesktopSpotlightUdkRefreshOnUpgrade: 40522394
DesktopSpotlightUndocked: 39710659
DesktopSpotlightWallpaperFitNotSetToFill: 46546029
DesktopStickerEditor: 36165846
DevPropKeyFromMSOSDescriptor: 0
Devi_Back_Handler: 49165411
Devi_Res_Handler: 49165413
DeviceBasedLicensing: 28179707
DeviceCountryCode_SilentRegistration: 48336923
DeviceIntegrationPolicy: 44532601
DeviceIntegrationPolicyWXH: 44740108
DevicePolicyCheck: 46466990
DevicePostureApiInShell: 0
DevicePropertiesWXH: 46008647
DialogReadingWrongIssue: 44779628
DifferentiatedSnapGroupThumbnails: 34123984
DigitsSubstitutionSetting: 20516266
DimeForegroundFix: 44355268
DisableAADCloudAPPluginInRegistry: 31014477
DisableAddAccountForFamilyNonOrg: 36660568
DisableAutoUserShutdownTimeout: 0
DisableContextMenus: 36435038
DisableDesktopSpotlightOnFatalFailure: 43612613
DisableDisplayMessageForSvchost: 37998906
DisableHologramPersistence: 8317718
DisableHomeGroupIdentityProvider: 31465552
DisableReadyBoost: 35744813
DisableSearchPolicy: 37095904
DisableSearchViaPolicy: 36137438
DisableUniqueServiceDisplayNameValidation: 10036267
DismissSearchOnDisplayChangeUndocked: 0
DisplayAdapterProperties: 25806621
DisplayMessage: 34509399
DisplayProvider: 36878944
DisplayRejuvPage: 31010280
DmaRemapping: 0
DmaSyncCrossThreadComCallFix: 48800088
DoNotDisturb: 33212737
DoNotDisturbSystray: 36183526
DoNotSetImpressionIdWhenSearchFlyoutIsDismissed: 44872529
DoNotShowSuggestionsOnStart: 43979271
DockedFamilySettingsPageSV2: 35899634
DontAllowUpdateActionsDuringRevert: 39043106
DownloadAcceleratorMovesForegroundPermissions: 23415849
DownloadAssestsAsJpg: 47097649
DragAndDropGlyphUpdates: 35688218
DropPowerReferenceOnLPE: 0
DualEngine_AllowF12: 23071760
DualEngine_ReliableClose: 21879352
DualEngine_SuppressUnneededZoomEvents: 29059948
DualEngine_SynchronousZoom: 29078494
DuiTicImprovements: 9043033
DxDb_ExpandedFeatureSupport: 36371330
DxDb_ExpandedPublishing: 36371251
Dxgk64BitOnlyDriver: 0
DxgkGpuVaIoMmu: 0
DynamicRetryTaskPeriod: 45892232
DynamicSearchBox: 37595921
DynamicSearchBoxAPIs: 36933099
E3ForAllPowerPlatformRoles: 0
EPUB_HostExtension: 15477137
ESUIPOMTest: 39636948
ETUpdate: 34308080
EUDB: 38168067
EVAIO: 45572939
EapTeap: 20577243
EapTls13: 25326323
EarlyDownloaderLogging: 45416246
EarlyOobeOEMRegistration: 37047129
EcoDarkTheme: 41249924
EcoMode: 31563046
EcoModeDynamicRefreshRate: 44487962
EdgeGestureHideTouchKeyboardBugFix: 36544006
EdgeTcpConfig: 11800907
EdgeUpdate: 32165251
EditionBasedDefaultPolicyValues: 31840299
EmailAndAccountsStringsChanges: 44652844
EmaillessMSA: 31390298
EmbeddedFetch: 12274531
EmbeddedPrint: 13876261
Emoji15Update: 40213648
EnableDesktopSpotlightOnRestore: 46717502
EnableGranularKeyboardBrightness: 37386637
EnableHostResourceSharing: 0
EnableMPR: 28997116
EnableMSAWASCFlow: 44671690
EnablePpl: 35387651
EnablePropertyOverride: 46210758
EnablePublisherIntentTMI: 29882130
EnableRegularPathFetchingForGallery: 43041464
EnableSessionTerminateNotification: 24006437
EnableSpotlightForInboxImagesFirstLogon: 46551901
EnableSpotlightForInboxImagesOnReboot: 46551941
EnableSpotlightForInboxImagesUpgrade: 46551929
EnableSpotlightForOEMThemeUsersOnReboot: 46560585
EnableSpotlightForOEMThemeUsersUpgrade: 46551979
EnableSuppressionDelay: 44140992
EnableSystemResourceManagerForExplorer: 31832430
EnableWASCFlow: 44671686
EnabledHighestSyncToggleIfMicrosoftHighTogglesEnabled: 45418630
EndTask: 42592269
EnergyOpticsCore_2309: 0
EnergyRecommendationsUiV2: 44487964
EnforceWIPForTokenBroker: 9720665
EngagedAndAuto: 38671435
EnhancedErrorMessageForUpdateRebase: 48847233
EnrichThirdPartyIrisContent: 37623514
EnrollOnSuccess: 37669470
EnsureCorrectWXHDll: 43675366
EnsureIrisServiceValid: 46466879
EnsureSyncTogglesMirrorMicrosoftToggles: 45487912
ErrorFeedback: 14557998
ExcelListItemAnnouncement: 46403446
ExcludeDevFolders: 21445372
ExodusEnablement: 41287235
ExpeditedApps_EKBTrigger: 45647697
ExpeditedApps_EKBTriggerRetry: 45932354
ExperienceDescriptionParsingFix: 43786244
ExperienceExtensionsCanHidePages: 36150872
ExperienceLoadCrashDetector: 37927297
ExpressiveSuggestionUIPageColdStartPerformanceImprovement: 28999812
ExtendDozeS4: 15574004
ExtendPoseQueueLength: 0
ExtendSuspendTimeout: 16924527
ExtendedPlaceholders: 42403856
ExtensionTIPTestIdContainment: 48695812
FETV: 35352817
FHL2021SpringInputScopeOnRunDialog: 32215163
FSIAPurchaseAppUpdate: 43393662
FailAfcAssetCallForNonMsaUser: 48044262
FailAssetCallForNonMsaUser: 47171888
Failover_MLControlsFailoverMarkingEnabled: 45016847
Failover_MLEvaluationEnabled: 44776155
FamilyAppRedirectionRemoval: 46413862
FamilySafetyRemoteLock: 32425780
FamilySettingsAwareness: 23057458
FastResource2: 0
FconWritesToRTL: 21392164
FeatureConfigurationAadOnDesktop: 8718934
FeatureConfigurationChannel: 5244441
FederatedServiceCollectionFix: 39647196
FetchConcurrentInstallsFromOneSettings: 33337770
FetchIrisTriggerJSON: 36803287
FileSearchQueryPerfImprovements: 42877210
FilterDevicesUsingDeviceInterfaceProperties: 0
FindInStart: 38937525
FingerPrintStringBugFix: 47524897
FixBondSaveForDefaultSettingBackup: 48414562
FixConcurrentRequests: 46238738
FixDynamicSearchBoxTipTestFailures: 49598346
FixIssueWhenGettingAadInfo: 45205209
FixNarratorNeuralCapitalizationSetting: 41171255
FixNarratorOnBulletList: 26742989
FixRedudantantFileClosure: 48470033
FixSinglePaneSearchBoxOnTaskbarPortraitIssue: 44049719
FixTipFileNotFoundPersonalizationThemeBackupHandler: 47094767
FixTipOnSuspendBackupBanner: 47636837
FixZBandChangeRaceCondition: 9910473
FixingDisablingDashboardOnTaskbar: 49572415
FlashDeprecation_Notification: 25217842
FltDdAttachPol: 44454775
FluencyMultilingual: 19570937
FocusAssistLauncher: 34641570
FocusAssistRejuv: 30204574
FocusSettingRejuv: 35742169
FoldersInPinnedList: 29790350
FontsPreview: 11156953
ForceBackgroundTaskRegister: 45030863
ForceSeptConfigUpdate: 45931531
ForegroundLockTimeout: 0
FpSTestSm: 44713148
FpvTest: 42187503
FrameworkScalability: 7328759
FsctlProcessMitigation: 0
FullScreenModeTextInputViewVisibility: 27720966
FullUpdateManagementHololens: 47171091
FullscreenSnipResolution: 29740142
GIPKOR: 23660839
GIVT: 34896603
GPM_BlitModeTracking: 24779616
GPM_LightWeightDxgKrnlETWKeyword: 24338497
GPM_MLSD: 25222305
GameConfigStoreGameListEntries: 11973136
GameMRU: 37956063
GamingOverlayControllerBarLaunchSignals: 36361313
GamingOverlayExperienceManagerOptional: 36798523
GamingOverlayMultiWindowSupport: 30380406
GdiEnableLiveKernelDump: 0
GeneralDb: 37891354
GenerateAndCompareAlternates: 14302430
GenericActionAndTrigger: 7960589
GenericDataContract: 6356209
GenericStrings: 31251283
GetStartedIrisNavMesh: 36803295
GetStartedTriggerUpdates: 42963857
GhostFrameSystemTerminateReason: 21763906
GovernanceReset: 46367194
GpuVaPagingHistoryFre: 0
GraphRecentItemsManagerEnabled: 38294196
GraphRecentItemsManagerEnabled|mach2.warning.duplicate0: 31923344
GuidedSnapAssistContinuity: 33793580
HBWFER: 48248478
HEVCMTP: 17370187
HMDPresenceSensorSetting: 18907866
HNC: 39628214
HT_Fix_NarratorScripting: 45386863
HaadjDelegationTokenLogon: 31797978
HamDependencyGraph: 11801082
HandleAddVoicesException: 40582253
HandwritingSurrogatePairCharacters: 44083703
HardwareMicMuteButton: 36689271
HardwareMicMuteConfirmator: 35232539
HardwareMicMuteHotkey: 36756578
Hcl: 13312437
HcsRelaxRpcAccess: 37715110
HcsSecurityMitigation: 11741813
HdrInRdp: 38277973
HeadingAnnouncementIssue: 45705436
HelloFaceDriverDowngradeCapability: 34933858
HgsPlusParkingSupportRequired: 0
HgsPlusSupportRequired: 0
HideAllAppsList: 36435044
HideBackupWizardForIneligibleAccount: 46825733
HideNotificationBadgeOnShyTaskbar: 44280635
HideRecommendedSection: 36435115
HideSystemTrayDateTimeSetting: 41437381
HighPriorityFileProvider: 46094352
HkuMonitor: 38198463
HnsEnableLWNICsForDrVNICs: 30100782
HnsFlowSteeringEngineNetworking: 30266022
HnsMirroredRoutingMultiple: 36991632
HnsWcosLoopback: 23636350
HoloImmersiveShellExtensionPointOptional: 36499053
HolographicNotifications: 9666698
HomepageRecognizesAssociatedMSA: 46251949
HotKeyTraceCollection: 19472739
HtmlLauncher: 19908852
Hub_20H2_Narratorbug: 23702633
Hub_AllowTabletMode: 34909689
Hub_AppCloseButton: 23590089
Hub_DeviceWatcher: 34155662
Hub_EmptyStageBackgroundImage_SC: 33464502
Hub_Win32Vtc_Converged_SC: 33464486
HungTabNotificationDelay: 11518489
HvciAutoEnableOnSV: 0
HvciLimitedAutodisablementLogic: 0
HvciRemoveCETRequirement: 0
HvciRollback: 18630433
HwpAllowFastMsrOptimizations: 0
HwpAllowQosIdleOptimizations: 0
HyperVFirewall: 34558427
ICU: 45006500
ID44656322: 44656322
ID44716751: 44716751