-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathdelay-loads.txt
14621 lines (14621 loc) · 449 KB
/
delay-loads.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
aadauthhelper.dll Delay Loads:
OLEAUT32.dll
SspiCli.dll
CRYPT32.dll
WINHTTP.dll
webauthn.dll
aadcloudap.dll Delay Loads:
ext-ms-win-session-wtsapi32-l1-1-0.dll
ncrypt.dll
WINHTTP.dll
CRYPT32.dll
samcli.dll
XmlLite.dll
cryptngc.dll
CRYPTXML.dll
aadtb.dll Delay Loads:
ext-ms-win-pinenrollment-enrollment-l1-1-0.dll
aadWamExtension.dll Delay Loads:
api-ms-win-core-winrt-string-l1-1-0.dll
api-ms-win-core-winrt-error-l1-1-0.dll
api-ms-win-core-com-l1-1-0.dll
api-ms-win-core-winrt-l1-1-0.dll
ext-ms-win-ntuser-windowclass-l1-1-0.dll
AboutSettingsHandlers.dll Delay Loads:
ext-ms-win-security-authz-helper-l1-1-0.dll
ext-ms-win-shell-shell32-l1-2-0.dll
luiapi.dll
Wldp.dll
ext-ms-onecore-security-antitheft-l1-1-0.dll
ext-ms-windowscore-deviceinfo-l1-1-0.dll
UpdateAPI.dll
AboveLockAppHost.dll Delay Loads:
SHLWAPI.dll
dwmapi.dll
accessibilitycpl.dll Delay Loads:
PROPSYS.dll
ADVAPI32.dll
accountaccessor.dll Delay Loads:
ActiveSyncProvider.dll
APHostClient.dll
CEMAPI.dll
UserDataTypeHelperUtil.dll
InprocLogger.dll
DMCfgUtils.dll
SyncController.dll
AccountsRt.dll Delay Loads:
api-ms-win-shell-shellfolders-l1-1-0.dll
SyncController.dll
UserDataTypeHelperUtil.dll
AcGenral.dll Delay Loads:
ext-ms-win-ntuser-windowstation-l1-1-0.dll
pcacli.dll
aclui.dll Delay Loads:
UxTheme.dll
DSROLE.dll
DSPARSE.dll
RPCRT4.dll
AUTHZ.dll
logoncli.dll
netutils.dll
samcli.dll
Secur32.dll
DUI70.dll
DUser.dll
ACPBackgroundManagerPolicy.dll Delay Loads:
OnDemandBrokerClient.dll
api-ms-win-core-bicltapi-l1-1-5.dll
ext-ms-win-com-psmregister-l1-1-0.dll
ActionCenterCPL.dll Delay Loads:
PROPSYS.dll
ActivationManager.dll Delay Loads:
ext-ms-win-hostactivitymanager-hostidstore-l1-1-0.dll
RMCLIENT.dll
ext-ms-win-advapi32-safer-l1-1-0.dll
ext-ms-win-appxdeploymentclient-appxdeploy-l1-1-1.dll
ext-ms-win32-subsystem-query-l1-1-0.dll
api-ms-win-appmodel-runtime-l1-1-1.dll
api-ms-win-appmodel-runtime-l1-1-0.dll
api-ms-win-ntuser-sysparams-l1-1-0.dll
api-ms-win-rtcore-ntuser-window-l1-1-0.dll
api-ms-win-rtcore-ntuser-synch-l1-1-0.dll
api-ms-win-appmodel-unlock-l1-1-0.dll
ext-ms-win-com-psmregister-l1-1-0.dll
ext-ms-win-core-storelicensing-l1-1-0.dll
ext-ms-win-shell-shell32-l1-2-0.dll
ext-ms-win-rtcore-ntuser-cursor-l1-1-0.dll
ext-ms-win-core-app-package-registration-l1-1-0.dll
ext-ms-win-session-usermgr-l1-1-0.dll
ext-ms-win-ntuser-windowstation-l1-1-0.dll
ext-ms-onecore-appmodel-staterepository-cache-l1-1-0.dll
ext-ms-win-desktopappx-l1-1-6.dll
ext-ms-win-desktopappx-l1-1-0.dll
CoreUIComponents.dll
ext-ms-win-ntuser-uicontext-ext-l1-1-0.dll
activeds.dll Delay Loads:
OLEAUT32.dll
api-ms-win-core-com-l1-1-0.dll
api-ms-win-security-base-l1-1-0.dll
api-ms-win-security-provider-l1-1-0.dll
srvcli.dll
netutils.dll
api-ms-win-core-registry-l2-1-0.dll
api-ms-win-security-lsapolicy-l1-1-0.dll
api-ms-win-security-logon-l1-1-1.dll
api-ms-win-security-lsalookup-l2-1-0.dll
api-ms-win-security-sddl-l1-1-0.dll
api-ms-win-core-rtlsupport-l1-1-0.dll
CRYPT32.dll
ext-ms-win-com-ole32-l1-1-0.dll
ext-ms-win-com-ole32-l1-1-1.dll
api-ms-win-ole32-ie-l1-1-0.dll
api-ms-win-core-apiquery-l1-1-0.dll
ActiveSyncProvider.dll Delay Loads:
CRYPT32.dll
WINHTTP.dll
DNSAPI.dll
CRYPTSP.dll
XmlLite.dll
wwapi.dll
ext-ms-win-storage-sense-l1-1-0.dll
UserDataPlatformHelperUtil.dll
unistore.dll
MCCSEngineShared.dll
InprocLogger.dll
DMCfgUtils.dll
actxprxy.dll Delay Loads:
api-ms-win-core-winrt-string-l1-1-0.dll
OLEAUT32.dll
adhsvc.dll Delay Loads:
wkscli.dll
netutils.dll
bcrypt.dll
adsldp.dll Delay Loads:
OLEAUT32.dll
api-ms-win-core-com-l1-1-0.dll
SspiCli.dll
DSPARSE.dll
api-ms-win-security-base-l1-1-0.dll
api-ms-win-security-activedirectoryclient-l1-1-0.dll
logoncli.dll
netutils.dll
api-ms-win-core-rtlsupport-l1-1-0.dll
CRYPT32.dll
ext-ms-win-com-ole32-l1-1-0.dll
ext-ms-win-secur32-translatename-l1-1-0.dll
NTDSAPI.dll
api-ms-win-core-apiquery-l1-1-0.dll
adsldpc.dll Delay Loads:
WS2_32.dll
USERENV.dll
api-ms-win-security-base-l1-1-0.dll
SspiCli.dll
api-ms-win-security-lsapolicy-l1-1-0.dll
wkscli.dll
netutils.dll
logoncli.dll
api-ms-win-security-lsalookup-l2-1-0.dll
api-ms-win-core-rtlsupport-l1-1-0.dll
CRYPT32.dll
ext-ms-win-security-credui-l1-1-1.dll
ext-ms-win-advapi32-lsa-l1-1-0.dll
adsmsext.dll Delay Loads:
OLEAUT32.dll
api-ms-win-security-logon-l1-1-1.dll
api-ms-win-security-base-l1-1-0.dll
SspiCli.dll
WLDAP32.dll
samcli.dll
api-ms-win-core-com-l1-1-0.dll
api-ms-win-core-rtlsupport-l1-1-0.dll
CRYPT32.dll
api-ms-win-core-kernel32-legacy-l1-1-0.dll
ext-ms-win-printer-winspool-l1-1-0.dll
ext-ms-win-printer-winspool-core-l1-1-0.dll
adsnt.dll Delay Loads:
OLEAUT32.dll
api-ms-win-core-registry-l2-1-0.dll
srvcli.dll
netutils.dll
samcli.dll
CRYPT32.dll
MPR.dll
wkscli.dll
DSROLE.dll
api-ms-win-core-com-l1-1-0.dll
api-ms-win-security-sddl-l1-1-0.dll
api-ms-win-security-base-l1-1-0.dll
logoncli.dll
api-ms-win-security-lsalookup-l2-1-0.dll
api-ms-win-core-kernel32-legacy-l1-1-0.dll
api-ms-win-service-management-l2-1-0.dll
api-ms-win-service-winsvc-l1-1-0.dll
api-ms-win-service-management-l1-1-0.dll
api-ms-win-service-core-l1-1-1.dll
api-ms-win-core-rtlsupport-l1-1-0.dll
ext-ms-win-smbshare-browserclient-l1-1-0.dll
ext-ms-win-com-ole32-l1-1-0.dll
ext-ms-win-printer-winspool-l1-1-2.dll
ext-ms-win-printer-winspool-l1-1-4.dll
ext-ms-win-printer-winspool-l1-1-0.dll
ext-ms-win-printer-winspool-core-l1-1-0.dll
api-ms-win-core-apiquery-l1-1-0.dll
AdvancedEmojiDS.dll Delay Loads:
ext-ms-win-shell32-shellfolders-l1-1-0.dll
Bcp47Langs.dll
advapi32.dll Delay Loads:
CRYPTSP.dll
WINTRUST.dll
CRYPTBASE.dll
SspiCli.dll
USER32.dll
CRYPT32.dll
bcrypt.dll
api-ms-win-security-lsalookup-l1-1-0.dll
api-ms-win-security-credentials-l1-1-0.dll
api-ms-win-security-credentials-l2-1-0.dll
api-ms-win-security-provider-l1-1-0.dll
api-ms-win-devices-config-l1-1-1.dll
aeinv.dll Delay Loads:
api-ms-win-core-featurestaging-l1-1-0.dll
ext-ms-win32-subsystem-query-l1-1-0.dll
Bcp47Langs.dll
aemarebackup.dll Delay Loads:
ext-ms-win32-subsystem-query-l1-1-0.dll
ext-ms-win-session-wtsapi32-l1-1-0.dll
aepic.dll Delay Loads:
Bcp47Langs.dll
api-ms-win-rtcore-ntuser-window-l1-1-0.dll
api-ms-win-rtcore-ntuser-synch-l1-1-0.dll
ext-ms-win-appcompat-aeinv-l1-1-0.dll
ext-ms-win32-subsystem-query-l1-1-0.dll
agentactivationruntimewindows.dll Delay Loads:
ext-ms-win-devmgmt-policy-l1-1-1.dll
ext-ms-win-security-slc-l1-1-0.dll
AJRouter.dll Delay Loads:
ext-ms-win-shell-embeddedmode-l1-1-0.dll
amsi.dll Delay Loads:
api-ms-win-core-com-l1-1-0.dll
api-ms-win-security-cryptoapi-l1-1-0.dll
USERENV.dll
Analog.Shell.Broker.dll Delay Loads:
ext-ms-win-session-usermgr-l1-1-0.dll
ext-ms-win-session-wtsapi32-l1-1-0.dll
ext-ms-win-ntuser-message-l1-1-0.dll
ext-ms-win-uxtheme-themes-l1-1-0.dll
ext-ms-win-rtcore-ntuser-syscolors-l1-1-0.dll
ext-ms-win-appmodel-state-ext-l1-2-0.dll
apds.dll Delay Loads:
WININET.dll
urlmon.dll
WINTRUST.dll
CRYPT32.dll
APHostClient.dll Delay Loads:
UserDataPlatformHelperUtil.dll
APHostService.dll Delay Loads:
api-ms-win-security-accesshlpr-l1-1-0.dll
InprocLogger.dll
iertutil.dll
ApiSetHost.AppExecutionAlias.dll Delay Loads:
api-ms-win-appmodel-runtime-l1-1-1.dll
api-ms-win-appmodel-runtime-l1-1-0.dll
ext-ms-win-appmodel-daxcore-l1-1-2.dll
ext-ms-win-core-storelicensing-l1-1-0.dll
ext-ms-win-com-ole32-l1-1-1.dll
ext-ms-win-winrt-storage-l1-2-1.dll
RMCLIENT.dll
ext-ms-win-shell32-shellfolders-l1-1-0.dll
ext-ms-win-com-psmregister-l1-1-0.dll
APMon.dll Delay Loads:
RPCRT4.dll
api-ms-win-devices-query-l1-1-1.dll
api-ms-win-devices-query-l1-1-0.dll
api-ms-win-core-com-l1-1-0.dll
deviceassociation.dll
CFGMGR32.dll
wsdapi.dll
netutils.dll
Print.PrintSupport.Source.dll
ext-ms-win-session-usermgr-l1-1-0.dll
ext-ms-win-session-usertoken-l1-1-0.dll
ext-ms-win-session-wtsapi32-l1-1-0.dll
WINHTTP.dll
SspiCli.dll
OLEAUT32.dll
CRYPT32.dll
api-ms-win-security-lsalookup-l1-1-0.dll
WS2_32.dll
logoncli.dll
api-ms-win-shcore-stream-l1-1-0.dll
bcrypt.dll
SETUPAPI.dll
NTDSAPI.dll
ACTIVEDS.dll
AppContracts.dll Delay Loads:
OnDemandBrokerClient.dll
cdp.dll
ext-ms-win-session-usermgr-l1-1-0.dll
ext-ms-win32-subsystem-query-l1-1-0.dll
AppExtension.dll Delay Loads:
api-ms-win-core-winrt-string-l1-1-0.dll
api-ms-win-core-winrt-l1-1-0.dll
ext-ms-win-core-storelicensing-l1-1-0.dll
ext-ms-win-rtcore-ntuser-cursor-l1-1-0.dll
ext-ms-win-winrt-storage-l1-1-0.dll
appidapi.dll Delay Loads:
bcrypt.dll
WINTRUST.dll
msi.dll
AppIdPolicyEngineApi.dll Delay Loads:
UxTheme.dll
OLEAUT32.dll
appidsvc.dll Delay Loads:
api-ms-win-service-core-l1-1-0.dll
CRYPT32.dll
api-ms-win-service-management-l1-1-0.dll
api-ms-win-service-management-l2-1-0.dll
ext-ms-win-kernel32-package-l1-1-0.dll
api-ms-win-appmodel-runtime-internal-l1-1-7.dll
ADVAPI32.dll
WINTRUST.dll
appinfo.dll Delay Loads:
api-ms-win-security-sddl-l1-1-0.dll
SspiCli.dll
USERENV.dll
ext-ms-win-com-psmregister-l1-3-0.dll
ext-ms-win-desktopappx-l1-1-0.dll
ext-ms-win-desktopappx-l1-1-4.dll
ext-ms-win-desktopappx-l1-1-5.dll
ext-ms-win-desktopappx-l1-1-1.dll
ext-ms-win-desktopappx-l1-1-6.dll
ext-ms-win-appmodel-activation-l1-1-0.dll
ext-ms-win-appmodel-activation-l1-1-1.dll
ext-ms-win-security-appinfoext-l1-1-0.dll
ext-ms-win-rtcore-ntuser-sysparams-l1-1-0.dll
ext-ms-win-appmodel-appexecutionalias-l1-1-0.dll
ext-ms-win-appmodel-appexecutionalias-l1-1-2.dll
ext-ms-win-appmodel-appexecutionalias-l1-1-1.dll
ext-ms-win-appcompat-apphelp-l1-1-1.dll
ext-ms-onecore-appmodel-staterepository-cache-l1-1-0.dll
ext-ms-win-session-usermgr-l1-1-0.dll
ext-ms-win-security-capauthz-l1-1-0.dll
WINTRUST.dll
api-ms-win-security-provider-l1-1-0.dll
ApplicationFrame.dll Delay Loads:
SHELL32.dll
ext-ms-win-els-elscore-l1-1-0.dll
ext-ms-win-ntuser-message-l1-1-0.dll
ext-ms-win-ntuser-message-l1-1-1.dll
ext-ms-win-ntuser-private-l1-1-1.dll
ext-ms-win-ntuser-private-l1-3-2.dll
ext-ms-win-ntuser-private-l1-2-0.dll
ext-ms-win-ntuser-private-l1-3-1.dll
ext-ms-win-ntuser-window-l1-1-0.dll
ext-ms-win-ntuser-window-l1-1-3.dll
ext-ms-win-ntuser-window-l1-1-4.dll
ext-ms-win-ntuser-window-l1-1-2.dll
ext-ms-win-ntuser-window-l1-1-1.dll
ext-ms-win-shell-shell32-l1-2-1.dll
ext-ms-win-uxtheme-themes-l1-1-0.dll
ext-ms-win-rtcore-ntuser-syscolors-l1-1-0.dll
ext-ms-win-rtcore-ntuser-sysparams-l1-1-0.dll
api-ms-win-core-winrt-robuffer-l1-1-0.dll
UIAutomationCore.DLL
AppMon.dll Delay Loads:
profapi.dll
ext-ms-win-winrt-storage-l1-1-0.dll
AppointmentActivation.dll Delay Loads:
UserDataTypeHelperUtil.dll
UserDataPlatformHelperUtil.dll
AppointmentApis.dll Delay Loads:
OLEAUT32.dll
api-ms-win-core-winrt-string-l1-1-0.dll
api-ms-win-core-com-l1-1-0.dll
api-ms-win-core-winrt-error-l1-1-0.dll
api-ms-win-security-base-l1-1-0.dll
api-ms-win-core-winrt-l1-1-0.dll
api-ms-win-core-winrt-error-l1-1-1.dll
RPCRT4.dll
api-ms-win-core-com-l1-1-1.dll
UserDataTypeHelperUtil.dll
UserDataTimeUtil.dll
api-ms-win-security-accesshlpr-l1-1-0.dll
appraiser.dll Delay Loads:
acmigration.dll
ktmw32.dll
api-ms-win-core-winrt-string-l1-1-0.dll
api-ms-win-core-winrt-l1-1-0.dll
WINHTTP.dll
WINTRUST.dll
AppReadiness.dll Delay Loads:
ext-ms-win-firewallapi-webproxy-l1-1-0.dll
ext-ms-win-kernel32-package-l1-1-0.dll
ext-ms-win-session-usermgr-l1-1-0.dll
ext-ms-win-session-usertoken-l1-1-0.dll
ext-ms-win-session-winsta-l1-1-0.dll
ext-ms-win-session-wtsapi32-l1-1-0.dll
USERENV.dll
api-ms-win-appmodel-runtime-internal-l1-1-2.dll
api-ms-win-core-biplmapi-l1-1-0.dll
api-ms-win-core-biptcltapi-l1-1-7.dll
api-ms-win-appmodel-state-l1-2-0.dll
XmlLite.dll
ext-ms-win-shell32-shellfolders-l1-1-0.dll
AppXAllUserStore.dll
AppxApplicabilityEngine.dll
SystemEventsBrokerClient.dll
OEMLicense.dll
ext-ms-win-devmgmt-policy-l1-1-0.dll
ext-ms-win-containers-policymanagercli-l1-1-0.dll
AppResolver.dll Delay Loads:
api-ms-win-appmodel-runtime-internal-l1-1-2.dll
ext-ms-win-shell-shell32-l1-2-2.dll
ext-ms-win-shell-shell32-l1-2-1.dll
ext-ms-win-shell-shell32-l1-2-0.dll
ext-ms-win-uxtheme-themes-l1-1-0.dll
api-ms-win-storage-exports-internal-l1-1-0.dll
elscore.dll
msi.dll
OLEAUT32.dll
PROPSYS.dll
SHELL32.dll
api-ms-win-security-cryptoapi-l1-1-0.dll
urlmon.dll
ext-ms-win-core-iuri-l1-1-0.dll
AppVCatalog.dll Delay Loads:
USERENV.dll
AppVEntVirtualization.dll Delay Loads:
ktmw32.dll
RPCRT4.dll
AppxAllUserStore.dll Delay Loads:
api-ms-win-security-sddl-l1-1-0.dll
api-ms-win-security-provider-l1-1-0.dll
AppxApplicabilityEngine.dll Delay Loads:
api-ms-win-core-winrt-string-l1-1-0.dll
AppXDeploymentClient.dll Delay Loads:
api-ms-win-crt-private-l1-1-0.dll
AppXAllUserStore.dll
twinapi.appcore.dll
ext-ms-win-storage-sense-l1-1-0.dll
ext-ms-win-wevtapi-eventlog-l1-1-0.dll
ext-ms-win-appmodel-deployment-l1-1-0.dll
api-ms-win-core-winrt-string-l1-1-0.dll
api-ms-win-core-registry-l1-1-0.dll
api-ms-win-security-base-l1-1-0.dll
api-ms-win-security-base-l1-2-2.dll
api-ms-win-security-capability-l1-1-0.dll
api-ms-win-security-lsalookup-l2-1-0.dll
api-ms-win-core-windowserrorreporting-l1-1-1.dll
OLEAUT32.dll
api-ms-win-security-provider-l1-1-0.dll
api-ms-win-eventing-tdh-l1-1-0.dll
api-ms-win-appmodel-runtime-l1-1-0.dll
api-ms-win-appmodel-runtime-l1-1-1.dll
api-ms-win-appmodel-runtime-internal-l1-1-1.dll
api-ms-win-appmodel-runtime-internal-l1-1-2.dll
api-ms-win-appmodel-state-l1-2-0.dll
AppxApplicabilityEngine.dll
ext-ms-win-session-usermgr-l1-1-0.dll
ext-ms-win-security-capauthz-l1-1-0.dll
ext-ms-onecore-appmodel-staterepository-cache-l1-1-0.dll
FirewallAPI.dll
StateRepository.Core.dll
api-ms-win-appmodel-runtime-internal-l1-1-4.dll
AppXDeploymentExtensions.desktop.dll Delay Loads:
api-ms-win-security-provider-l1-1-0.dll
api-ms-win-shcore-sysinfo-l1-1-0.dll
WINSPOOL.DRV
ext-ms-win-advapi32-safer-l1-1-0.dll
ext-ms-win-session-usermgr-l1-1-0.dll
ext-ms-win-shell32-shellfolders-l1-1-0.dll
ext-ms-win-shell-shell32-l1-2-0.dll
ext-ms-win-appmodel-deployment-l1-1-0.dll
api-ms-win-appmodel-state-l1-2-0.dll
api-ms-win-appmodel-runtime-internal-l1-1-1.dll
api-ms-win-appmodel-runtime-l1-1-0.dll
api-ms-win-appmodel-runtime-l1-1-1.dll
ext-ms-win-desktopappx-l1-1-3.dll
EDGEHTML.dll
api-ms-win-ntuser-ie-message-l1-1-0.dll
FirewallAPI.dll
AppXAllUserStore.dll
api-ms-win-appmodel-unlock-l1-1-0.dll
ext-ms-win-wevtapi-eventlog-l1-1-0.dll
api-ms-win-appmodel-runtime-internal-l1-1-2.dll
api-ms-win-appmodel-runtime-internal-l1-1-4.dll
capauthz.dll
AppXDeploymentExtensions.onecore.dll Delay Loads:
Windows.Networking.Vpn.dll
ext-ms-win-resources-deployment-l1-1-0.dll
ext-ms-win-session-usertoken-l1-1-0.dll
CRYPT32.dll
ext-ms-win-session-usermgr-l1-1-0.dll
api-ms-win-ntuser-ie-message-l1-1-0.dll
ext-ms-win-appmodel-appexecutionalias-l1-1-0.dll
ext-ms-win-appmodel-appexecutionalias-l1-1-1.dll
ext-ms-onecore-appmodel-staterepository-internal-l1-1-3.dll
ext-ms-win-shell32-shellfolders-l1-1-0.dll
ext-ms-win-shell-shell32-l1-2-0.dll
ext-ms-win-appmodel-deployment-l1-1-0.dll
api-ms-win-appmodel-identity-l1-2-0.dll
api-ms-win-appmodel-runtime-internal-l1-1-4.dll
api-ms-win-appmodel-runtime-internal-l1-1-1.dll
api-ms-win-appmodel-runtime-internal-l1-1-2.dll
api-ms-win-appmodel-state-l1-2-0.dll
api-ms-win-core-biptcltapi-l1-1-7.dll
api-ms-win-appmodel-runtime-l1-1-0.dll
api-ms-win-appmodel-runtime-l1-1-1.dll
CLIPC.dll
Bcp47Langs.dll
bcp47mrm.dll
AppXAllUserStore.dll
ext-ms-win-security-capauthz-l1-1-0.dll
ext-ms-win-security-capauthz-l1-1-1.dll
capauthz.dll
api-ms-win-core-biplmapi-l1-1-0.dll
api-ms-win-appmodel-unlock-l1-1-0.dll
AppXDeploymentClient.dll
ext-ms-win-desktopappx-l1-1-6.dll
ext-ms-win-desktopappx-l1-1-0.dll
ext-ms-win-desktopappx-l1-1-4.dll
FirewallAPI.dll
cldapi.dll
ext-ms-win-resources-languageoverlay-l1-1-1.dll
ext-ms-win-security-efswrt-l1-1-2.dll
ext-ms-win-com-ole32-l1-1-1.dll
ext-ms-win-ole32-bindctx-l1-1-0.dll
ext-ms-win-session-wtsapi32-l1-1-0.dll
api-ms-win-security-accesshlpr-l1-1-0.dll
ext-ms-win-advapi32-ntmarta-l1-1-0.dll
ext-ms-win-wevtapi-eventlog-l1-1-0.dll
UserDataPlatformHelperUtil.dll
AppXDeploymentServer.dll Delay Loads:
urlmon.dll
AppXAllUserStore.dll
AppxApplicabilityEngine.dll
EDGEHTML.dll
api-ms-win-shcore-stream-l1-1-0.dll
api-ms-win-shcore-sysinfo-l1-1-0.dll
api-ms-win-shcore-taskpool-l1-1-0.dll
SHCORE.dll
appxapplicabilityblob.dll
ext-ms-win-storage-sense-l1-1-0.dll
ext-ms-onecore-appmodel-tdlmigration-l1-1-0.dll
ext-ms-onecore-appmodel-tdlmigration-l1-1-1.dll
ext-ms-win-advapi32-ntmarta-l1-1-0.dll
ext-ms-win-com-ole32-l1-1-1.dll
ext-ms-win-core-app-package-registration-l1-1-1.dll
ext-ms-win-devmgmt-policy-l1-1-0.dll
ext-ms-win-ntuser-windowstation-l1-1-0.dll
ext-ms-win-ole32-bindctx-l1-1-0.dll
ext-ms-win-resources-deployment-l1-1-0.dll
ext-ms-win-session-usermgr-l1-1-0.dll
ext-ms-win-session-usertoken-l1-1-0.dll
ext-ms-win-session-wtsapi32-l1-1-0.dll
ext-ms-win-wer-reporting-l1-1-0.dll
ext-ms-win-wevtapi-eventlog-l1-1-0.dll
ext-ms-win-appmodel-deployment-l1-1-0.dll
ext-ms-win-appmodel-deployment-l1-1-1.dll
ext-ms-win-appmodel-deploymentvolumes-l1-1-1.dll
ext-ms-win-appmodel-deploymentvolumes-l1-1-0.dll
api-ms-win-core-com-l1-1-0.dll
OLEAUT32.dll
api-ms-win-core-winrt-error-l1-1-1.dll
api-ms-win-core-winrt-error-l1-1-0.dll
api-ms-win-core-winrt-string-l1-1-0.dll
api-ms-win-core-winrt-l1-1-0.dll
api-ms-win-security-sddl-l1-1-0.dll
api-ms-win-security-provider-l1-1-0.dll
api-ms-win-service-core-l1-1-0.dll
FLTLIB.DLL
api-ms-win-eventing-tdh-l1-1-0.dll
api-ms-win-service-private-l1-1-0.dll
USERENV.dll
profapi.dll
api-ms-win-service-management-l1-1-0.dll
api-ms-win-service-winsvc-l1-1-0.dll
api-ms-win-service-management-l2-1-0.dll
api-ms-win-service-core-l1-1-1.dll
api-ms-win-core-com-l1-1-1.dll
api-ms-win-security-capability-l1-1-0.dll
bcrypt.dll
api-ms-win-core-registry-l2-1-0.dll
api-ms-win-security-lsalookup-l1-1-0.dll
api-ms-win-appmodel-runtime-internal-l1-1-1.dll
api-ms-win-appmodel-runtime-internal-l1-1-4.dll
api-ms-win-appmodel-runtime-internal-l1-1-2.dll
api-ms-win-appmodel-runtime-internal-l1-1-7.dll
api-ms-win-appmodel-runtime-internal-l1-1-0.dll
api-ms-win-appmodel-runtime-internal-l1-1-3.dll
api-ms-win-appmodel-state-l1-2-0.dll
api-ms-win-appmodel-unlock-l1-1-0.dll
api-ms-win-core-biplmapi-l1-1-0.dll
api-ms-win-appmodel-runtime-l1-1-0.dll
api-ms-win-appmodel-runtime-l1-1-1.dll
ext-ms-win-desktopappx-l1-1-0.dll
ext-ms-win-desktopappx-l1-1-1.dll
ext-ms-win-desktopappx-l1-1-4.dll
CRYPTSP.dll
AppXDeploymentClient.dll
msdelta.dll
ext-ms-win-newdev-config-l1-1-3.dll
ext-ms-win-resources-languageoverlay-l1-1-0.dll
ext-ms-win-core-storelicensing-l1-1-0.dll
Wldp.dll
ext-ms-win-security-efswrt-l1-1-2.dll
api-ms-win-containers-cmclient-l1-1-0.dll
api-ms-win-containers-cmclient-l1-2-0.dll
ext-ms-onecore-appmodel-staterepository-cache-l1-1-0.dll
ext-ms-win-containers-policymanagercli-l1-1-0.dll
ext-ms-win32-subsystem-query-l1-1-0.dll
ext-ms-win-appmodel-activation-l1-1-1.dll
CRYPT32.dll
NTMARTA.dll
ext-ms-onecore-appmodel-staterepository-internal-l1-1-3.dll
WINTRUST.dll
AppxPackaging.dll Delay Loads:
api-ms-win-core-winrt-error-l1-1-0.dll
api-ms-win-core-winrt-string-l1-1-0.dll
api-ms-win-core-winrt-l1-1-0.dll
api-ms-win-shcore-stream-l1-1-0.dll
CRYPT32.dll
bcrypt.dll
WINTRUST.dll
CRYPTXML.dll
api-ms-win-eventing-tdh-l1-1-0.dll
api-ms-win-appmodel-runtime-internal-l1-1-1.dll
api-ms-win-appmodel-unlock-l1-1-0.dll
AppxSip.dll Delay Loads:
api-ms-win-core-winrt-error-l1-1-0.dll
CRYPT32.dll
api-ms-win-core-com-l1-1-0.dll
api-ms-win-shcore-stream-l1-1-0.dll
OLEAUT32.dll
api-ms-win-eventing-tdh-l1-1-0.dll
api-ms-win-appmodel-unlock-l1-1-0.dll
bcrypt.dll
WINTRUST.dll
XmlLite.dll
CRYPTXML.dll
AppxSysprep.dll Delay Loads:
AppXAllUserStore.dll
ext-ms-win-advapi32-ntmarta-l1-1-0.dll
ext-ms-win-shell32-shellfolders-l1-1-0.dll
AssignedAccessManager.dll Delay Loads:
ktmw32.dll
ext-ms-win-shell-shell32-l1-2-1.dll
ext-ms-win-session-usermgr-l1-1-0.dll
ext-ms-win-session-wtsapi32-l1-1-0.dll
ext-ms-win-adsi-activeds-l1-1-0.dll
assignedaccessmanagersvc.dll Delay Loads:
dmEnrollEngine.DLL
ktmw32.dll
ext-ms-win-session-usermgr-l1-1-0.dll
ext-ms-win-session-wtsapi32-l1-1-0.dll
ext-ms-win-adsi-activeds-l1-1-0.dll
AssignedAccessRuntime.dll Delay Loads:
ext-ms-onecore-appmodel-staterepository-cache-l1-1-0.dll
ext-ms-win-session-usermgr-l1-1-0.dll
AssignedAccessShellProxy.dll Delay Loads:
DismApi.DLL
ext-ms-win-security-credui-l1-1-0.dll
ext-ms-win-shell-shell32-l1-2-0.dll
ext-ms-win-session-wtsapi32-l1-1-0.dll
ext-ms-win-desktopappx-l1-1-0.dll
atl.dll Delay Loads:
OLE32.dll
OLEAUT32.dll
ADVAPI32.dll
atl110.dll Delay Loads:
ADVAPI32.dll
GDI32.dll
ole32.dll
OLEAUT32.dll
USER32.dll
AudioEndpointBuilder.dll Delay Loads:
HrtfApo.dll
api-ms-win-core-com-l1-1-0.dll
api-ms-win-power-setting-l1-1-0.dll
PROPSYS.dll
DEVOBJ.dll
bcrypt.dll
ext-ms-win-session-wtsapi32-l1-1-0.dll
ext-ms-win-setupapi-logging-l1-1-0.dll
ext-ms-win-audiocore-pal-l1-2-0.dll
ext-ms-win-audiocore-spatial-l1-1-0.dll
ext-ms-win-bluetooth-apis-l1-1-0.dll
CompPkgSup.DLL
api-ms-win-appmodel-runtime-l1-1-1.dll
api-ms-win-appmodel-runtime-l1-1-0.dll
ext-ms-win-session-winsta-l1-1-0.dll
AudioEng.dll Delay Loads:
CompPkgSup.DLL
RTWorkQ.DLL
HrtfApo.dll
ext-ms-win-audiocore-spatial-l1-1-0.dll
ext-ms-win-setupapi-classinstallers-l1-1-0.dll
MMDevAPI.DLL
AudioHandlers.dll Delay Loads:
ext-ms-win-shell32-shellfolders-l1-1-0.dll
ext-ms-win-shell-shell32-l1-2-0.dll
ext-ms-win-audiocore-spatial-l1-1-0.dll
AUDIOKSE.dll Delay Loads:
ext-ms-win-audiocore-pal-l1-2-0.dll
WINTRUST.dll
CRYPT32.dll
AudioSes.dll Delay Loads:
api-ms-win-core-psm-appnotify-l1-1-0.dll
api-ms-win-core-winrt-robuffer-l1-1-0.dll
api-ms-win-appmodel-runtime-l1-1-1.dll
api-ms-win-appmodel-runtime-l1-1-0.dll
ext-ms-win-core-resourcepolicy-l1-1-0.dll
api-ms-win-rtcore-ntuser-private-l1-1-4.dll
ext-ms-win-advapi32-psm-app-l1-1-0.dll
ext-ms-win-audiocore-spatial-l1-1-0.dll
AVRT.dll
CompPkgSup.DLL
audiosrv.dll Delay Loads:
ksuser.dll
HrtfApo.dll
OLEAUT32.dll
api-ms-win-core-winrt-error-l1-1-0.dll
api-ms-win-core-com-l1-1-0.dll
api-ms-win-security-base-l1-1-0.dll
api-ms-win-security-sddl-l1-1-0.dll
api-ms-win-power-base-l1-1-0.dll
api-ms-win-devices-config-l1-1-1.dll
api-ms-win-power-setting-l1-1-0.dll
api-ms-win-core-winrt-string-l1-1-0.dll
api-ms-win-devices-query-l1-1-0.dll
HID.DLL
PROPSYS.dll
api-ms-win-core-winrt-error-l1-1-1.dll
api-ms-win-service-core-l1-1-0.dll
faultrep.dll
SSDM.dll
AVRT.dll
ext-ms-win-session-winsta-l1-1-0.dll
ext-ms-win-session-wtsapi32-l1-1-0.dll
ext-ms-win-audiocore-pal-l1-2-0.dll
ext-ms-win-audiocore-policymanager-l1-1-0.dll
ext-ms-win-audiocore-coreaudiopolicymanager-l1-1-0.dll
ext-ms-win-audiocore-spatial-l1-1-0.dll
DEVOBJ.dll
RMCLIENT.dll
CompPkgSup.DLL
AudioSrvPolicyManager.dll Delay Loads:
OnDemandBrokerClient.dll
api-ms-win-security-lsalookup-l2-1-0.dll
ext-ms-win-session-winsta-l1-1-0.dll
ext-ms-win-session-wtsapi32-l1-1-0.dll
auditcse.dll Delay Loads:
ext-ms-win-setupapi-inf-l1-1-0.dll
AuthBroker.dll Delay Loads:
twinapi.appcore.dll
api-ms-win-core-com-l1-1-0.dll
api-ms-win-security-sddl-l1-1-0.dll
USERENV.dll
OLEAUT32.dll
api-ms-win-core-com-l1-1-1.dll
api-ms-win-shcore-obsolete-l1-1-0.dll
api-ms-win-shell-shellfolders-l1-1-0.dll
ext-ms-win-ntuser-message-l1-1-0.dll
ext-ms-win-ntuser-synch-l1-1-0.dll
ext-ms-win-ntuser-uicontext-ext-l1-1-0.dll
ext-ms-win-ntuser-window-l1-1-0.dll
ext-ms-win-rtcore-ntuser-cursor-l1-1-0.dll
ext-ms-win-shell-shell32-l1-2-0.dll
ext-ms-win-security-authbrokerui-l1-1-0.dll
api-ms-win-appmodel-identity-l1-2-0.dll
api-ms-win-appmodel-runtime-l1-1-0.dll
VAULTCLI.dll
urlmon.dll
AuthBrokerUI.dll Delay Loads:
api-ms-win-core-com-l1-1-0.dll
api-ms-win-shcore-comhelpers-l1-1-0.dll
api-ms-win-rtcore-ntuser-window-l1-1-0.dll
ext-ms-win-ntuser-synch-l1-1-0.dll
ext-ms-win-ntuser-window-l1-1-2.dll
DUI70.dll
USER32.dll
ext-ms-win-gui-dui70-l1-1-0.dll
Bcp47Langs.dll
MSHTML.dll
IMM32.dll
ext-ms-win-com-ole32-l1-1-1.dll
ext-ms-win-xaml-pal-l1-1-0.dll
AuthExt.dll Delay Loads:
BatMeter.dll
api-ms-win-shcore-scaling-l1-1-0.dll
SHCORE.dll
authfwcfg.dll Delay Loads:
ext-ms-win-networking-winipsec-l1-1-0.dll
fwbase.dll
authui.dll Delay Loads:
COMCTL32.dll
UxTheme.dll
ext-ms-win-uiacore-l1-1-1.dll
RPCRT4.dll
api-ms-win-mm-playsound-l1-1-0.dll
ext-ms-win-shell-shell32-l1-2-0.dll
ext-ms-win-session-candidateaccountmgr-l1-1-0.dll
WINSTA.dll
DUI70.dll
DUser.dll
dsreg.dll
authz.dll Delay Loads:
RPCRT4.dll
api-ms-win-security-sddl-l1-1-0.dll
WLDAP32.dll
SspiCli.dll
DSROLE.dll
netutils.dll
logoncli.dll
api-ms-win-security-lsalookup-l2-1-0.dll
ext-ms-win-authz-remote-l1-1-0.dll
api-ms-win-security-lsalookup-l1-1-0.dll
api-ms-win-security-sddlparsecond-l1-1-0.dll
SAMLIB.dll
autopilot.dll Delay Loads:
DMCmnUtils.dll
autoplay.dll Delay Loads:
PROPSYS.dll
autotimesvc.dll Delay Loads:
ext-ms-win-shell32-shellfolders-l1-1-0.dll
api-ms-win-security-provider-l1-1-0.dll
AxInstSv.dll Delay Loads:
WINHTTP.dll
USERENV.dll
CRYPT32.dll
urlmon.dll
WINTRUST.dll
azroles.dll Delay Loads:
WLDAP32.dll
netutils.dll
DSROLE.dll
dfscli.dll
logoncli.dll
Secur32.dll
MPR.dll
SHLWAPI.dll
AzureSettingSyncProvider.dll Delay Loads:
api-ms-win-core-winrt-error-l1-1-0.dll
ext-ms-win-shell32-shellfolders-l1-1-0.dll
api-ms-win-shcore-registry-l1-1-0.dll
api-ms-win-shcore-stream-l1-1-0.dll
api-ms-win-security-cryptoapi-l1-1-0.dll
api-ms-win-core-winrt-error-l1-1-1.dll
WinSync.dll
BarcodeProvisioningPlugin.dll Delay Loads:
provpackageapidll.dll
api-ms-win-shcore-stream-l1-1-0.dll
basecsp.dll Delay Loads:
CRYPT32.dll
api-ms-win-security-credentials-l1-1-0.dll
api-ms-win-core-com-l1-1-0.dll
CRYPTBASE.dll
CRYPTSP.dll
ADVAPI32.dll
credui.dll
WinSCard.dll
WTSAPI32.dll
batmeter.dll Delay Loads:
SETUPAPI.dll
BcastDVRCommon.dll Delay Loads:
ext-ms-win-session-usermgr-l1-1-0.dll
ext-ms-win-shell32-shellfolders-l1-1-0.dll
SystemEventsBrokerClient.dll
api-ms-win-appmodel-runtime-l1-1-1.dll
bcastdvruserservice.dll Delay Loads:
ext-ms-win-core-resourcepolicy-l1-1-0.dll
MF.dll
ext-ms-win-shell32-shellfolders-l1-1-0.dll
ext-ms-win-winrt-storage-l1-1-0.dll
ext-ms-win-resourcemanager-gamemode-l1-2-0.dll
ext-ms-win-resourcemanager-gamemode-l1-2-1.dll
ext-ms-win-ntuser-window-l1-1-0.dll
ext-ms-win-ntuser-window-l1-1-2.dll
ext-ms-win-ntuser-uicontext-ext-l1-1-0.dll
BCP47Langs.dll Delay Loads:
ext-ms-win-ntuser-message-l1-1-1.dll
ext-ms-win-kernel32-localization-l1-1-0.dll
api-ms-win-core-winrt-string-l1-1-0.dll
api-ms-win-security-sddl-l1-1-0.dll
ext-ms-win-kernel32-package-l1-1-0.dll
profapi.dll
BCP47mrm.dll Delay Loads:
api-ms-win-core-winrt-string-l1-1-0.dll
profapi.dll
bcrypt.dll Delay Loads:
bcryptPrimitives.dll
bdesvc.dll Delay Loads:
OLEAUT32.dll
SspiCli.dll
USERENV.dll
DEVOBJ.dll
profapi.dll
tdh.dll
FVESKYBACKUP.dll
WTSAPI32.dll
ext-ms-win-devmgmt-policy-l1-1-0.dll
dsreg.dll
VirtDisk.dll
api-ms-win-security-provider-l1-1-0.dll
omadmapi.dll
BFE.DLL Delay Loads:
api-ms-win-service-core-l1-1-0.dll
api-ms-win-service-management-l1-1-0.dll
api-ms-win-service-core-l1-1-1.dll
api-ms-win-service-management-l2-1-0.dll
api-ms-win-security-sddl-l1-1-0.dll
api-ms-win-security-lsalookup-l1-1-0.dll
CRYPT32.dll
api-ms-win-core-registry-l2-1-0.dll
ktmw32.dll
ext-ms-win-wevtapi-eventlog-l1-1-0.dll
DNSAPI.dll
SspiCli.dll
api-ms-win-security-audit-l1-1-0.dll
BioCredProv.dll Delay Loads:
api-ms-win-security-sddl-l1-1-0.dll
wkscli.dll
netutils.dll
SspiCli.dll
ncrypt.dll
CRYPT32.dll
api-ms-win-shcore-obsolete-l1-1-0.dll
api-ms-win-security-lsalookup-l1-1-0.dll
api-ms-win-security-lsapolicy-l1-1-0.dll
api-ms-win-security-lsalookup-l1-1-2.dll
ext-ms-win-security-credui-l1-1-0.dll
ext-ms-win-security-credui-l1-1-1.dll
ext-ms-win-biometrics-winbio-core-l1-1-2.dll
ext-ms-win-biometrics-winbio-core-l1-1-0.dll
ext-ms-win-biometrics-winbio-l1-2-0.dll
ext-ms-win-ntuser-draw-l1-1-1.dll
api-ms-win-ngc-serialization-l1-1-0.dll
api-ms-win-ngc-serialization-l1-1-1.dll
cryptngc.dll
bisrv.dll Delay Loads:
api-ms-win-appmodel-runtime-l1-1-1.dll
api-ms-win-appmodel-runtime-l1-1-0.dll
api-ms-win-appmodel-identity-l1-2-0.dll
ext-ms-win-session-usermgr-l1-1-0.dll
ext-ms-win-core-app-package-registration-l1-1-0.dll
ext-ms-win-session-winsta-l1-1-0.dll
ext-ms-onecore-appmodel-staterepository-cache-l1-1-0.dll
ext-ms-onecore-appmodel-staterepository-cache-l1-1-2.dll
ext-ms-win-shell-embeddedmode-l1-1-0.dll
ext-ms-win-session-wtsapi32-l1-1-0.dll
FeClient.dll
ext-ms-win-edputil-policy-l1-1-0.dll
BitLockerCsp.dll Delay Loads:
policymanager.dll
FVEAPI.dll
SAMLIB.dll
dsreg.dll
ext-ms-win-biometrics-winbio-core-l1-1-1.dll
RPCRT4.dll
FveEnableUnlock.dll
VirtDisk.dll
AUTHZ.dll
samcli.dll
netutils.dll
bitsigd.dll Delay Loads:
IPHLPAPI.DLL
WS2_32.dll
OLEAUT32.dll
WINHTTP.dll
BitsProxy.dll Delay Loads:
OLEAUT32.dll
biwinrt.dll Delay Loads:
api-ms-win-appmodel-runtime-l1-1-0.dll
api-ms-win-core-winrt-propertysetprivate-l1-1-1.dll
api-ms-win-core-com-private-l1-1-0.dll
BluetoothApis.dll Delay Loads:
deviceassociation.dll
ext-ms-win-setupapi-classinstallers-l1-1-0.dll
ext-ms-win-setupapi-classinstallers-l1-1-1.dll
ext-ms-win-newdev-config-l1-1-0.dll
BluetoothDesktopHandlers.dll Delay Loads:
ext-ms-win-shell-shell32-l1-2-0.dll
BootMenuUX.dll Delay Loads:
WIMGAPI.DLL
CLOUDRECAPI.DLL
ResetEngine.dll
bootux.dll Delay Loads:
PROPSYS.dll
api-ms-win-core-com-l1-1-0.dll
api-ms-win-security-provider-l1-1-0.dll
BrokerLib.dll Delay Loads:
api-ms-win-core-bicltapi-l1-1-5.dll
api-ms-win-appmodel-runtime-l1-1-0.dll
browcli.dll Delay Loads:
netutils.dll
api-ms-win-service-management-l1-1-0.dll
api-ms-win-service-winsvc-l1-1-0.dll
wkscli.dll
browserbroker.dll Delay Loads:
edgeIso.dll
urlmon.dll