-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path19045.4529.txt
3280 lines (3270 loc) · 117 KB
/
19045.4529.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:
1016000831: 48266641
1021446460: 0
1032985918: 0
1072300351: 0
1088293180: 0
1089399100: 0
1095928125: 0
111546687: 47773599
1145483583: 49303439
1174327613: 48767247
127541565: 47495199
1278931263: 0
1340793148: 0
134354236: 0
1376714045: 0
139603262: 0
1402897725: 0
1478144319: 0
1482869055: 0
1537144124: 0
1541298495: 0
1543900478: 0
1559121213: 0
1564888382: 0
15905086: 0
1592185148: 48817993
1595289918: 0
1595575614: 50305225
1600260412: 0
1644359997: 0
167703871: 48308636
17758525: 48373022
1892605245: 0
1905883448: 50477122
1928511807: 49078914
201207101: 47685916
2024991039: 48657024
2047516988: 0
2065357118: 0
2111453502: 47327425
2143475006: 0
2157375805: 48266046
2160724285: 48131134
2193245501: 47050814
21H1_Enablement: 29676690
21H1_Rollback: 31041298
21H2_Enablement: 32252862
21H2_Rollback: 32728847
2213151036: 0
2227569983: 0
2251482430: 48616191
22H2_Enablement: 38668347
22H2_Rollback: 38838645
2301758782: 48173820
2338258236: 0
2377573692: 0
2387243324: 0
2410294590: 47691005
2434186558: 0
2437037374: 47386362
2452800830: 49140474
2473223486: 0
247333182: 0
2473500988: 0
250007869: 0
2518559038: 47634939
2560026941: 0
2606385471: 47089848
2642557247: 0
2656397624: 50776953
2717054268: 48308854
2735930686: 48470774
2767075647: 0
2808259900: 0
2858292543: 47827380
2882405695: 0
2908102974: 0
2925136188: 0
2948739389: 0
3053806907: 0
3063287102: 48233459
3118115132: 0
3124419902: 0
3185462589: 47130929
3209562428: 0
3210913087: 0
3228010813: 0
3234990396: 0
3254681917: 50077998
3254972733: 0
3326517565: 0
3364284732: 0
3368954172: 0
33747261: 0
3380754749: 47332908
3404124476: 48818028
3416678719: 0
3437122879: 0
3456772415: 0
3491642687: 0
3562995004: 0
3590992189: 47242283
3611266367: 0
3660226877: 0
3667324221: 0
3702972735: 0
3739668797: 48817961
3745447229: 0
3776113982: 48700134
3796030780: 0
3819842877: 47691046
3988977980: 0
398912829: 0
3995209023: 48223909
3rd_party_MMPC_support: 0
407779647: 0
40979072: 40979072
4109039934: 0
4111080767: 47914147
4111656253: 0
4177431869: 0
44077960: 44077960
44532749: 44532749
44571814: 44571814
44573982: 44573982
44614015: 44614015
44716655: 44716655
45245049: 45245049
460235070: 0
46321195: 46321195
46635544: 46635544
47074123: 47074123
47475898: 47475898
47503639: 47503639
47826483: 47826483
47826649: 47826649
47988461: 47988461
48101911: 48101911
48415692: 48415692
48682934: 48682934
48986217: 48986217
49428482: 49428482
499552575: 49819545
50288154: 50288154
524446013: 0
593155390: 0
635895103: 0
656027966: 47225047
664973629: 49329687
706619711: 0
708228414: 0
71389RegressionFix: 0
758790463: 0
759080252: 0
768221500: 47459413
786575678: 47245013
881213758: 46956499
884357439: 47346579
930236733: 47088147
930758975: 0
953550143: 48065424
996843837: 0
AADAccountUPNNameChange: 21302662
AADAccounts: 3728205
AADJv10: 18471737
AADMobileRoaming: 8207959
AADToMicrosoftEntra: 47256402
ADSD_DjoinOneWayTrust: 0
ADSD_EventAuditLogFix: 0
ADSD_LocalUsersAndGroupsCspFix: 0
ADSD_MinPwdLengthAuditFix: 0
ADSD_PAABugAfterRebootTake2: 0
ADSD_SchemaUpgradeInProgress_Sam: 0
ADSD_SecretsMemoryLeak: 0
ADSI_IPV6_Literal: 0
AMSIUtil: 0
AOAC: 4780066
AOobeCortanaPage: 14169887
AOobeEulaPage: 11958233
AOobeHelloPages: 12364733
AOobeKeyboardPage: 11958220
AOobeLanguagePage: 11957961
AOobeLocalAccount: 15533228
AOobeOneDrivePage: 14492740
AOobeReboot: 12007874
AOobeRegionPage: 11958082
AOobeWirelessPage: 13686876
AOobeZdpPage: 12076160
APODiagnostics: 5862853
APRequestAADUsertoken: 0
ATMFDTelemetry: 0
AccountsControl_AccountShareApproval: 8359638
AccountsControl_FixAccountsHassles: 7274147
AccountsGroup_AddAccountNameSetting: 14610699
AccountsGroup_FirstPartySilentEnumSecondarySSO: 12509893
AccurateCaret: 17246832
AcknowledgeReceiptOnLoad: 43200402
AcrylicInputSwitcherDesktop: 13140185
ActionCenterConvergedAudioPlayer: 8867227
ActionCenterFlyoutHeight: 23203980
ActionCenterNotification: 8598334
ActionsPullLimit: 48875215
ActiveDumpDefault: 0
ActivityHistoryPage_CrashFix: 0
AdamSyncDeleteFix: 0
AddAADUser: 10979852
AddCloudTypeInOMSAgentConf: 0
AddFamilyPage: 19928807
AddPhoneButton: 11618552
AddSourceWindowFromViewNavigationRequested: 9205753
AddSwitchAsyncContextToPositionerActivations: 9582236
AddTextToSpeechPackages: 13516602
Add_CloudEnabled_Telemetry: 0
AdfsEnrollmentForDeviceIdFlip: 19142932
AdvancedColorBrightnessSlider: 12259052
AdvancedColorSettingsPage: 10834416
AdvancedGestureRecognition: 8052370
AdvancedGraphicsSettings: 13686262
AgeBasedAppBlocking: 7866683
AgentActivationRuntimeAPI_AboveLock: 20829994
AgentActivationRuntimeAPI_DefaultAgent_Power: 22434907
AllowAllDevicesWhenIsolated: 0
AllowAutoInstallOnAnyDiskSize: 17430650
AllowBypassUndockedShellHostCheck: 44893524
AllowConnectivityInStandby: 22073857
AllowDelayStartupDebugging: 23128665
AllowDisablePostLogonProvisioning: 0
AllowMaxSupportedItemNameSizes: 45676407
AllowNotificationSound: 19552245
AllowRenameOfExtensionOnlyFiles: 20240189
AllowScoobeDeferralByUser: 18973123
AllowSecondaryMsa: 36221535
AllowShellScalingCacheFallback: 19218124
AllowTiptsfExceptions: 9014903
AlphaPinOption: 11353195
AltTabMemoryLeak: 0
AlwaysFailFastOnCoreAppLocalizeView: 6669906
AlwaysLaunchExplorerInSeparateProcess: 18780676
AlwaysShowImmersiveCortanaOnVoiceActivation: 8584952
AmbientMode: 6482515
AnaheimEdgeVersionSessionContext: 22984758
AndromedaStore: 11437626
Annotations: 12221178
AntiTampering: 19097068
App2AppLaunchWork: 14939489
AppBarCleanupAfterCrash: 47116114
AppContractsCrashFix: 0
AppDefaultsBrowserEnlightenmentDialog: 13651267
AppDefaultsCloudEdition: 10014385
AppDefaultsCloudFileLaunchContentUri: 21261388
AppDefaultsCloudFileLaunchContentUriWCOS: 22608641
AppDefaultsDeepLinkRemoval: 14794551
AppDefaultsDesktop: 6614904
AppDefaultsDomainJoinedAADDevices: 15815625
AppDefaultsEdgeCampaignTesting: 17049655
AppDefaultsEdgeCoinCampaign: 13974053
AppDefaultsOpenWithAny: 14482024
AppDefaultsPagePerformance: 19400313
AppDefaultsPhone: 6506899
AppDefaultsSetAppAsDefault: 21154688
AppDefaultsWordPadSafelist: 0
AppIndexerIconCacheLock: 0
AppInstallBatching: 6867405
AppLockerPolicyMergeFix: 0
AppProviderVCDExamples: 8306460
AppQuickActions: 5410762
AppTimeLimits: 19253009
AppUriHandlerWildcardSupport: 11539576
AppVContainer: 8295088
AppVContainerVfs: 8144398
AppWindowBamo: 20770034
ApplicationActivationWatcher: 21726163
ApplicationGuardDownloadToHost: 13740217
ApplySafeguardsFeatures: 0
ArrowKeysUnselect: 17685567
ArsoForDesktopAad: 19437956
ArsoForDesktopDJ: 21330961
Arso_CredGuard: 21877377
ArticulatedHand2DInteraction: 18127454
ArticulatedHandData: 17781907
AssignedAccessGlobalProfile: 21835607
AssignedAccessSettingsAtomicConfiguration: 16615017
AtomicCheckFailure: 0
AttestationRetryAIKCertMissing: 0
AttributeManagerSingleton: 37586555
AttributeProvidersConcurrentRefresh: 44127408
AudioRegistryBloat: 0
Audio_Capture_EndpointType: 12041418
Audio_Capture_StreamCategory: 11902719
Audio_MultiChannelRenderAttempted: 11831216
Audio_Render_ChannelConfig: 12041542
Audio_Render_EndpointType: 12041519
Audio_Render_StreamCategory: 11902695
Audio_Spatial_Render_EndpointType: 12035770
Audio_Spatial_Render_SpatialMode: 12052500
Audio_Spatial_Render_StreamCategory: 12062568
Audio_Spatial_VSSPlayed: 11901839
AuditPolicySACLFix: 0
AuthManagerAPIExposesUserName: 0
AutoCorrectionOneKeyReversion: 19697189
AutoGameMode: 11015710
AutoGameModeProfile: 11650261
AutoGamePowerProfile: 14290802
AutoRestartDeadlineFix: 0
Autopilot: 18632135
AutopilotESTS: 15705023
AutopilotNetwork: 17630618
AutopilotReset: 21412447
AutopilotSurfaceHub22H2: 40042410
AutopilotUpdateInOobe: 18248749
AzureFeatureSet: 15584519
AzureFeaturesAndPolicies: 23348889
BCastDvrEmDmaCompliance: 0
BFSVCExFiles: 0
BFSVC_Bitlocker_Reliability: 0
BHOTelemetryCleanup: 0
BLDataFix: 46010302
BackgroundSlideShowBackupHandler: 47509666
BackgroundTaskImprovements: 46599966
BackoffOnBatterySaver: 10526621
BackportWin11Fixes: 47919543
BackupAndRestore: 34853379
BackupBannerL3Alerts: 48031278
BackupRestoreCoordinatorCore: 42285343
BackupSignals: 44532755
BackupStatus: 43857396
BackupStatusApiTipEnhancements: 0
BamQosGrouping: 0
BannerOpportunity: 13686160
BannersCanTargetKnownFolders: 17202054
BannersKFMTemplate: 14105151
BannersRegistryTesting: 18803627
BarcelonaAppContainerLaunch: 18098385
BingSearchButtonOnJpnCW_MoreDiscoverable: 48794884
BitLockerSupportForBootmgrAuthority: 0
BitLocker_Encrypt_All_Drives: 13686439
BitLocker_RP_AAD_Backup_Check: 21341508
BitlockerCAFailure: 0
BlackForestShellSupport: 10960001
BlockHPMachinesWithFirmware: 0
BlockProviders: 12675530
BlockTailoredScoobeBackupByCountry: 45511840
BlockingFunctionMeasurementInContentProcessCreation: 12269434
BlueLightReductionAppModeController: 11137471
BluetoothA2DPSink: 4450109
BluetoothA2DPSinkAbsoluteVolume: 16295586
BluetoothAvrcpAsUserService: 16315746
BluetoothConvergedAvrcp: 10826832
BluetoothConvergedHfp: 7639556
BluetoothFlyout: 19919111
BluetoothGattRobustCaching: 16540499
BluetoothGattServiceData_Api: 14188059
BluetoothHfpHF: 4854405
BluetoothLEAdvertisingV2: 0
BluetoothLEAlternativePhySupport: 0
BluetoothLEAlternativePhySupport_Api: 20977799
BluetoothLEExtendedAdvertising: 0
BluetoothLEExtendedAdvertising_Api: 20977847
BluetoothLooselyCoupledPens: 14900538
BluetoothProximityPlatform: 17815254
BluetoothQualification: 15502027
Bluetooth_InbandEnhancedScoOpenCommand: 0
BonusBarCoherence: 21858649
BoostPriorityAlwaysOnViewCreation: 22078216
BopomofoOnGIP: 18071288
BoundlessMesh: 7660207
Broadcast: 5129928
BrokeredCreateFile2: 5569419
BthA2dpAbsoluteVolume: 153764
BthCoreCx: 0
BthReprocessWhitelistOnPowerTransitions: 0
BufferCommands: 7471763
Bug9772687: 9772687
Bug_UseCommitTimerOnStart: 18031186
Bug_UseCommitTimerOnStart_OnAND: 17898813
C7P7q8k9: 0
CAADJCSP: 20396543
CAMETWLogging: 21043497
CDMLiteAssetsValidation: 44127416
CDMLiteBackportV2: 43310905
CDMLiteBackportV3: 45879529
CDMLiteBackupSignals: 45027619
CDMLiteDownloadAssets: 44127413
CDPAFSProdDomainUri: 7776321
CDPAFSPublishCortanaActivityType: 9427027
CDPAggressiveTimers: 10139606
CDPBluetoothGattTransport: 19261552
CDPCloudClipboardMonitor: 11127429
CDPLogLevelVerbose: 7245727
CDPShouldDoFrequentEncryptionKeyRollover: 18210574
CDPWifiDirectTransportUpgrader: 9322870
CET_User_Audit_Livedump: 0
CMITActivationSettingsPage: 32072588
COINCampaignCopyPasteAcrossMultipApps: 17325299
COINCampaignCopySameItemAgain: 17325319
COINCampaignUndoPaste: 17325331
CSIPLatform: 8423642
CTrackerServerImplLockingIssue: 0
CacheCleanup: 37066007
CalendarQuickCompose: 21088047
CandidateWindowRelE: 31849487
CandidateWindowTipLinkCrash: 32293807
CapabilityAccessTokenAPI: 21139028
CapabilityCheckFix: 0
CaptureExplorerHydrationCallStacks: 14166282
Capture_Picker: 0
CastServerDefaultValue: 6997058
CdplAppDataProtection: 18954006
CdplProtectKnownUserFolders: 21852964
CdplTestHooks: 17207064
CentennialBanners: 13294624
CentennialCallerXtokenSupport: 19928693
CentennialCloudFilesRegistration: 8481732
CentennialCloudFilesUninstallCleanup: 13381010
CentennialContextMenuOrdering: 13482510
CentennialIExplorerCommand: 5643234
CentennialPreviewHandlers: 8284466
CentennialPropertyHandlers: 8221526
CentennialSetKnownFolder: 13133736
CentennialShellNew: 6688715
CentennialSkipCloudDownload: 16669717
ChangeAllAppsHeaderText: 44741313
ChangjieQuickOnGIP: 14312253
ChsIMECWPerfSelfhostMeasure: 14532779
ChtIme_SddsDictionary: 13000419
ClassBasedExcludeRouteVPN: 0
CldFltBlockSession0Hydration: 0
CldFltDiagMode: 0
CleanUpRedundantCodeInVerifyServerIsMmpc: 0
CleaningAutoRebootByUserSessionKey: 0
ClientRecoveryPasswordRotation: 18157663
ClipboardDiscoverabilityExperiment19H2: 18692016
ClipboardHistoryBuffer: 13073688
ClipboardRetriesRelC: 31039808
ClipboardShellUI: 14903304
ClipboardUserAttribution: 17774328
CloudAndHistoryClipboardAPIs: 15085990
CloudDataStoreLongPathSupport: 44718782
CloudDownloadAndGo: 7007735
CloudExperienceHostLaunchTask: 19581552
CloudEyeControlSettingsRestore: 44647912
CloudFileAppInitiatedHydration: 8302267
CloudFileCopyOptimization: 0
CloudFileDisguisePlaceholders: 0
CloudFileDisguisePlaceholdersForGUIApps: 0
CloudFileGetDeleted: 0
CloudFileNavPaneAllPrimaryStates: 13822262
CloudFileProgress: 6067484
CloudFileRecycleBin: 6165239
CloudFileShowPrimaryIconOverlaysOnDesktop: 11985136
CloudFileStabilization: 5654988
CloudFileStateIcon: 394658
CloudHelp: 6833833
CloudStore: 6201249
CloudStoreBackupRestore: 39521474
CloudStoreBackupRestoreForAAD: 29796575
CloudStoreBackupRestoreForLargeBlob: 29898970
CloudStoreBackupRestoreOnWcos: 29795560
CloudStoreDiagnostics: 6624442
CloudStoreDirectPDRSClient: 43857397
CloudStoreInCloudExperienceHost: 44604678
CloudStoreLoadOnAllAccounts: 46852395
CloudStoreOnActivityFeed: 10942792
CloudStoreOnActivityFeedOnWcos: 16311570
CloudStoreOnWindowsUdk: 20357897
CloudStorePolicySyncOnSubstrate: 14114247
CloudStoreResiliency: 42325580
CloudStoreSyncOnSubstrate: 13273215
CloudStoreSyncOnSubstrateForAAD: 14114146
CloudSuggestionUpdate: 49332391
CloudSuggestionUpdate_OSClient: 49565920
CloudTGTAquisitionIssue: 0
CloudTrust: 12730897
CnnAntiSpoofingDataCollection: 11218371
CodeIntegrityReplayEAs: 0
CollectionFixForDeviceEntitlement: 0
CombinedDataUsageStatusPage: 21743692
CommandListBasedTransparency: 11793516
CompUIForEmbeddedPdf: 9669088
CompatFeatureSafeguard: 47234579
ComplianceSSO: 48000432
ComponentUICShellPolicy: 14446133
ComposerScalingPolicy: 14563840
CompositionFenceSynchronizedPresents: 7364542
ConciergeUSBConfig: 6330561
ConditionalAccess: 0
ConfigurableCopilotCommand: 45870834
ConfigurableEligibilityHttpDefaultResultForCopilot: 47480023
ConnectProfileAsyncFailure: 0
ConnectUXSearch: 5678281
ConnectedFilesCache: 20169383
ConsentGating: 44653065
ConsentGatingForAssets: 47287096
ConsentRoaming: 40896275
ConsumerASR: 15399735
ContainerOSDisable: 21184109
Containers_DynamicDeviceSupport: 19113216
ContentDeliveryManagerRS3Scalability: 11171023
ContentDeliveryPolicyRestrictions: 4877938
ControlAccountsServiceBackgroundTask: 44564887
ControlCreative: 39558955
ControlIndexingOnBattery: 13610405
ControlRulesEngineStartAccountBadging: 43698026
CopilotActiveStateFromEdge: 47530616
CopilotDefaultToFalseForBlockedCountries: 49027835
CopilotDesktopIconsFixWithIface: 0
CopilotEligibilityRedirectFix: 0
CopilotForADUsers: 48141534
CopilotLaunchActivateExplorer: 0
CopilotTaskbarIntegration: 46686174
CopyDriverStore: 0
CopyDriverToSystem32: 0
CopyFileFATFix: 0
CopyFileImprovement: 0
CopyFilesToManagedAndUnmanagedSyncRoots: 7242324
CopyLinkInShareUI: 11184089
CoreApplicationShutdown: 11449154
CoreOobeTelemetry: 12135022
Coredpus_Lock: 0
CorrectAvWhenBuildingLoadAckMutex: 48378078
CorrectiveGesture: 8644914
CorrelationVectorFix: 0
CortanaAvatarOnActionCenter: 11532590
CortanaChangeSettingValue: 12515934
CortanaEmptyRecycleBin: 13517592
CortanaNotificationPromotion: 10998643
CortanaOnLockOutProcModel: 9223629
CortanaOnSpotlight: 11545976
CortanaOpenKnownFolder: 11861797
CortanaPersonainActionCenter: 13615582
CortanaSetDesktopWallpaper: 12276201
CortanaSetQuietHours: 16533547
CortanaWindowsSearchSettings: 12716999
CreativeExpressionEvaluation: 9669601
CredUIPreventUIInSess0: 0
CrossContainerAuth: 22096226
CrossDevice: 49027547
CtacSessionContext: 32137669
CtrlBackspaceRemovesWord: 17677214
CurrentTimeZoneFix: 0
CurrentVmVersionIsDefault: 11906105
CustomFontPathRelA: 29216401
CvmVerifierCrashFix: 0
CxhExpandedWebAppContext: 25416289
CxhUdkAccess: 35434961
CxhWamLauncher: 43855800
D3D11MaxFrameLatencyOverride: 21084512
D3D11On12DecodeArrayOfTexture: 19892645
D3D11On12DeferredContexts: 13815251
D3D11On12Multithreading: 13815217
D3D12ContentProtection: 11067548
D3D12DeviceRemovedExtendedData: 12841628
D3D12DeviceRemovedExtendedDataAlwaysOn: 17728684
D3D12EnableDDon12: 0
D3D12ExperimentalShaderModels: 8482022
D3D12Force11on12: 12862045
D3D12Force9on12: 12881744
D3D12ForceDDon12: 0
D3D12HeapPriorities: 8187072
D3D12LogHeapAllocationInfoOnOldDrivers: 8793106
D3D12MetaCommand: 14291127
D3D12MotionEstimation: 12839716
D3D12OnDXCore: 18995079
D3D12PassExperiment: 8305922
D3D12PeerToPeerAtomics: 12944950
D3D12PinResources: 22965649
D3D12Redist: 20160405
D3D12SRVOnlyTiledResourceTier3: 14611894
D3D12TiledResourceTier4: 13847762
D3D12VariableRateShading: 16649109
D3D12Video: 5642192
D3D12VideoAllowListDevMode: 21834402
D3D12VideoDecodeTiers: 11964724
D3D12VideoEncryptedBitstream: 12867898
D3D12VideoExtensionCommands: 18244751
D3D12WarpProtectedResources: 14155817
D3D12WarpVideo: 12804255
D3D1X32KTexture2D: 16726471
D3D1XDisplayable: 16721823
D3D9OverlayWin7Blt: 0
D3D9_GameConfigStore_Override: 11420000
D3D9_WindowAndDisplayMismatchShim: 11576687
D3DShaderCache: 7881243
D3DXboxOnPC: 12862046
DBUpdate: 0
DBUpdateFlighting: 47095722
DESEnableBrightnessHotkeysWithoutPowerGuids: 21706588
DMA_AppFodLabeling: 0
DMA_AppFodLabelingNotepad: 0
DMA_AppFodLabelingPaint: 0
DMA_AppFodLabelingQuickAssist: 0
DMA_AppFodLabelingWindowsMediaPlayer: 0
DMA_FoDInstallBlock_Paint: 0
DMA_FoDInstallBlock_V2: 0
DMA_OCMetadataOverride: 0
DMA_OCMetadataOverrideRDC: 0
DMA_OCMetadataOverrideST: 0
DMA_SystemManagedOC: 0
DMClientFailsWhenAddSentToPFNNode: 0
DO_MccHostConfigUpdates: 0
DO_MccHostForDownloads: 0
DSE: 0
DUCForIoTEnterprise: 31949603
DXCore_SystemFileMappings: 22765950
DXGIEnableFullScreenInRemoteSession: 19316777
DXGIOnDDisplay: 11425330
DXGI_2DListQueries: 16273325
DXGI_DList_Reparenting_Decision: 18671492
DXGI_DxDb_Reparenting_Custom: 20756507
DXGI_FullscreenProxyWindowPromotion: 10772867
DXGI_WindowAndDisplayMismatchShim: 11576689
DXGI_eFSE_Enablement_Policy: 13740155
DXGI_eFSE_OnByDefaultWithPromotion: 19141198
DafEscl: 33953685
DataLeak: 0
DateTimeBackRestoreHandler: 43260917
DcatScanReactivate: 0
DeclarativeIsolation: 10964263
DeclaredConfiguration_Allow_Custom_Endpoint_3rd_Party: 44700043
DeclaredConfiguration_BulkTemplate: 43981794
DeclaredConfiguration_BulkTemplate_CheckSum: 48860261
DeclaredConfiguration_Desktop: 32303130
DeclaredConfiguration_DriftControl: 43587418
DeclaredConfiguration_MultipleAuthority: 42075907
DeclaredConfiguration_MultipleAuthority_ForAll: 43292419
DeclaredConfiguration_MultipleAuthority_NotConflictForSameValue: 44626014
DeclaredConfiguration_MultipleAuthority_WithDeletion: 43114276
DeclaredConfiguration_SupportNotConfigured: 42236871
DecoupleScoobeFromUpgradeOnLogon: 21004556
DecreaseTabSuspensionDelay: 14184448
DeepInferno: 11038064
DefaultAppUpdates: 23109802
DefaultBrowserSettings: 23562335
DefaultDownloadsSorting: 18001239
DefaultEncoding: 0
DefaultUser: 14861475
DeliverViaSendMessage: 0
DeliveryOptimization_Vibranium_UISettings: 21425853
DeprecateRX: 6478855
DepthReprojectionOnSydney: 20149162
DesktopControlCenter: 10971239
DesktopFidoAadOobe: 23257956
DesktopFidoAadPinReset: 23257967
DesktopFidoAadWebSignIn: 23257963
DesktopFidoMsaOobe: 23257765
DesktopFidoMsaPinReset: 23257924
DesktopFidoMsaWebSignIn: 23257912
DesktopIconLayoutLinkWithShift: 10971873
DesktopIconLayoutRefactor: 3261926
DesktopLocationTriggering: 13909636
DesktopSecondChanceOobe: 16198872
DesktopSpotlight: 49203500
DesktopSpotlightCleanupOnMainVKDisablement: 48114077
DesktopSpotlightSystemSettingsPageTrigger: 42829622
DesktopSpotlightToastForOnByDefault: 46401678
DesktopSpotlightUdkOnByDefault: 45848734
DesktopStartDefaultWebView: 21302095
DesktopToastViewAlwaysShowDismiss: 26524691
DesktopToastViewWithAttribution: 26524665
DesktopWorkAreaDPIAware: 8278123
DestlistLocking: 19222576
DetailedAppInv: 24645733
DevHomeStub_Provision_ARS: 0
DevModeInternal: 7631201
DeviceDelete: 13404804
DeviceDisplayNameSetup: 14845712
DeviceFamilyOverride: 15812352
DeviceFormatShimForVSS: 21650929
DeviceIntegrationPolicy: 44532601
DeviceManagementBroker: 18286859
DeviceManagementContainer: 18995725
DeviceManagementContainerEnabled: 21464537
DeviceManagementOutprocCSPs: 8426306
DeviceManagementRunCspInContainer: 21044226
DeviceManagementWin32AppSettingProviderOptimization: 22441698
DeviceMetadata_CombinedQuery: 21151430
DevicePolicyCheck: 46605382
DhcpClientV6UseWakeUpPatternInCS: 0
DigitsSubstitutionSetting: 20516266
DirectManipulationEvents: 14687480
DirectedFx: 0
DisableAutoLaunch: 0
DisableCRC32: 21092406
DisableDynamicContent: 19675651
DisableKryptonColdEnlightenment: 21600992
DisableKryptonDeferredCommit: 21680472
DisableKryptonEnhancedPageFault: 21680218
DisableKryptonHotEnlightenment: 21601026
DisableLowQosTimerResolution: 0
DisableTLS13: 0
DisableUniqueServiceDisplayNameValidation: 10036267
DisplayAdapterProperties: 25806621
DisplayKeys: 11608957
DisplayProvider: 36878944
DisplayUserExperienceInfo: 21145007
DmaSsoMSACompliance: 45292521
DmaUtcUpdate: 0
DocumentFocus: 3731051
DoubleCopyOptIn: 18515791
DownloadAcceleratorMovesForegroundPermissions: 23415849
DownloadCDMLiteAssestsAsJpg: 46036456
DownloadInputHistryFromCDS: 20128673
DownloadsStorageSense: 11315150
DragAndDropSearch: 16533548
DragDropContinuation: 15310837
DragInPdf: 17374529
DraggableThumbnailAfterSnip: 20684469
DualEngine_AllowF12: 23071760
DualEngine_ReliableClose: 21879352
DuiTicImprovements: 9043033
DynamicExperiencePolicyEnforcement: 11705370
DynamicLockImprovements: 18367428
DynamicProgIdSupport: 22456928
EDPOpenWith: 6989120
EPUB_DisableSecurityChecks: 12923997
EPUB_HostExtension: 15477137
ETW_XPath_Query_by_FileHash: 0
EapTeap: 20577243
EarlyAdopterContentRing: 5943489
EasyNotificationsSettingsL2: 20335258
EdgeSpartanDesktopAppOnWCOS: 20892916
EdgeTcpConfig: 11800907
EmbeddedFetch: 12274531
EmbeddedPrint: 13876261
EmptyFiles: 21093963
EmptyStageBackgroundImage: 32090263
EmulateMobilePersonalityOnDesktop: 8039924
EnableAADNgcKeysInWebAuthn: 21830305
EnableBackgroundTasks: 21008641
EnableCalendarViewFeedback: 5882766
EnableCopilotForLocalAccounts: 47247224
EnableDisplayColorManagementApi: 19574848
EnableDisplayColorManagementApiMSCMSPassthrough: 19736265
EnableGpuPVFor2_4Drivers: 0
EnableHostResourceSharing: 0
EnableINFProvisioningOfWCGOnByDefault: 15711028
EnableLockTracing: 14643137
EnableMSAWASCFlow: 44671690
EnableOSConfigScenariosForDesktop: 45091712
EnableOneStructCTC: 10698865
EnablePlaybackControlsUX: 18952069
EnableProjFSTestSettings: 0
EnablePropertyOverride: 46210758
EnableResourceManagerForSpotlight: 47650970
EnableSplitLayoutInPortraitModeRelA: 30037082
EnableStartOnAFC: 15940751
EnableStartOnAFCOnWCOS: 16430322
EnableSuppressionDelay: 44140992
EnableTempPlaceHolderGroup: 7010211
EnableTestModeForFileExplorerSSFtoCDSConversion: 20681411
EnableVBScriptTelemetry: 0
EnableValueBanner: 18299130
EnableWASCFlow: 44671686
EncryptAuthIdentityForSystem: 21390336
EnforceWIPForTokenBroker: 9720665
EnhancedClipboardRelA: 28390750
EnlightenmentDialogForSModeBrowser: 27486798
EnrichThirdPartyIrisContent: 37623514
EnrollOnFailure: 14198289
EnsureIrisServiceValid: 46466879
EnsureSyncTogglesMirrorMicrosoftToggles: 45487911
EraseGroupInkStroke: 13139240
ErrorFeedback: 14557998
EsclOverUSBNullReference: 0
ExcludeCorrelationId: 17654197
ExcludeDevFolders: 21445372
ExperimentalKGL: 9206638
ExperimentationViaEMS: 8313050
ExplorerEdu: 6390483
ExplorerLogonTasksBlackBox: 19400436
ExplorerScreenOff: 12949629
Export_MsixPackageVolumeRepair_API: 0
ExtendDozeS4: 15574004
ExtendSuspendTimeout: 16924527
ExtendedFeatureProperties: 0
FCONMetadata: 0
FCONPrefetch: 0
FEBackupToolsTab: 47664679
FVE_metadata: 0
FaceAggregation: 11220420
FaceFeatureConversion: 18950640
FaceRecognitionFodReinstallDeleted: 13840147
FaceRecognitionLargePose: 9609514
FaceRecognitionModelEjectionFodMarkForDeletion: 13822255
FaceRecognitionModelEjectionFodUninstall: 13849093
FailAfcAssetCallForNonMsaUser: 48044176
FailFastInIsoCreateComponent: 10242797
FailFastOnGroupLayoutChangeWithOpenFolder: 15008037
FailFastOnRecoverableUnifiedTileModelFailures: 10011417
FailFastOnSYSTEMContext: 6359403
FailFastOnSuspend: 20684471
FailFastOnUnrealizeDraggingTile: 14549398
FakeArticulatedHands: 19438168
FamilyAppUsageTracking: 20295383
FamilyAppUsageTrackingAutoStart: 21892848
FamilyDeviceToggle: 19928677
FamilySettingsAwareness: 23057458
FamilySyncOnLogon: 21238233
FconGenericMetadata: 0
FconWritesToRTL: 21392164
FdOneWayTrustFix: 0
FeatureConfigurationAadOnDesktop: 8718934
FeatureConfigurationChannel: 5244441
FeatureConfigurationMessageV2: 8304871
FeatureReporting: 6682627
FeatureStagingOobePage: 8291214
FeedbackEtwLogging: 6099184
FeedsBackgroundWebViewRefresh: 29947361
FeedsCompactModeOptimization: 0
FeedsCore: 27368843
FeedsFlyoutDynamicHeight: 0
FeedsFlyoutPreferredHeight: 0
FeedsFlyoutWiderWidthFor3Col: 0
FeedsFullVersion: 29947360
FeedsPCParamTo1S: 0
FeedsPreventMaliciousUnpin: 0
FeedsTaskbarHeadline: 27371152
FeedsTaskbarHeadlineWidthThreshold: 30803283
FeedsTestability: 28818453
FeedsTouchOpensFlyout: 30213886
FeedsWV2TelemetryRefine: 0
FeedsWebView2Migration: 0
FeedsWebView2MultiCreation: 0
FeedsWebView2VisibilityChange: 0
Feeds_1SCallTelemetryRefine: 0
Feeds_AddCriticalTelemetryEventWith100SampleRate: 0
Feeds_AddEncryptionForFeedsSettingRegistry: 0
Feeds_AddTTVRMarker: 0
Feeds_ClearBadgeCrash: 0
Feeds_DeviceEnterpriseCheck: 0
Feeds_DifferentTimeDurationAcrossPreviews: 0
Feeds_EnableFeedsReclaimCampaign: 0
Feeds_FixEscapeKeyBehavior: 0
Feeds_FixFirstViewModeChangeNotWorking: 0
Feeds_FixTaskbarSettingCrash: 0
Feeds_FixWebview2RuntimeAvailableIssue: 0
Feeds_ImproveFeedsStartupPerformance: 0
Feeds_LifecycleServerControl: 0
Feeds_SendDeviceInfoToOneService: 0
Feeds_SendDeviceTierToOneService: 0
Feeds_SignalForDifferentTimeDurationAcrossPreviews: 0
Feeds_SupportNotificationLifecycle: 0
FidoPrivacyUI: 21325834
Fido_WebAuthn_RDP: 33101665
FileExplorerClassicSettingsInCDS: 18616153
FileExplorerDarkTheme: 10397285
FileExplorerLongPath: 8479587
FileExplorerPWILO: 15709118
FileExplorerThemeOptions: 17512854
FileTypeHelperLogging: 0
FindMyStuffTip: 15342655
FixBackTrace: 0
FixBadFrameworkApplicability: 0
FixCloudapDeadlockPart2: 0
FixConcurrentRequests: 46238738
FixContextTrigger: 44872472
FixContextTrigger|mach2.warning.duplicate0: 44644897
FixFWDynamicKeywordUpdate: 0
FixFeedsTelemetryMissing: 0
FixForJoinMeetingFromCarouselInGCCHDOD: 0
FixPdevLeak: 0
FixSearchBoxSizeWhenWideSearchDisabled: 0
FixTipOnSuspendBackupBanner: 48173615
FixTokenCloudapCache: 0
FixZBandChangeRaceCondition: 9910473
Fix_ActivatedEventArgs_OpenWith: 0
Fix_InboxpackageRemoval_OSupdate: 0
Fix_LSASSCrashDueToAccessViolation: 0
Fix_SetVolumeOnline: 0
Fix_TVSWarning_RegisterClientCBS_FWService: 0
FixingIppCollectionArray: 0
FlexibleNotificationItemView: 21127659
FlightingOptInUX: 18508139
FlipHandleActiveInputProfile: 21597266
FloatingModeDefaultForDuiTic: 9226226
FlowQuickActions: 19337899
FluencyContextualProfanity: 19564265
FluencyEnableParameters: 18977140
FluencyExtendedPredictions: 18978445
FluencyMultilingual: 19570937
FontsPreview: 11156953
ForceBackgroundTaskRegister: 45031198
ForceColorGDIRampsUse: 21431699
ForceDisableSideBanner: 19908411
ForceEnableSideBannerForMSFTInternal: 19908399
ForceReactiveAudioOnlyMode: 9031501
ForcedPasswordlessPlatform: 21331712
FrameworkScalability: 7328759
FriendlyDates: 13705666
FwReauth: 0
GIPIND: 17505606
GIPJPN: 18333221
GIPKOR: 16339445
GIPVIE: 17505602
GameConfigStoreGameListEntries: 11973136
GameInputAvoidDoubleRemapping: 0
GameInputBtShareButton: 0
GameInputCancelIo: 0
GameInputIdleDetection: 0
GameInputInbox: 0
GameInputUwpFocus: 0
GameInputXUSBRequestToIrps: 0
GameInputXUSBSystemButtons: 0
GdiLeakTelemetryThreshold: 0
GdipV3: 0
GenerateAndCompareAlternates: 14302430
GenericActionAndTrigger: 7960589
GenericDataContract: 6356209
GenericStrings: 31251283
GetFeedsEnablementAsync: 0
GetMixFormatForVSS: 16620264
GetSubscriptionsLock: 40671559
Get_Windows_Package_CrashFix: 0
GfxDriverEventsMemoryLeak: 0
GipBufferOverflow: 0
GipDeviceIdentifierInfoIoctl: 0
GovernanceReset: 46367194
GpRsopBloating: 0
GpioClxD0Entry: 0
GpuAcceleratedVideoDecodingLeak: 0
GpuHardwareScheduling: 0
GpuHardwareSchedulingUi: 21054454
GraphPictureGet: 21101172
GroupPolicyCaching: 0
H2E_WPA3SAE: 34064658
HBWFER: 48474373
HEATDropsIOCTLFix: 0
HEATPenIdFix: 0
HEIF_MF_E_SHUTDOWN: 0
HMBBufferAllocationFix: 0
HMDPresenceSensorSetting: 18907866
HPDBX: 0
HaadjDelegationTokenLogon: 31797978
HackAroundMouseVelocityBug: 8021938
HamDependencyGraph: 11801082
HandleBadgeData: 0
HandwritingRelD: 26510786
HangDetectionThresholdTweaking: 16046125
HardwareKeyboardInlineMultiWordPredictionScoreDiffExperiments: 20806132
HardwareKeyboardInlineMultiWordPredictionThresholdExperiments: 20806104
HardwareKeyboardInlinePrediction: 20367435
HardwareKeyboardInlinePredictionMinimumPredictionLengthExperiments: 20805803
HardwareKeyboardInlinePredictionMinimumPrefixLengthExperiments: 21654623
HardwareKeyboardInlinePredictionNotification: 21595991
HardwareKeyboardInlinePredictionOneKeyReversion: 20805978
HardwareKeyboardInlinePredictionPersonalizedAdaptiveModel: 21169807
HardwareKeyboardInlinePredictionTypingSpeedExperiments: 21209073
HardwareKeyboardInlinePredictionUnderline: 20801365
HardwareKeyboardInlineSingleWordPredictionScoreDiffExperiments: 20371570
HardwareKeyboardInlineSingleWordPredictionThresholdExperiments: 20371679
HardwareKeyboardTextIntelligence: 18624723
HardwareKeyboardTipCFromDefaultIS: 19164539
HardwareKeyboardTipCFromOffice: 19162823
HashtagPrediction: 12990213
Hcl: 13312437
HcsFromAppContainers: 18823179
HcsGpuRequireDevice: 10999891
HcsSecurityMitigation: 11741813
HealthPillarUIRevamp: 19448595
HelpPaneChanges: 0
HeyCortanaOOBEWoV: 11516923
HibernateStackInitialization: 0
HiddenWebViewInStart: 18765106
HideBackupWizardForIneligibleAccount: 46825733
HideSystemPackages: 0
HmdsNotificationBackgroundTask: 5892332
HnsEncryption: 18977788
HnsFixVsid: 0
HnsFlowSteeringEngine: 21510609
HoldAdapterLockEscape: 0
HolographicKeyboardAndCursorPlacement: 19072173
HolographicNotifications: 9666698
HomeGroupMigrationDisabled: 8611250
HomeHub: 5224938
HostGuestCorrelation: 19965008
HotKeyTraceCollection: 19472739
HotPatchSimulation: 17664632
HresultsInSyncML: 15489351
HubOSOobeDeviceTypePage: 16607342
HubOSOobeEulaPage: 11868187
HubOSOobeKeyboardPage: 11868189
HubOSOobeLanguagePage: 11497365
HubOSOobeRegionPage: 11868190
Hub_20H2_Start: 26382751
Hub_20H2_UDWM: 26382859
Hub_21H1_MultiCameraSupport: 30860655
Hub_AppCloseButton: 36768692
Hub_DeviceWatcher: 36769362
Hub_InternalDevTools: 22667775
Hub_Subscription: 14042292
Hub_Subscription_Bypass: 17691356
Hub_Subscription_WebHosted: 16159862
HungTabNotificationDelay: 11518489
HvciCancelScan: 20815078
HvciDisabledToast: 21055388
HvciEverywhereInsiderOptIn: 14778232
HvciEverywhereSysprepEnableOnUpgrade: 0
HvciEverywhereSysprepInsidersOnly: 0