-
-
Notifications
You must be signed in to change notification settings - Fork 304
/
Copy pathFeatureDictionary.pfs
17000 lines (17000 loc) · 594 KB
/
FeatureDictionary.pfs
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
Servicing_SearchIconOnTabSwitch_56246293,56246293
DesktopSpotlightImprovementsXRFixes,56201342
CameraQI2505,56192424
Bugfix_PcaUiTelemetry,56192165
InvSvc_GetAppInfoLocking,56172704
Servicing_RdFreezeFix,56163435
ArbiterMetadataContainer_56160316,56160316
Servicing_CloudFilesSearch_GroupedResults,56159287
Servicing_LogonTouchKeyboardCrash_56146500,56146500
SimplifyRootPageVariable,56133263
ShellUIHostCoordinatorSkuCheck,56120340
DesktopSpotlightGetImageFileNameReturnBugFix,56119970
UXFrame_LocalizedAccessibilityName,56115719
Servicing_UninstallTencentEmulator,56112312
Bugfix_TSFBL_56110835,56110835
ResolveTVSErrorNullSecurityDescriptorIssue,56098563
PerUserSetup_TIPIntervalDetection,56096818
VAMTBF,56083323
CapabilityForConsent_EnterprisePolicyFix,56080169
EnergySaver_StatusApi_Updates,56079640
Servicing_FailFastGuardICallCheckFailure,56079061
PCA,56073636
LODTTC,56071983
DesktopSpotlightOnByDefaultForUnattendAutoLogon,56069809
Muse_Settings_FixIPUHistoryTitle,56066957
Servicing_CloudFilesSearch_ThumbnailNotifications,56066650
Servicing_CloudFilesSearch_DisableIndexerRowsetEvents,56066642
Servicing_CBSEU,56049913
Servicing_WCPMDCMAX,56048502
ActivePivotSelectionFallback,56048098
DefineWindowsUpdateManaged,56036357
UninstallTencentEmulator,56034819
StorageReserve_HelperLib_Hardlink_fix,56033854
Servicing_FEAiDadTestScopeIncrease,56031573
RadialControllerSettingsProtocolFix,56023062
Servicing_WinREVersionTelemetry,56020814
CU_56012900_ICI,56012900
CorrectListOrderingForColorCpl_Extended,56005324
FixInteractiveAllowDisallowList,55994102
Servicing_AudioEndpointBuilderAPOMigration,55993121
GenTel_PrivacyIncident,55991540
FixInvalidTokenHandleDuringScan,55964290
NameColumnHeaderUXFix,55958955
Servicing_FodLPEnumHardeningErrorHandlingFixes,55957701
CTPAUI,55954773
TSM,55954321
StopWebAppTipTestOnNavigationFailed,55952497
Servicing_IEMode_CheckFailure_BrokerCallPostMessageOrBrokerCallAsfwAndWait,55951187
Servicing_EnableInspect_55950615,55950615
Servicing_InspectBugFixes,55950532
MicaUpdateSolidColor,55940373
PSTTM_Test,55939528
NonArpInvSvcRemoval,55936748
WuSettings_StopBackwardProgress,55935625
UpdateCryptoAPIs,55934965
Servicing_EAXReverbRemoval,55934177
Servicing_RecoveryRobustnessFeature2,55934048
Servicing_ClientProxyTipTest,55933734
MsiReinstallModeOverrideLeakFix,55928707
MODSITR,55927463
UICTPA,55925420
SMB2,55920876
SMB1,55920864
BMB2,55920855
BMB1,55920676
Capture_ItemClosedEventOnVisibility_2,55919943
SettingsHomepage_SigninCardDelay,55919400
Servicing_CloudFilesSearch_GalleryFix,55918674
WBKSV,55915660
SustainabilityFixes_Q4,55914679
FileExplorer_FixTileModeMultiSelect,55910487
Servicing_CloudFilesSearch_QueryCancelTipFailure,55905055
WBWVLTA,55899600
Servicing_NodeMgrCompilerWarningC4146,55898029
Servicing_CloudFilesSearch_GalleryNavigate,55888583
Containment_UUS_WinRTUpdateBlock_55878418,55878418
PrintAccessibilityFixes_2505,55878033
Servicing_RemoveStoreSls,55877808
WebView2inWAMPlugin_55874806,55874806
FRWF,55870198
Containment_UUS_EnableGraphProviderPolicyV2_55857940,55857940
LanguageFodSizeCheck,55849117
MSRC94207_55848306,55848306
FBSCCR,55843856
DriverSetup_WuImportLogImprovement,55832322
Servicing_FixAutoUpdateForCTA_55830286,55830286
Servicing_FixAutoUpdateForCTA_55830256,55830256
Servicing_StateTransitionForTransientStates_55830200,55830200
Servicing_StateTransitionForTransientStates_55830164,55830164
SHINE_2504_Bugs,55828635
Servicing_GpRsopBloating_55824335,55824335
DesktopSpotlightRightClickContextMenu,55823572
WBDCN,55823050
Containment_UUS_WinREHistory_55819174,55819174
Servicing_CBSDTO,55816837
Capture_CAMIGraphicsCaptureItemInterop,55816742
Containment_UUS_OneSettingsAppendFeatureId_55816302,55816302
EnrollmentAttestationDebugFields_55815706,55815706
Servicing_PABNarratorACDC,55814650
DriverStore_PrimitiveDriverEnumeration,55814370
KEKUpdateBlockList,55813602
KEKUpdateAllowList,55813532
Containment_UUS_Bugfix_PurgeUpdates_55812863,55812863
UCPD_55805446,55805446
Servicing_SearchUXHighContrastBorderFix_55802560,55802560
Servicing_FEAiDadTestsCompleteOnClose,55801115
BitLocker_Backup_MSA_Command_Line,55800676
Servicing_SearchEducationAnimatedIconThemeFix_55800030,55800030
ValidateTest,55798745
UpdatedAccountProfilePictureDisplay,55798434
Servicing_NDUPRearrangeSkipChecks,55798016
MSRC94087_55797119,55797119
Servicing_Narrator_LocalizeCloseButton_55789214,55789214
Servicing_DBUpdate_External_Rollout_55767368,55767368
Containment_RefactorGraphProviderTelemetry_55767062,55767062
DesktopSpotlightShellLauncherKioskCheck,55763438
COTFTest,55762478
HoverCards,55754297
RecoveryFix55754018,55754018
Containment_UUS_EnableWinRESupport_55752990,55752990
Servicing_HotpatchDoNotIgnoreRevision_55752359,55752359
Servicing_WpfCrashInTransitoryDocument_55752217,55752217
GamepadVKeyRoutingOptIn,55740572
ResetRecycledTaskListButtons,55739408
RobocopyEfsRawNoRetryFix,55739196
Servicing_RemoveSearchDelayTimer_55738909,55738909
WuSettings_CloudUpdatePolicyList,55738531
Servicing_AccessAgentItem_55735922,55735922
Bugfix_LLTD_TVS_Warning_26837,55729475
WBSWVC,55729153
Servicing_VFPElbDsrResource,55723553
NpuMultiNodeEnergyFix,55723466
Return_NoRedundancy_Disks_Fix,55722781
Servicing_DowntimeEvaluationFix_55722353,55722353
Servicing_SdoSensorSelectionFix,55719655
ExpanderHeaderDisplayString,55719046
RecoveryFix55718781,55718781
RecoveryFix55718774,55718774
Servicing_Narrator_LocalizeCloseButton_55714585,55714585
Servicing_FodLPEnumHardening,55714093
Servicing_TelibFixRetryLogic,55713571
GamepadInvocation,55710785
Servicing_BatteryUsageSortbyDuplicate,55709674
EnhanceContainsOperator,55708326
Servicing_CBSEnableEcoQoSConfiguration,55706234
TvsWarningFixes,55697412
WBODFSFF,55696032
MSRC93888_55687352,55687352
Servicing_ADSD_LAPS_BA_pwd_rotation_fix,55686984
FujitsuRsErrataFixes_55686671,55686671
CanUseD3DKMTIsFeatureEnabled,55684787
WBLSTF,55683073
PrintPlatformStabilizationFixes_2505,55677794
Census_WMI_TPM,55676715
WBODICF,55672795
Servicing_SearchUXIconNonIndexedLocationFix_55656186,55656186
SrumEnableConfig,55648371
BugFix_XamlIslandsfixForFlyoutsCTTA,55645816
Servicing_Kerb3961ApRepOfferKeys,55641152
NetworkUX_BugFix_55623962,55623962
Servicing_SessionXmlParseFix,55619081
WBDPPF,55617340
FDPAD_55608277,55608277
SmartInstallFixPayloadHardcoding_55606662,55606662
Appraiser_Remove_CTAC_Telemetry,55591761
ECU532,55590532
Servicing_LeastSetBitC4146Fix,55578844
LeastSetBitC4146Fix,55578803
CAMStorageDatabase_Wave1,55578545
WBSOD_55575516,55575516
ODTTVA_55575501,55575501
Servicing_RecDisk_Telemetry,55572123
MSRC93585_55569279,55569279
MSRC93582_55568968,55568968
DeviceCatalogPriority,55565157
CDLiveCaptionsMMF,55559405
FST,55557761
WBFTSCU,55556675
Servicing_Feeds_ExposeUserTriggerTimestamp,55555721
NetworkUX_BugFix_55554471,55554471
AutopilotClearUserEspCacheOnComplete,55554139
ChsPinyinDsRwlock_TVS_Fixes,55553644
Servicing_FixAutoUpdateForCTA_55553084,55553084
Servicing_ContextMenuLabelsCrashFix_55550636,55550636
LocalizeBatteryUsageSystemName,55549115
WidgetsCommonComponentContainmentV2Store,55548655
PSAF,55543394
ReFSDedupSvc_Batch_Dec_BugFixes,55536860
Scenario55536346,55536346
VAPKILS,55532803
Appraiser_Setup_EndLessLoopFix,55532675
FDPAD_55527452,55527452
FirewallLogs,55521637
Servicing_SPRBatteryUpdates,55520808
RemoveInsertedPreSearchCall,55520675
Servicing_FileExplorer_SessionWatcherMetricsOptOut,55518345
AutopilotDppRebootFix,55517900
Servicing_UniscribeGB18030,55514917
Servicing_EnableMSIEFTPDll_Telemetry_55512851,55512851
IMATest,55512263
Appraiser_SummaryAggregator_Null_Check,55500300
SystemSetting_SearchLanguageUpdate,55495805
WuSettings_ImprovedUpdatePolicyListBugfix,55495037
DesktopSpotlightPersistWallpaperSettingsCallAvoid,55494172
Servicing_FixNullLockscreenAdaptiveCard,55493936
TCPIP_BugFixes_2504,55490688
PreregisterPackagesIfNecessary,55483477
Servicing_PfxImport_EmptyInstanceData,55482091
RestoreTab_55481270,55481270
Servicing_RemoteAudioExclusiveStreamFix,55480234
DesktopSpotlightKioskFix,55480224
Servicing_RDGDeviceRedirection_55480083,55480083
QualcommPrimaryJpegEncoderHardcodeRemove,55474173
WBODICMF,55474164
WBLTA_55471283,55471283
WBLTA_55471278,55471278
Servicing_InternalL2LayerMissing,55465894
Servicing_InputScenarioCheckUpdate,55464315
PurchaseCallFastFail,55462183
TrackDailyLaunchCount,55455917
Servicing_DwmCrashLoopInBamoPrincipalImpl,55448959
Servicing_SBE_FCK_Rotation,55448318
Servicing_AccessAgentItem_55447238,55447238
Servicing_AccessAgentItem_55447237,55447237
Servicing_SCC_NullWorkConnection,55447215
Servicing_NoNullWorkItemInQueue_55447202,55447202
Servicing_NoNullWorkItemInQueue_55447193,55447193
SetTicketVariables,55445286
DisplayMux_PostGA_BugBundle_1,55445215
ODTTVA_55442377,55442377
Servicing_SearchEducationAnimationTypingEventFix_55435574,55435574
DisplayBugBundle_2504,55435102
Enable3x4StagingControls,55435097
DisplayBugBundle_2503,55435015
SystemSettings_ProcessorSpeedDisplayFormat,55434785
Servicing_SendRecvBidi_AV_55434697,55434697
LogEventNonStringSupport,55434497
Servicing_AudioSettingsDefaultCheck,55433299
RefactorCommonSettingsProtocols,55431989
ShellUIHostCoordinatorRegionalPolicyCheck,55430721
FUSTFB,55425271
FEST,55424992
CompSwapchainBufferAddFailCrash,55416766
KioskCenterFix,55411042
HighContrastModeCrash,55410587
Containment_UUS_CaseSensitiveLessJsonValidation_55405872,55405872
XWVIF,55397056
PreventTaskbarPins,55394562
NarratorImageDescriptionWithVisualAssist,55393518
VTSFDF,55392126
CCA,55390938
ContainerNetBugFixes2503,55390665
Servicing_SendRecvBidi_AV_55388717,55388717
Servicing_UOConfigExpeditedApps,55387887
Servicing_WebauthnHybridTimeoutAccessibility_55387480,55387480
PcaUiArmUpdate,55385540
Servicing_StopSearchUXAnimationsWhenTurnedOff_55384482,55384482
MSRC93228_55383329,55383329
TNNOIF,55377862
UTBF,55377719
Servicing_AudioEndpointDriverUpdate_55374427,55374427
Servicing_ResolveORInfo_NULLDereference_55373979,55373979
Servicing_SVRRealtimeEconomyQueueingPriority,55373025
FMULCP1_55371478,55371478
Servicing_Feeds_Fix1SCallHttpError,55371128
ID55370200,55370200
DoNotLowerCpuPriorityForInteractiveStaging,55369402
NativeNVMeStackForGeServer,55369239
NativeNVMeStackForGeClient,55369237
WallpaperSurfaceException,55368916
CloudStoreBackupRestoreForAAD_55368779,55368779
RemoveStoreSls,55368198
RestrictHIDGamepadDelegation,55367790
Servicing_V13SearchesForP3_55367728,55367728
Servicing_SPRFixes,55367354
Containment_UUS_DbExec_55365991,55365991
LCFOCC,55365939
Servicing_OverflowFlyoutModelUnsubscribe,55365813
XblAuthDeprecateWlidUsageForDelJwt,55363219
VALTMC,55362165
SWAAP,55360026
WSTTDTest,55357951
Servicing_SuggestionBehaviorFix,55353539
HandleMetadataFix,55353523
SetCorrelationVectorForDeploymentRequest,55353132
MTestAbShSEOPHI,55352276
CompositionSwapchainAdvancedSyncSupport,55352145
ImmediateRetryAcquireLicense,55345663
WBPFTPDE_55343717,55343717
WBPPPDE_55343650,55343650
WBPFTPDE_55340398,55340398
Servicing_FodSynchronization,55339599
CastDiscoverability_UnHandledException_Bugfix,55338118
ID55337484,55337484
WBPPPDE_55336956,55336956
SWACFF,55336479
LCUDownloadCountTelemetry,55327955
UtcProcessPerf,55327669
Servicing_PDFInfiniteLoopMSRC93096,55327636
Servicing_StartMenuMsanSuggestedApps_FireAndForgetCrash,55327327
Containment_UUS_UIEOrchestratorCOMImpl_55324173,55324173
Servicing_FodTelemetry,55321020
SuperWetInkWait,55320787
SACCFBOT,55315677
UCPD_55313881,55313881
RichCalendar_DataClean,55312276
KnowYourPC_W11FAQList,55305888
RdpInputDesktopCheck,55289228
STCFF,55288104
Servicing_TaskbarSnapGroupPendingItemList,55284361
EntraCancelAndPerfMats,55280724
NFUWPF,55277652
FUROI,55276373
GdiPlusOptimizations_Misc,55265210
GdiPlusOptimizations_ScanOpConvert,55265204
GdiPlusOptimizations_ScanOpQuantize,55265202
GdiPlusOptimizations_ScanOpBlend,55265199
GdiPlusOptimizations_GpBitmapScaler,55265196
GdiPlusOptimizations_ScanOpAlphaMulDiv,55265190
Servicing_WpfCrashInTransitoryDocument_55264352,55264352
Firewall_BugFixes_2503,55263160
CNUIT,55258574
NWEF,55253859
Containment_UUS_NanoServerSupport_55251062,55251062
Muse_UIEOrch_DockedAPI,55250520
Containment_UUS_ScanIntent_55249686,55249686
ICapabilityAccess_AgileRef,55248491
Servicing_Devinv_EmptyProviderCrash,55247747
D3D12DisplayableCD,55247264
Servicing_OmadmClient_AadTokenExpiration_55247244,55247244
Servicing_OmadmClient_AadTokenExpiration_55247206,55247206
Containment_UUS_AttributesNotImpl_55247191,55247191
FNHFP,55241894
Bugfix_RemoveLegacyCompatTs,55237111
Servicing_Feeds_SetMUIDOnMultipleDomains,55236949
Servicing_CopilotPWA_StampInstalledForSysprep_55235339,55235339
Servicing_EDAMCSP_OrchestrationFixes_55235087,55235087
Servicing_EDAMCSP_OrchestrationFixes_55235086,55235086
Servicing_EDAMCSP_OrchestrationFixes_55235085,55235085
DefaultIdSupport,55233460
SysMan_GPRR_Errors,55232308
SCSCBF,55230352
55226240_TM_v08,55226240
VADMT,55225600
Census_CTAC_System_Requirements,55214833
MediaQI2505,55203471
Servicing_DXGI_AutoHDR_HDR10SaturationFix,55202160
Servicing_EnableInspect_55199570,55199570
FujitsuRsErrataFixes_55197922,55197922
MSRC92894_55187075,55187075
FixUsoCallback,55184410
VRRSurfaceSyncRefreshTime,55182474
Servicing_FEDisclaimerIndexerCheckCompleteAndAsync,55182332
Servicing_PreSearchForPackages_55181879,55181879
Servicing_PreSearchForPackages_55181866,55181866
PrivacyBonusBarIconChange,55181820
Servicing_CloudIdentitySSOCookieCachePersistentRegKeyFix,55181166
Servicing_DXGI_AutoHDR_BindCrashFix,55181116
Servicing_ExtMonStatusSPR,55181064
Disable_UNP,55180470
WRPC,55173043
KYP_WBC,55171166
UpdateBannerOnAlertRefresh,55170992
MachineLockHangFix,55170095
ShowTNII,55167716
ScoobeWascNodeDisplay_55164311,55164311
Servicing_AsyncMFLParentPath,55163988
Servicing_ImmediateRetry_InternetIssue_55163877,55163877
Servicing_ImmediateRetry_InternetIssue_55161159,55161159
Containment_UUS_FixEOSLogic_55159474,55159474
DeeplinkPinFix,55151711
WSTB,55150237
Servicing_Feeds_FeedsAnimatioSlideFromRight,55133311
Servicing_XInputHidExclusive,55132711
NoSmartInstallDialogForPSI,55132583
AdminlessElevatedToken,55120247
Servicing_RebaseLCUAndGDRFix,55119128
StagedAppUpdates,55118026
Containment_UUS_UsoSvcWhileServicing_55115644,55115644
FixDependencyPropertyInitializationInSnap,55113996
SEBWorkerThread,55113933
OobePC2PCMigration,55111207
VAPDAP,55107619
WISE_ForegroundHelperFix,55095770
Servicing_BitLockerRecoveryTelemetryCore_55086356,55086356
Servicing_BitLockerRecoveryTelemetryCore_55086347,55086347
Servicing_BitLockerRecoveryTelemetryCore_55086335,55086335
Servicing_PrintPsaPdrFirstTimeFix,55084787
RecoverySettings_IgnoreUpdatePolicyForUserIPU_55083146,55083146
AvoidRedundantPurchaseCall,55081259
MSRC92705_55080005,55080005
FixCtacRules,55073494
FEGB18030_Compliance,55070915
Servicing_PBRBitSuspendedVolumeFix,55065928
DisableTelemetryForTests,55065546
NewDWMFailFastErrors,55065097
CompositionTextureDirtyRects_55063468,55063468
AllowForCdmTestHook,55062919
Containment_UUS_v14_55061656_ReportMccInXvcStartEvent,55061656
Allow3PUEFICARollout,55061616
NxtKspTransaction,55061615
Servicing_DefaultPolicyStateNotApplicable_55061385,55061385
Servicing_DefaultPolicyStateNotApplicable_55061349,55061349
Servicing_StartMenuMsanSuggestedApps_Commercial,55060465
Servicing_StartMenuMsanSuggestedApps_CTA,55060412
MSRC92681_55059962,55059962
MSRC92679_55059929,55059929
Muse_Settings_HistoryTextFix,55055185
PreventRepeatedAdminChecks,55049146
Servicing_NoThumbBarButtonIcon,55046793
RecoverySettings_IgnoreUpdatePolicyForUserIPU_55045870,55045870
BugFix55045501,55045501
Containment_UUS_UUPRemoteProcess_55045381,55045381
RTCoreProcessor,55042835
Servicing_InstallTelemetryDurationBytesDownloaded_55042703,55042703
Servicing_MFShutdownFix,55042684
Servicing_InstallTelemetryDurationBytesDownloaded_55042682,55042682
WBNCR,55037241
MgCurRes,55037004
WAMPluginWin32Activation,55035554
ModifyPermissionsInSlui,55035472
Containment_UUS_v14_55033754_DownloadPausedEvent,55033754
NLM_Fix_NlaPluginRaces,55032533
DL55030749,55030749
WuSettings_DisplayExtendedErrorCode_55029013,55029013
WuSettings_DisplayExtendedErrorCode_55029005,55029005
Silence_Noisy_ASL,55028837
Servicing_AudioClientInitNotFound_55028683,55028683
Servicing_IndexingLogAdapter,55023225
CDPDisableDDSRegistrationRetryForAAD,55016787
Capture_SameItemMultithread,55009883
SystemSetting_AddL1PageGroupsSearch,55007914
MSRC92552_55007864,55007864
Servicing_FEStatusBarDisclaimerCollapsingFix,55007559
Containment_UUS_RequestedRestarts_RegKey_Cleanup_55007506,55007506
Servicing_FEStatusBarDisclaimerNarratorFix,55007364
SWT_2,55006994
WBRBESPF,54998316
Servicing_EnableMSIEFTPDll_Telemetry_54997663,54997663
Servicing_SFC_Unbind_Removal_54988908,54988908
WidgetsCommonComponentContainmentV2,54974880
Containment_UUS_UpdatingAUOptionRebootAction_54974392,54974392
MTestAbShFCDITTF,54972474
RulesEnginePOCheck,54963414
Servicing_FileExplorer_CFD_ColumnAdjustmentFix,54962544
InventorySvc_Log_Feature_State,54961840
MSRC92521_54961704,54961704
Servicing_StartMenuMsanSuggestedApps_ANID,54960852
Servicing_CFDSaveAsEnterFix,54956591
NSC,54931599
GlobalTouchGesturesTelemetry,54924805
Servicing_CISBaselines,54924609
GetStartedTelemetrySummaryFix,54924461
LogonFrameworkTelemetryImprovements_V2,54923739
Servicing_PlaybackFailureInWindowsAppSDK_54921375,54921375
DisplayMux_ForceMuxFullSupport,54920706
Location_LocationHistoryDeprecation,54920368
Servicing_ITaskbarListThumbnailWindowFix,54918555
FileExplorer_CommandBarFlyoutPerf,54917906
TulipAccessibilityBugFixes,54917360
MSRC92483_54917005,54917005
FailGlobalObjectsCreationForAppContainerShim,54915066
ChangeSettingsAppMinimumWidth,54915060
MSRC92475,54913976
RSST,54913653
Servicing_CopilotHWKeyFallbackOption,54907172
Servicing_TVS_WNPNET,54907064
BugFix54906891,54906891
TVS459,54903677
EnableRailV2,54900690
Census_Increase_String_Cache_Retrieval_Size,54899902
Location_Fix_ServerUrl,54899509
NoAdvancedDFlipOnMultiMon_Ni,54898377
Containment_UUS_AddingForcedAutoRebootStoredValue_54898243,54898243
Servicing_MissionControlAggregator,54897663
Servicing_PlaybackFailureInWindowsAppSDK_54886703,54886703
Servicing_AdminGamepadInjection,54886014
Servicing_RollbackOnAICrash,54884356
WuSettings_SettingsPage_LoadDelayIssues,54884159
Servicing_BLPruning,54883171
Containment_UUS_RequestedRestarts_RegKey_Cleanup_54880654,54880654
Servicing_CFR_GroupBypass,54880379
DisableBioSignatureCheck_54880074,54880074
DisableBioSignatureCheck_54880065,54880065
Servicing_UADisableStageBeforeInstallContainer,54879743
ImproveUupErrorLoggingForRQVs,54879109
SegmentationFix,54874886
UCPD_54870449,54870449
ShowSourceApps,54870388
Servicing_54865933,54865933
BugFix54865346,54865346
Servicing_MdmdiagnosticsEmptyRegMultiSzCrash_54861824,54861824
Servicing_MdmdiagnosticsEmptyRegMultiSzCrash_54861822,54861822
Servicing_MoreHashMismatchWorkarounds,54853785
Servicing_LogicPipelineResolver,54852096
AsyncMFTWrapper_FormatChangeLostOnFlush,54851118
Servicing_HangDetectorInConfigApplyComplete,54851097
OobeListViewKeyPressSearch,54847396
SMUSM,54847279
VelTest_ControlledByProxy_DBD_External_Child_DBD_External_Parent,54846952
VelTest_ControlledByProxy_EBD_External,54846949
VelTest_ControlledByProxy_DBD_External,54846942
VelTest_ControlledByProxy_AE_External,54846931
UCPD_54845374,54845374
Bugfix_Anqp3gppParsing,54843867
MSRC92338_54837850,54837850
NSCEHB,54833190
Servicing_CBSACRScavengeOnce,54824051
AddEditBufferSelectionTipTests,54823862
WXHDeprecateRewards,54795784
Servicing_WarpNoY210Y216SupportForHEIFRendering,54792993
WholeExplorerProcessRunOnWASDKCBS16,54792954
MSRC92285_54792938,54792938
Capture_LazyClosedEvent,54792395
MSRC91378_54792354,54792354
MSRC92145_54781857,54781857
MSRC92277_54780802,54780802
DeliveryOptimizationPoliciesInfoBarV2,54777674
HandleEmptyIrisPlacementId,54776587
SysprepCreateFamiliesFolder,54770207
TakeCacheLockWhenClearCache,54764968
ModelCacheGeneration,54764634
Servicing_TaskbarNoFocusAfterJumplistClose,54764167
WCM_Experiment_AppPrioritization_EnableLedbat,54762180
Compattelrunner_Gmd_Asl_PipeConnectBugfix,54761421
Servicing_FileExplorerDehydratedThumbnailsChangeNotificationsFix,54761410
Servicing_CBSRepairStagedCapabilities_54761281,54761281
TransientErrorTelemetry,54760525
Servicing_DmGetAllTasksInDiagnostics,54759314
Servicing_DuplicateLocalTicketReferenceFix_54758580,54758580
Servicing_DuplicateLocalTicketReferenceFix_54758573,54758573
InputSwitcher54754475,54754475
Servicing_Excessive_SysvolDC,54744879
XboxGamepadSupport_54733141,54733141
Servicing_FidoAutoHealFix,54731872
Servicing_OmaDmClient_Retry_ScheduledTask_54730668,54730668
SdGeCuReTiFi,54728641
Servicing_OasisAlternateHomeErrorHandling,54726686
W32PTU_54722642,54722642
NLM_Fix_UpdateNetworkCapability,54721970
DisableBreakForRemoteVidPnCheck,54721703
LogUusVersion,54716722
Servicing_DWMCrashesInBamoPrincipalImplLoop,54716082
FindMyPenSubtitle,54714397
IddMonitorListReference_54712811,54712811
PCTIPCF,54708665
AltTextWindowsBackup,54707867
11D_BugFixes,54706322
Servicing_DispatchToUIThread_54704371,54704371
DeviceInstall_NonNativeDriverImport,54704091
Containment_UUS_Bugfix_StorageReservesInheritance_54703063,54703063
AddDurationAndBytesDownloadedToEndStageTelemetry,54702923
Containment_UUS_Bugfix_DeadlineDriver_54702276,54702276
ID54700386,54700386
PnpSysprep_InstallType,54697338
MSRC92188_54696213,54696213
RODSI,54695056
ASIFF,54694035
DL54693893,54693893
PPBF_Test,54693827
Servicing_Feeds_FixWebview2LoopCreate,54689397
AllowListForBlockNonAdminUserInstall,54689274
Servicing_FEStateRepoVerbsCacheReducedLocking,54682491
BugFix_54678501,54678501
Servicing_TransmogPostBaselineFix,54665154
Containment_UUS_UpdatingAUOptionRebootAction_54663692,54663692
Servicing_NpfsMemcmp,54663392
FocusEnabledControlNullCheck,54661253
VARET,54659278
SuppressTouchGestures,54652173
MSRC92136_54648301,54648301
DXGI_1_7_API,54648291
PowersnapPowermode,54647229
Servicing_AADTokenSeenInDeviceDrill,54646078
SettingsHomepage_AccessibilitySettingsCard,54645886
Capture_WindowRootSelection_Scoped,54644335
Mesh2DNRE,54643200
MSRC92110_54631840,54631840
ReFS_Rollback_Protection_Persist_FailMountOnMismatch_UEFI,54631734
AppxPackagingCoCreate,54630891
MSRC92102_54630601,54630601
Bugfix_RemoveAcmDeveloperPreview,54629898
D3D11AndDXGIReportRGBMPOSupport,54628290
Containment_UUS_QUDowntimeNewAPI_54627384,54627384
CaCGVelocity,54627019
Servicing_SPRPowerSourceFix,54625969
Servicing_ADSD_Ftcache_Regression,54625146
SxSContainment_TextInput,54621264
SpeechRuntime_1_41_1_TextInput,54621188
KnowYourPC_W11TopCards,54618938
SpeechRuntime_1_41_1_VoiceAccess,54618497
SxSContainment_VoiceAccess,54618482
Servicing_TriggerACRforZeroByteCorruptDeltaFiles,54616917
RemoveClientIdForInteractiveCallerCheck,54616282
KVS_BugFixes_54616193,54616193
Servicing_WME_WinAppSDK,54614208
Servicing_SetupUseEXBINSFlag,54612362
Containment_UUS_FixingSettingRebootUXLaunched_54611501,54611501
PCBF1D,54605795
Containment_UUS_CleanupProductAfterAttempt_54603591,54603591
Servicing_UnstagedFilesRepair_54603524,54603524
Containment_UUS_v14_54603230_RemoveEncryptedFileIdFix,54603230
MSRC92077_54601761,54601761
HnsEndpointRoutes,54599261
MSRC92072_54599163,54599163
ESIM_APDU_STOP,54590809
DolbyVisionVSVDBv4_Support,54586575
DeveloperCohorts_54586416,54586416
MSRC92063_54586290,54586290
DriverSetup_RelatedDriverUninstall,54585615
Servicing_IEMode_BrokerCallPostMessageOrBrokerCallAsfwAndWait_54581290,54581290
Servicing_IEMode_BrokerCallPostMessageOrBrokerCallAsfwAndWait_54580909,54580909
Servicing_NdupNthEulaFromDCAT,54578341
WBPLPDE_54577235,54577235
MSRC92043_54576964,54576964
InHpWaOnSFi,54576272
SpeechRuntime_1_41_1_Narrator,54575455
WBULU_54573516,54573516
WBPDE_54572042,54572042
SxSContainment_Narrator,54569774
AppInv_EscapedUnicode,54565798
Servicing_LocalSystemAccessRights,54564890
TaskbarSuppressAnimationsFix,54557673
DeviceSetup_FixRaceIssue,54550508
Servicing_RemoveDeviceFormatChangeHandling,54546473
Servicing_ValidateAgentItem,54546004
SupportOSVerCheck,54541764
DualEngine_CheckFailure_BrokerCallDualEnginePostMessageOrBrokerCallAsfwAndWait,54541741
USFAN,54540874
MSRC91941_54539706,54539706
DodVsyncEnsureLocked,54538721
EnableUdpRegardlessOfAvdConfiguration,54537892
Servicing_RemoveStagePartialSectionfromActionListforWinPE,54537382
BugFix_SessEnvThreadHandleManagement,54535558
AccessEnableVSyncEventAtomically,54532698
DUSM_Fix_RacyAccesses,54532695
HwndSwapchainSkippedToken,54527528
InkManagerAggregateTelemetry,54520009
TIPDynamicTelemetry,54519870
UnsupportedPrinterDriver_Notification,54519779
DeviceSetup_DriverNotFound,54517547
Servicing_TaskItemThumbnailViewRefIssue,54517502
RemoveUserVisibilityStateIfDeferringPackageInstalledForAnyUser,54516163
ID554514561,54514561
ID54514554,54514554
Muse_Settings_OptionalTextInitFix,54498515
MSRC91950_54490477,54490477
BugFix54487659,54487659
Servicing_MareBackupAumids,54485722
MSRC91940_54485143,54485143
MTestAbShFCDI,54484372
MSRC91936_54484335,54484335
MSRC91935_54484259,54484259
SystemStateTelemetry,54484191
AppReadinessCheckSrUser,54482854
NetworkUX_BugFix_54482353,54482353
DeliveryOptimizationDisabledMonthlyUpload,54481640
Servicing_FirewallCmiPluginDuplicateNameRules,54481534
Servicing_RecoveryRobustnessFeature,54480577
Servicing_CandidateItemsFont_54476554,54476554
CAI,54475355
AppInv_InventoryWatchdog_CrashFix,54472073
DcuOnExitAlwaysInCalleeContext,54471807
BugFix_54469418,54469418
WBBTDE,54467824
FullSearchPageControlledListFix,54466291
NMUP1B,54466202
IPS54464903,54464903
WebAccountListCrashFix,54458485
InvSvc_CrmReleaseCrash,54457625
DL54452090,54452090
DeviceInternetIssue,54448889
ImmediateRetryScan,54448779
SoftLandingNullCheck,54448084
MSRC91922_54447919,54447919
IddCxExtendLogAdapterCaps,54447807
SAFE,54446122
CheckStartScreenManagerExtensionForNull,54446066
Servicing_CBSContainerEnableSetsReoffer_54445623,54445623
SrbDataCheckReorder,54445019
Bugfix_ClearNonVgaSupportAfterStopDevice,54444834
Containment_UUS_BugFixIUpdateSupportSessionData_54444424,54444424
PreSearchForPackages,54444306
RestrictInputCloudStoreLocalUpdates,54441181
Servicing_M365PreloadCheckFix_54440432,54440432
WuSettings_DisableUserIpuForManagedDevice,54439941
PowersnapBattpctFix,54436693
DFlipAsMPO,54435379
AccessibleSuiteFoldersInAppList,54433352
DontCallFixStateLocationsAccessWhenRootOnly,54433304
WBPLPDE_54429261,54429261
EkRsa2kDefaultFix,54423021
LockWidgetMenuCustomize,54421973
MSRC91886_54418939,54418939
Servicing_FileExplorerSearchResultSetReliability,54416778
AllApps_HideWindowsFolders,54416368
Servicing_OmadmClient_AadTokenRetryUserLogon_54415139,54415139
Servicing_OmadmClient_AadTokenRetryUserLogon_54415112,54415112
Servicing_TaskManagerProcessorAffinityIndex,54414200
Servicing_FileExplorerDehydratedThumbnailsRenderFix,54412425
ImmediateRetryDownload,54412067
Servicing_ReofferFailsForPermanentBaselineDU_54411685,54411685
Servicing_CBSFODRetryWithBaselineAndPostBaseline_54411650,54411650
Bugfix_54405666,54405666
IddNoDFlipSupport,54404678
Servicing_HotpatchDoNotIgnoreRevision_54404432,54404432
Servicing_FileExplorer_CloudVerbMultiUserOptimization,54403078
AppInv_NoLocalPiiFilter,54402754
Servicing_NotifyStartCompleteAfterSenseServiceStart,54402139
BackgroundTask_WSW,54399521
BatterySignals_WSW,54399508
WBFTFF,54398118
Servicing_Feeds_FixDeviceLostCrash,54395530
StartInvokeTIPTestFix,54395306
BugFix54385915,54385915
WuSettings_ImprovedUpdatePolicyList_54380711,54380711
WuSettings_ImprovedUpdatePolicyList_54380703,54380703
ID54380617,54380617
Servicing_FeaturePendingSize,54380561
Servicing_SCC_QueueLockForCopy_54378087,54378087
Servicing_SCC_QueueLockForCopy_54378082,54378082
Bugfix_HostedNetworkMemoryLeak,54376802
EnableMskssrvAlwaysOn,54375117
5437_3643,54373643
MSRC91816_54369877,54369877
UCPD_54369541,54369541
Servicing_DXCore_TelemetryException,54368480
Servicing_DXCore_PrivateInterfaceFlag,54367780
BitLocker_Backport_Cleanup_AAD_Stale_RPs_For_Max_Limit,54367306
MSRC91752_54366245,54366245
CAMStorageDatabase,54365364
CTIPF,54361209
SBRpcNullPC,54358856
PdSTestFcRl,54351801
SettingsSearch_ControlPanelKeywords,54351350
DL54350909,54350909
Allow3POROMRollout,54350110
MSRC91753_54349633,54349633
Servicing_CBSRepairStagedCapabilities_54347155,54347155
Servicing_SenseSyncQueueHang,54346920
MSRC91745_54346469,54346469
AllowAutoRotateToDockOrientationPolicy,54340500
Bugfix_PcaDeadlock,54337110
Servicing_WIM_MFL_fallback,54332738
Servicing_USOReserveTelemetry,54331375
WinIoTBugFixBundle_Ge_4,54330149
IncreaseSyncAlpcTimeoutValue,54329859
MSRC91713_54328020,54328020
Servicing_IDisplayMonitorStaticsCrash,54326667
MAI,54323135
Mg1T,54322778
Servicing_JpegEncodeFix,54321657
WISERemoveTIPCompletionReq,54319670
AddCmpltReasonToHpdTipTest,54319669
Netman_Fix_LanNames,54319055
Servicing_WinREAgent_NewPartition,54318385
Servicing_JpegMetadataFix,54318313
NXTBitlockerAttestationReboot,54317906
Servicing_ReofferFailsForPermanentBaselineDU_54317880,54317880
Servicing_RawImageMetadataFix,54317680
NfcCx_Send_HLTACmd_Before_Deactive_Bugfix,54317575
PrivacyScreenMDMPolicies,54316665
DisableDirectBootFirmwareSignatureCheck,54316220
AllDiskEntries,54313919
MDMWNFSettingsSetFix,54313301
MSRC91681_54313041,54313041
FixRdpGraphicsSurfaceFlush,54312849
Servicing_FileExplorerF11OverlappingAddressBarFix,54311730
IncreasedWULogFolderSize,54307601
NNSA,54306680
MSRC91675_54305866,54305866
VelTest_ControlledByProxy_DBD_Child_EBD_Parent,54298369
VelTest_ControlledByProxy_EBD_Child_EBD_Parent,54298363
Servicing_DisableDirectBootFirmwareSignatureCheck,54288069
Bugfix_54287744,54287744
NTT11D_54287283,54287283
MSRC91666_54287202,54287202
NTT11D_54286601,54286601
MSRC91403_54286513,54286513
Servicing_DXCore_AdapterListConcurrency,54285763
Containment_UUS_ComplianceDeadlineThreshold100_54285490,54285490
MSRC91649_54285128,54285128
SpeechRuntime_1_41_1_LiveCaptions,54278110
SxSContainment_LiveCaptions,54277953
FLBTest,54277749
Servicing_CBSFODRetryWithBaselineAndPostBaseline_54271495,54271495
Servicing_CBSContainerEnableSetsReoffer_54270466,54270466
Servicing_FileExplorer_SessionWatcherLoggingQuieting,54269993
AADClientCloudApCookieCache_54269957,54269957
StaleBackdropCacheFix,54268553
CacheHivePerProvider,54268480
ID54268227,54268227
ColorProfileAfterHibernate_54267862,54267862
Containment_UUS_MultipleAcquisitions_54267726,54267726
WUSARebaseMultiMSU,54267669
WUSAMultiMSURebase,54267662
Containment_UUS_FixEOSLogic_54265050,54265050
Servicing_TaskbarInitializationTest,54264929
Servicing_FixSerializedDownload,54264451
SustainabilityFixes_Q3,54264117
WBPBEF,54260846
CacheTerminateOnIndirectStall,54260808
Bugfix_54255860,54255860
StartBadgingExceptionHandling_54253523,54253523
Servicing_Avoid_Nullref_54249480,54249480
Servicing_FileExplorer_NullBrowserHost_Fix,54249253
Servicing_PersistenceVolume,54248550
Servicing_WmiCESSPollingObjectsLeak,54245287
TipProviderInfoNullFix,54243167
Servicing_TS_RepairLog,54242100
WlansvcFuzzingCleanups,54240930
AllowDBUpdate2023Rollout,54240764
Servicing_Avoid_Nullref_54239961,54239961
Servicing_AppxPackageManagerExtendedErrorMissing,54239880
GatePerf,54238000
ImplVal,54237993
TestGateImp,54237988
TestLabVal,54237977
PerfImpTest,54237969
TIPFixCorruptData,54237966
TestConfNum,54237951
Bugfix_54236577,54236577
Capture_AllDisplaysSizeFix,54222616
TM_BranchSync_UsersKeyNav,54218610
KITC,54213766
Bugfix_54213081,54213081
SafeEventRegistration,54212298
MSRC91530_54211991,54211991
ESB54199015,54199015
Servicing_FCON_ReconcilePerfImprovements,54198177
PcaUiTitleArmPrinter,54197538
MSRC91520_54197173,54197173
MSRC91519_54196899,54196899
MSRC91518_54195941,54195941
MSRC91507_54194237,54194237
MSRC91505_54193805,54193805
Servicing_HyperV_TVMGSP_Telemetry_GE,54192329
MSRC91496_54192143,54192143
Servicing_FESearchEngagementMetrics,54191533
Backport_ApplyDisplayChangeButtonHighlight,54191467
MSRC91488_54189412,54189412
54185343_TM_v07,54185343
PCToPhoneLTW,54183122
CTPA_54183053,54183053
FodLPEnumHardening,54182394
Servicing_FCON_StorageWriterCreateImmutable,54181841
Servicing_RebaseUseParallelHydratorHydratedFiles,54180965
Servicing_ExpanderCancel,54164088
Servicing_OmadmClient_AadTokenExpiration_54163957,54163957
ARM64SE,54162406
FixInvalidGlobalId,54162316
MSRC91474_54161922,54161922
ID54161711,54161711
MSRC91471_54161264,54161264
DeviceInstall_GroupUpdateImprovements,54161194
Servicing_LocationHistoryBugFix,54160908
Servicing_FidoCachedLogonFix,54160686
NCSI_Fix_MoreResponsiveToDisconnectedStandby,54158214
Servicing_Warning6215InSmartClipboardCppFile,54158208
SettingsEuropeanConformityLogo,54157537
PrintPlatformStabilizationFixes_2502,54157168
WidgetsCommonComponentContainmentStore,54153633
WidgetsCommonComponentContainment,54153614
MSRC91453_54152573,54152573
MA,54148177
MSRC91445_54145259,54145259
MSRC91444_54145054,54145054
BreadcrumbingShutdownInStandby,54144069
UseWNCPlugin,54137221
Servicing_OmadmClient_AadTokenRetryUserLogon_54134686,54134686
WuSettings_FixIpuNotFoundInfobarVisibility,54134129
StartMenuAccountBadgingRulesEngine_54131686,54131686
HvciScanHvptHandling,54131612
ID54131603,54131603
WebResourceApiContract,54131524
Muse_Settings_IPU_Title_Modification_PI_Model_Copy,54129191
Servicing_RebaseNullAfterForwardDeltaFix,54128837
NoAdvancedDFlipOnMultiMon,54128362
FI54124886,54124886
FI54124521,54124521
WBSOD_54122123,54122123
TipTestCentennialLaunchUriForResultsImprovements,54121714
SkipNetworkStatusTelemetry,54120684
WBSACF,54118281
GeHiberbootSessionInputFix,54117495
HpdPsn,54117209
HpdPsbo,54116820
ODR_AppExecAlias_BestEffort,54115445
WBIPRF,54114820
Servicing_ReofferFailsForPermanentBaseline,54114063
NfcCx_Identify_STDV05_Series_Tag_Bugfix,54113441
ID54113335,54113335
Servicing_IaKerbAchDomainContainment,54112487
Servicing_NoLCU_For_WinRE,54111874
DefaultPolicyStateNotApplicable,54111790
IndirectSwapchainDirty,54107903
Servicing_WebauthnHybridTimeoutAccessibility_54105195,54105195
SUXBFTest,54104865
Servicing_LegacyKoreanIME,54103449
Servicing_Feeds_FixPaintBadge,54100492
IdsBugFix1,54100127
Containment_UUS_CallerIDTelemetry_54100102,54100102
WCM_Fix_GlobalPowerState,54099730
WUModernStandbyImprovementsV2,54099440
ReFSDedupSvc_Batch_Sep_BugFixes,54096824
Containment_UUS_MadeProgressCheck_54096031,54096031
Servicing_OfficeHubUpdate,54095124
Servicing_SSUWithLCUNotCrit,54094094
MSRC91369_54093779,54093779
NetworkUX_BugFix_54093603,54093603
Secondary_Account_TelemetryImprovement,54086976
WofScavenge,54086698
Servicing_ScavengingTransactionalDependency,54083196
CompatTabAVXCheckbox,54074916
Servicing_FilteringAppsForCopilotHWKey,54074445
MSRC91339_54073745,54073745
MSRC91337_54073507,54073507
DisplayBugBundle_2501,54072972
MSRC91332_54072804,54072804
Servicing_VFPLoadBalancerRules,54072713
Servicing_VfpRulesEqualOptimization,54072661
MSRC91324_54071901,54071901
Servicing_UnstagedFilesRepair_54071625,54071625
FileExplorer_UpdateTipTest_SwitchPivotsPerfTest,54070337
Calling_Fix_ImprovePhoneClientListenerRestart,54069373
Servicing_Win11AccessibilityStartPowerBadging_54064187,54064187
54062068_TM_v07,54062068
MercuryMSATelemetryFix,54052639
TelCacheProvider_GetStringMetadata,54042888
VelTest_ControlledByProxy_EBD_Child_DBD_Parent,54036290
VelTest_ControlledByProxy_DBD_Child_DBD_Parent,54036150
VelTest_ControlledByProxy_DBD,54036148
VelTest_ControlledByProxy_EBD,54036147
VelTest_ControlledByProxy_AE,54036146
MSRC91305_54036081,54036081
Servicing_CBSScavengeCorruption_54036047,54036047
Servicing_AddStagedComponentsCancel,54035455
Servicing_WebauthnCtapNfcIgnoreUicc,54034887
Muse_Settings_Reboot_Invoked_Telemery,54032959
Containment_UUS_v14_54031844_KvControlForMccAutoDiscovery,54031844
MSRC91289_54030884,54030884
SoftwareXORCursor,54029587
MSRC91274_54027067,54027067
Servicing_VideoSettingsEnabledDefaultFix,54024890
CompositionTextureDirtyRectsUsage_54020481,54020481
Servicing_NLM_DefenderQuirk,54019191
BugFix54018385,54018385
Muse_Settings_ActiveHours_Invalid_Error_Message,54016809
MSRC91261_54016219,54016219
MSRC91260_54016170,54016170
RemoveHardcodedExtensionNames,54016126
AddCollectionFlagsToAllowOneAfcCallOnCollectionEnum_54015885,54015885
AllowMissingOverlayMedia,54015020
EarlyWakeupTokenDeadline,54014964
Containment_UUS_FixInconsistentFlagUsage_54014547,54014547
EnableFlex2,54014281
AppResolverContextMenuPerfImprovements,54013257
Servicing_OsConfigRefreshBehaviorUpdateNew,54012866
NXTPowerHibernate,54011495
PIPLCBFTest,54001089
SBFE2501Test,54000467
EnableIddCx111,54000107
Servicing_StorSvc_MultiPathFormatSupport_53998073,53998073
Servicing_Feeds_ExposeIdxContentDebugId,53994960
CompSwapchainRenderAndPresentSync,53994671
CompSwapchainDX12Support,53994611
Servicing_AppxCrash_SRDatabaseClose,53993352
Servicing_PreviousPasswordBadPwdCount,53992468
UnifiedConsentCorrelationTelemetry_53992255,53992255
RegistryImprovements_53992244,53992244
UnifiedConsentCoordinatorTVSFixes_53992231,53992231
DefaultIdExceptionContainment_53992224,53992224
UnifiedConsentCorruptionFix_53992203,53992203
CloudStoreCollectionItemsOptions_53992177,53992177
CloudStoreTimeoutExceptions_53992159,53992159
FI53991953,53991953
MSRC90263_53991221,53991221
ColorProfileSettingRefreshListFixAndEnablePreviousFixes,53990958
Servicing_RebaseUseMoveInsteadOfCopy,53990407
Servicing_MsfteditGB18030_2022_53989961,53989961
HdrInRdp_53989221,53989221
WuSettings_AssigningEffectiveDeadlineTime,53988334
Servicing_IMCCVM,53988062
Servicing_FileExplorer_CFD_GallerySearchBoxFocusFix,53986467
Servicing_SessionDivideZeroFix,53985856
Containment_UUS_FixingUnwrappedError_53982220,53982220
Servicing_Feeds_EnablePinFlyout,53979754
Census_WMI_On_Server,53979501
ApplyDisplayChangeButtonHighlight,53978093
MSRC91204_53975472,53975472
MSRC91203_53975324,53975324
Containment_UUS_CoreClass_53974549,53974549
MSRC91201_53974268,53974268
FeatureTuningPriorityReconcile,53973482
MSRC91200_53973447,53973447
NDF_Fix_DiagnosticsLaunch,53970925
RailShellAppRuntimeGP,53968345
MSRC91191_53966772,53966772
MSRC91189_53964860,53964860
ImproveFrequencyToastMfaGe,53961564