-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompleteOutputExample.txt
More file actions
15169 lines (6876 loc) · 399 KB
/
Copy pathcompleteOutputExample.txt
File metadata and controls
15169 lines (6876 loc) · 399 KB
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
---the beginning of program output---
Number of files successfully Verified: 0
Number of warnings: 0
Number of errors: 1
Verifying: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\NVWMI\nvWmi.mof
File is signed in catalog: C:\Windows\System32\CatRoot\{F750E6C3-38EE-11D1-85E5-00C04FC295EE}\oem15.cat
Hash of file (sha1): 49E2DB9F6103BD4698DD7BF9AF63D62B6EA93B06
Signing Certificate Chain:
Issued to: Microsoft Root Certificate Authority 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sat Jun 23 17:04:01 2035
SHA1 hash: 3B1EFD3A66EA28B16697394703A72CA340A05BD5
Issued to: Microsoft Windows Third Party Component CA 2012
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sun Apr 18 18:58:38 2027
SHA1 hash: 77A10EBF07542725218CD83A01B521C57BC67F73
Issued to: Microsoft Windows Hardware Compatibility Publisher
Issued by: Microsoft Windows Third Party Component CA 2012
Expires: Thu Dec 02 17:15:33 2021
SHA1 hash: 38B7C74E37392713E436E19A2BE053100115DA88
The signature is timestamped: Fri Mar 26 02:52:28 2021
Timestamp Verified by:
Issued to: Microsoft Root Certificate Authority 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sat Jun 23 17:04:01 2035
SHA1 hash: 3B1EFD3A66EA28B16697394703A72CA340A05BD5
Issued to: Microsoft Time-Stamp PCA 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Tue Jul 01 16:46:55 2025
SHA1 hash: 2AA752FE64C49ABE82913C463529CF10FF2F04EE
Issued to: Microsoft Time-Stamp Service
Issued by: Microsoft Time-Stamp PCA 2010
Expires: Wed Jan 12 12:28:14 2022
SHA1 hash: EABBA83938895CFC213B996D416B006EDE731A9C
Successfully verified: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\NVWMI\nvWmi.mof
Number of files successfully Verified: 1
Number of warnings: 0
Number of errors: 0
Verifying: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\NVWMI\nvWmi64.exe
File is signed in catalog: C:\Windows\System32\CatRoot\{F750E6C3-38EE-11D1-85E5-00C04FC295EE}\oem15.cat
Hash of file (sha1): 16DDD28534879B25C9428B1276DFC77D75598C67
Signing Certificate Chain:
Issued to: Microsoft Root Certificate Authority 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sat Jun 23 17:04:01 2035
SHA1 hash: 3B1EFD3A66EA28B16697394703A72CA340A05BD5
Issued to: Microsoft Windows Third Party Component CA 2012
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sun Apr 18 18:58:38 2027
SHA1 hash: 77A10EBF07542725218CD83A01B521C57BC67F73
Issued to: Microsoft Windows Hardware Compatibility Publisher
Issued by: Microsoft Windows Third Party Component CA 2012
Expires: Thu Dec 02 17:15:33 2021
SHA1 hash: 38B7C74E37392713E436E19A2BE053100115DA88
The signature is timestamped: Fri Mar 26 02:52:28 2021
Timestamp Verified by:
Issued to: Microsoft Root Certificate Authority 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sat Jun 23 17:04:01 2035
SHA1 hash: 3B1EFD3A66EA28B16697394703A72CA340A05BD5
Issued to: Microsoft Time-Stamp PCA 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Tue Jul 01 16:46:55 2025
SHA1 hash: 2AA752FE64C49ABE82913C463529CF10FF2F04EE
Issued to: Microsoft Time-Stamp Service
Issued by: Microsoft Time-Stamp PCA 2010
Expires: Wed Jan 12 12:28:14 2022
SHA1 hash: EABBA83938895CFC213B996D416B006EDE731A9C
Successfully verified: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\NVWMI\nvWmi64.exe
Number of files successfully Verified: 1
Number of warnings: 0
Number of errors: 0
Verifying: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\Display.NvContainer\MessageBus.dll
File is signed in catalog: C:\Windows\System32\CatRoot\{F750E6C3-38EE-11D1-85E5-00C04FC295EE}\oem15.cat
Hash of file (sha1): 75C8F209EFA04595643E952251CA11B7EAD46F49
Signing Certificate Chain:
Issued to: Microsoft Root Certificate Authority 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sat Jun 23 17:04:01 2035
SHA1 hash: 3B1EFD3A66EA28B16697394703A72CA340A05BD5
Issued to: Microsoft Windows Third Party Component CA 2012
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sun Apr 18 18:58:38 2027
SHA1 hash: 77A10EBF07542725218CD83A01B521C57BC67F73
Issued to: Microsoft Windows Hardware Compatibility Publisher
Issued by: Microsoft Windows Third Party Component CA 2012
Expires: Thu Dec 02 17:15:33 2021
SHA1 hash: 38B7C74E37392713E436E19A2BE053100115DA88
The signature is timestamped: Fri Mar 26 02:52:28 2021
Timestamp Verified by:
Issued to: Microsoft Root Certificate Authority 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sat Jun 23 17:04:01 2035
SHA1 hash: 3B1EFD3A66EA28B16697394703A72CA340A05BD5
Issued to: Microsoft Time-Stamp PCA 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Tue Jul 01 16:46:55 2025
SHA1 hash: 2AA752FE64C49ABE82913C463529CF10FF2F04EE
Issued to: Microsoft Time-Stamp Service
Issued by: Microsoft Time-Stamp PCA 2010
Expires: Wed Jan 12 12:28:14 2022
SHA1 hash: EABBA83938895CFC213B996D416B006EDE731A9C
Successfully verified: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\Display.NvContainer\MessageBus.dll
Number of files successfully Verified: 1
Number of warnings: 0
Number of errors: 0
Verifying: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\Display.NvContainer\NVDisplay.Container.exe
File is signed in catalog: C:\Windows\System32\CatRoot\{F750E6C3-38EE-11D1-85E5-00C04FC295EE}\oem15.cat
Hash of file (sha1): ECC2FA44146FDEC3D608A1CA1E5B52A3B676C80B
Signing Certificate Chain:
Issued to: Microsoft Root Certificate Authority 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sat Jun 23 17:04:01 2035
SHA1 hash: 3B1EFD3A66EA28B16697394703A72CA340A05BD5
Issued to: Microsoft Windows Third Party Component CA 2012
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sun Apr 18 18:58:38 2027
SHA1 hash: 77A10EBF07542725218CD83A01B521C57BC67F73
Issued to: Microsoft Windows Hardware Compatibility Publisher
Issued by: Microsoft Windows Third Party Component CA 2012
Expires: Thu Dec 02 17:15:33 2021
SHA1 hash: 38B7C74E37392713E436E19A2BE053100115DA88
The signature is timestamped: Fri Mar 26 02:52:28 2021
Timestamp Verified by:
Issued to: Microsoft Root Certificate Authority 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sat Jun 23 17:04:01 2035
SHA1 hash: 3B1EFD3A66EA28B16697394703A72CA340A05BD5
Issued to: Microsoft Time-Stamp PCA 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Tue Jul 01 16:46:55 2025
SHA1 hash: 2AA752FE64C49ABE82913C463529CF10FF2F04EE
Issued to: Microsoft Time-Stamp Service
Issued by: Microsoft Time-Stamp PCA 2010
Expires: Wed Jan 12 12:28:14 2022
SHA1 hash: EABBA83938895CFC213B996D416B006EDE731A9C
Successfully verified: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\Display.NvContainer\NVDisplay.Container.exe
Number of files successfully Verified: 1
Number of warnings: 0
Number of errors: 0
Verifying: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\Display.NvContainer\NvContainerRecovery.bat
File is signed in catalog: C:\Windows\System32\CatRoot\{F750E6C3-38EE-11D1-85E5-00C04FC295EE}\oem15.cat
Hash of file (sha1): 80DCF15E55AE1F8F6D5E0C8004E3FC49D37AD441
Signing Certificate Chain:
Issued to: Microsoft Root Certificate Authority 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sat Jun 23 17:04:01 2035
SHA1 hash: 3B1EFD3A66EA28B16697394703A72CA340A05BD5
Issued to: Microsoft Windows Third Party Component CA 2012
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sun Apr 18 18:58:38 2027
SHA1 hash: 77A10EBF07542725218CD83A01B521C57BC67F73
Issued to: Microsoft Windows Hardware Compatibility Publisher
Issued by: Microsoft Windows Third Party Component CA 2012
Expires: Thu Dec 02 17:15:33 2021
SHA1 hash: 38B7C74E37392713E436E19A2BE053100115DA88
The signature is timestamped: Fri Mar 26 02:52:28 2021
Timestamp Verified by:
Issued to: Microsoft Root Certificate Authority 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sat Jun 23 17:04:01 2035
SHA1 hash: 3B1EFD3A66EA28B16697394703A72CA340A05BD5
Issued to: Microsoft Time-Stamp PCA 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Tue Jul 01 16:46:55 2025
SHA1 hash: 2AA752FE64C49ABE82913C463529CF10FF2F04EE
Issued to: Microsoft Time-Stamp Service
Issued by: Microsoft Time-Stamp PCA 2010
Expires: Wed Jan 12 12:28:14 2022
SHA1 hash: EABBA83938895CFC213B996D416B006EDE731A9C
Successfully verified: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\Display.NvContainer\NvContainerRecovery.bat
Number of files successfully Verified: 1
Number of warnings: 0
Number of errors: 0
Verifying: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\Display.NvContainer\dlsargs.xml
File is signed in catalog: C:\Windows\System32\CatRoot\{F750E6C3-38EE-11D1-85E5-00C04FC295EE}\oem15.cat
Hash of file (sha1): 288DE9E8049D6F3CCBEF99573A02003000180550
Signing Certificate Chain:
Issued to: Microsoft Root Certificate Authority 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sat Jun 23 17:04:01 2035
SHA1 hash: 3B1EFD3A66EA28B16697394703A72CA340A05BD5
Issued to: Microsoft Windows Third Party Component CA 2012
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sun Apr 18 18:58:38 2027
SHA1 hash: 77A10EBF07542725218CD83A01B521C57BC67F73
Issued to: Microsoft Windows Hardware Compatibility Publisher
Issued by: Microsoft Windows Third Party Component CA 2012
Expires: Thu Dec 02 17:15:33 2021
SHA1 hash: 38B7C74E37392713E436E19A2BE053100115DA88
The signature is timestamped: Fri Mar 26 02:52:28 2021
Timestamp Verified by:
Issued to: Microsoft Root Certificate Authority 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sat Jun 23 17:04:01 2035
SHA1 hash: 3B1EFD3A66EA28B16697394703A72CA340A05BD5
Issued to: Microsoft Time-Stamp PCA 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Tue Jul 01 16:46:55 2025
SHA1 hash: 2AA752FE64C49ABE82913C463529CF10FF2F04EE
Issued to: Microsoft Time-Stamp Service
Issued by: Microsoft Time-Stamp PCA 2010
Expires: Wed Jan 12 12:28:14 2022
SHA1 hash: EABBA83938895CFC213B996D416B006EDE731A9C
Successfully verified: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\Display.NvContainer\dlsargs.xml
Number of files successfully Verified: 1
Number of warnings: 0
Number of errors: 0
Verifying: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\Display.NvContainer\dlsnetparams.csv
File is signed in catalog: C:\Windows\System32\CatRoot\{F750E6C3-38EE-11D1-85E5-00C04FC295EE}\oem15.cat
Hash of file (sha1): 35A8510B54249E2CBC75352DB5112706B8AFB01E
Signing Certificate Chain:
Issued to: Microsoft Root Certificate Authority 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sat Jun 23 17:04:01 2035
SHA1 hash: 3B1EFD3A66EA28B16697394703A72CA340A05BD5
Issued to: Microsoft Windows Third Party Component CA 2012
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sun Apr 18 18:58:38 2027
SHA1 hash: 77A10EBF07542725218CD83A01B521C57BC67F73
Issued to: Microsoft Windows Hardware Compatibility Publisher
Issued by: Microsoft Windows Third Party Component CA 2012
Expires: Thu Dec 02 17:15:33 2021
SHA1 hash: 38B7C74E37392713E436E19A2BE053100115DA88
The signature is timestamped: Fri Mar 26 02:52:28 2021
Timestamp Verified by:
Issued to: Microsoft Root Certificate Authority 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sat Jun 23 17:04:01 2035
SHA1 hash: 3B1EFD3A66EA28B16697394703A72CA340A05BD5
Issued to: Microsoft Time-Stamp PCA 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Tue Jul 01 16:46:55 2025
SHA1 hash: 2AA752FE64C49ABE82913C463529CF10FF2F04EE
Issued to: Microsoft Time-Stamp Service
Issued by: Microsoft Time-Stamp PCA 2010
Expires: Wed Jan 12 12:28:14 2022
SHA1 hash: EABBA83938895CFC213B996D416B006EDE731A9C
Successfully verified: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\Display.NvContainer\dlsnetparams.csv
Number of files successfully Verified: 1
Number of warnings: 0
Number of errors: 0
Verifying: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\Display.NvContainer\messagebus_client.conf
File is signed in catalog: C:\Windows\System32\CatRoot\{F750E6C3-38EE-11D1-85E5-00C04FC295EE}\oem15.cat
Hash of file (sha1): A9B0750E35D96A709D1EF31DBD7211A2C5F6F38D
Signing Certificate Chain:
Issued to: Microsoft Root Certificate Authority 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sat Jun 23 17:04:01 2035
SHA1 hash: 3B1EFD3A66EA28B16697394703A72CA340A05BD5
Issued to: Microsoft Windows Third Party Component CA 2012
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sun Apr 18 18:58:38 2027
SHA1 hash: 77A10EBF07542725218CD83A01B521C57BC67F73
Issued to: Microsoft Windows Hardware Compatibility Publisher
Issued by: Microsoft Windows Third Party Component CA 2012
Expires: Thu Dec 02 17:15:33 2021
SHA1 hash: 38B7C74E37392713E436E19A2BE053100115DA88
The signature is timestamped: Fri Mar 26 02:52:28 2021
Timestamp Verified by:
Issued to: Microsoft Root Certificate Authority 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sat Jun 23 17:04:01 2035
SHA1 hash: 3B1EFD3A66EA28B16697394703A72CA340A05BD5
Issued to: Microsoft Time-Stamp PCA 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Tue Jul 01 16:46:55 2025
SHA1 hash: 2AA752FE64C49ABE82913C463529CF10FF2F04EE
Issued to: Microsoft Time-Stamp Service
Issued by: Microsoft Time-Stamp PCA 2010
Expires: Wed Jan 12 12:28:14 2022
SHA1 hash: EABBA83938895CFC213B996D416B006EDE731A9C
Successfully verified: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\Display.NvContainer\messagebus_client.conf
Number of files successfully Verified: 1
Number of warnings: 0
Number of errors: 0
Verifying: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\Display.NvContainer\nvgwls.exe
File is signed in catalog: C:\Windows\System32\CatRoot\{F750E6C3-38EE-11D1-85E5-00C04FC295EE}\oem15.cat
Hash of file (sha1): 2ABA675A619EFC8A530C20DE91C0FAB96DDE30E8
Signing Certificate Chain:
Issued to: Microsoft Root Certificate Authority 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sat Jun 23 17:04:01 2035
SHA1 hash: 3B1EFD3A66EA28B16697394703A72CA340A05BD5
Issued to: Microsoft Windows Third Party Component CA 2012
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sun Apr 18 18:58:38 2027
SHA1 hash: 77A10EBF07542725218CD83A01B521C57BC67F73
Issued to: Microsoft Windows Hardware Compatibility Publisher
Issued by: Microsoft Windows Third Party Component CA 2012
Expires: Thu Dec 02 17:15:33 2021
SHA1 hash: 38B7C74E37392713E436E19A2BE053100115DA88
The signature is timestamped: Fri Mar 26 02:52:28 2021
Timestamp Verified by:
Issued to: Microsoft Root Certificate Authority 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sat Jun 23 17:04:01 2035
SHA1 hash: 3B1EFD3A66EA28B16697394703A72CA340A05BD5
Issued to: Microsoft Time-Stamp PCA 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Tue Jul 01 16:46:55 2025
SHA1 hash: 2AA752FE64C49ABE82913C463529CF10FF2F04EE
Issued to: Microsoft Time-Stamp Service
Issued by: Microsoft Time-Stamp PCA 2010
Expires: Wed Jan 12 12:28:14 2022
SHA1 hash: EABBA83938895CFC213B996D416B006EDE731A9C
Successfully verified: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\Display.NvContainer\nvgwls.exe
Number of files successfully Verified: 1
Number of warnings: 0
Number of errors: 0
Verifying: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\Display.NvContainer\nvtopps.db3
Number of files successfully Verified: 0
Number of warnings: 0
Number of errors: 1
Verifying: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\Display.NvContainer\plugins\LocalSystem\NvXDCore.dll
File is signed in catalog: C:\Windows\System32\CatRoot\{F750E6C3-38EE-11D1-85E5-00C04FC295EE}\oem15.cat
Hash of file (sha1): 38C281A873B6315F6575FB8CCC90A1AA4E00CF8E
Signing Certificate Chain:
Issued to: Microsoft Root Certificate Authority 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sat Jun 23 17:04:01 2035
SHA1 hash: 3B1EFD3A66EA28B16697394703A72CA340A05BD5
Issued to: Microsoft Windows Third Party Component CA 2012
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sun Apr 18 18:58:38 2027
SHA1 hash: 77A10EBF07542725218CD83A01B521C57BC67F73
Issued to: Microsoft Windows Hardware Compatibility Publisher
Issued by: Microsoft Windows Third Party Component CA 2012
Expires: Thu Dec 02 17:15:33 2021
SHA1 hash: 38B7C74E37392713E436E19A2BE053100115DA88
The signature is timestamped: Fri Mar 26 02:52:28 2021
Timestamp Verified by:
Issued to: Microsoft Root Certificate Authority 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sat Jun 23 17:04:01 2035
SHA1 hash: 3B1EFD3A66EA28B16697394703A72CA340A05BD5
Issued to: Microsoft Time-Stamp PCA 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Tue Jul 01 16:46:55 2025
SHA1 hash: 2AA752FE64C49ABE82913C463529CF10FF2F04EE
Issued to: Microsoft Time-Stamp Service
Issued by: Microsoft Time-Stamp PCA 2010
Expires: Wed Jan 12 12:28:14 2022
SHA1 hash: EABBA83938895CFC213B996D416B006EDE731A9C
Successfully verified: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\Display.NvContainer\plugins\LocalSystem\NvXDCore.dll
Number of files successfully Verified: 1
Number of warnings: 0
Number of errors: 0
Verifying: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\Display.NvContainer\plugins\LocalSystem\NvcDispCorePlugin.dll
File is signed in catalog: C:\Windows\System32\CatRoot\{F750E6C3-38EE-11D1-85E5-00C04FC295EE}\oem15.cat
Hash of file (sha1): 52ABB8B46F7EDCB109DFCA66FBA52B31C421E4C3
Signing Certificate Chain:
Issued to: Microsoft Root Certificate Authority 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sat Jun 23 17:04:01 2035
SHA1 hash: 3B1EFD3A66EA28B16697394703A72CA340A05BD5
Issued to: Microsoft Windows Third Party Component CA 2012
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sun Apr 18 18:58:38 2027
SHA1 hash: 77A10EBF07542725218CD83A01B521C57BC67F73
Issued to: Microsoft Windows Hardware Compatibility Publisher
Issued by: Microsoft Windows Third Party Component CA 2012
Expires: Thu Dec 02 17:15:33 2021
SHA1 hash: 38B7C74E37392713E436E19A2BE053100115DA88
The signature is timestamped: Fri Mar 26 02:52:28 2021
Timestamp Verified by:
Issued to: Microsoft Root Certificate Authority 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sat Jun 23 17:04:01 2035
SHA1 hash: 3B1EFD3A66EA28B16697394703A72CA340A05BD5
Issued to: Microsoft Time-Stamp PCA 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Tue Jul 01 16:46:55 2025
SHA1 hash: 2AA752FE64C49ABE82913C463529CF10FF2F04EE
Issued to: Microsoft Time-Stamp Service
Issued by: Microsoft Time-Stamp PCA 2010
Expires: Wed Jan 12 12:28:14 2022
SHA1 hash: EABBA83938895CFC213B996D416B006EDE731A9C
Successfully verified: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\Display.NvContainer\plugins\LocalSystem\NvcDispCorePlugin.dll
Number of files successfully Verified: 1
Number of warnings: 0
Number of errors: 0
Verifying: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\Display.NvContainer\plugins\LocalSystem\NvcDispWatchdog.dll
File is signed in catalog: C:\Windows\System32\CatRoot\{F750E6C3-38EE-11D1-85E5-00C04FC295EE}\oem15.cat
Hash of file (sha1): 6962A445B52F3B14305B2D47648CBF768D3157AB
Signing Certificate Chain:
Issued to: Microsoft Root Certificate Authority 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sat Jun 23 17:04:01 2035
SHA1 hash: 3B1EFD3A66EA28B16697394703A72CA340A05BD5
Issued to: Microsoft Windows Third Party Component CA 2012
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sun Apr 18 18:58:38 2027
SHA1 hash: 77A10EBF07542725218CD83A01B521C57BC67F73
Issued to: Microsoft Windows Hardware Compatibility Publisher
Issued by: Microsoft Windows Third Party Component CA 2012
Expires: Thu Dec 02 17:15:33 2021
SHA1 hash: 38B7C74E37392713E436E19A2BE053100115DA88
The signature is timestamped: Fri Mar 26 02:52:28 2021
Timestamp Verified by:
Issued to: Microsoft Root Certificate Authority 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sat Jun 23 17:04:01 2035
SHA1 hash: 3B1EFD3A66EA28B16697394703A72CA340A05BD5
Issued to: Microsoft Time-Stamp PCA 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Tue Jul 01 16:46:55 2025
SHA1 hash: 2AA752FE64C49ABE82913C463529CF10FF2F04EE
Issued to: Microsoft Time-Stamp Service
Issued by: Microsoft Time-Stamp PCA 2010
Expires: Wed Jan 12 12:28:14 2022
SHA1 hash: EABBA83938895CFC213B996D416B006EDE731A9C
Successfully verified: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\Display.NvContainer\plugins\LocalSystem\NvcDispWatchdog.dll
Number of files successfully Verified: 1
Number of warnings: 0
Number of errors: 0
Verifying: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\Display.NvContainer\plugins\LocalSystem\_DisplayDriverRAS.dll
File is signed in catalog: C:\Windows\System32\CatRoot\{F750E6C3-38EE-11D1-85E5-00C04FC295EE}\oem15.cat
Hash of file (sha1): 6CD9C4A9417752673BC0E48C924EC58B2B741DC8
Signing Certificate Chain:
Issued to: Microsoft Root Certificate Authority 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sat Jun 23 17:04:01 2035
SHA1 hash: 3B1EFD3A66EA28B16697394703A72CA340A05BD5
Issued to: Microsoft Windows Third Party Component CA 2012
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sun Apr 18 18:58:38 2027
SHA1 hash: 77A10EBF07542725218CD83A01B521C57BC67F73
Issued to: Microsoft Windows Hardware Compatibility Publisher
Issued by: Microsoft Windows Third Party Component CA 2012
Expires: Thu Dec 02 17:15:33 2021
SHA1 hash: 38B7C74E37392713E436E19A2BE053100115DA88
The signature is timestamped: Fri Mar 26 02:52:28 2021
Timestamp Verified by:
Issued to: Microsoft Root Certificate Authority 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sat Jun 23 17:04:01 2035
SHA1 hash: 3B1EFD3A66EA28B16697394703A72CA340A05BD5
Issued to: Microsoft Time-Stamp PCA 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Tue Jul 01 16:46:55 2025
SHA1 hash: 2AA752FE64C49ABE82913C463529CF10FF2F04EE
Issued to: Microsoft Time-Stamp Service
Issued by: Microsoft Time-Stamp PCA 2010
Expires: Wed Jan 12 12:28:14 2022
SHA1 hash: EABBA83938895CFC213B996D416B006EDE731A9C
Successfully verified: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\Display.NvContainer\plugins\LocalSystem\_DisplayDriverRAS.dll
Number of files successfully Verified: 1
Number of warnings: 0
Number of errors: 0
Verifying: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\Display.NvContainer\plugins\LocalSystem\_NvMsgBusBroadcast.dll
File is signed in catalog: C:\Windows\System32\CatRoot\{F750E6C3-38EE-11D1-85E5-00C04FC295EE}\oem15.cat
Hash of file (sha1): 90CBA29CA5FA9F93C0725A0EFEEFC2AB59F8EC09
Signing Certificate Chain:
Issued to: Microsoft Root Certificate Authority 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sat Jun 23 17:04:01 2035
SHA1 hash: 3B1EFD3A66EA28B16697394703A72CA340A05BD5
Issued to: Microsoft Windows Third Party Component CA 2012
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sun Apr 18 18:58:38 2027
SHA1 hash: 77A10EBF07542725218CD83A01B521C57BC67F73
Issued to: Microsoft Windows Hardware Compatibility Publisher
Issued by: Microsoft Windows Third Party Component CA 2012
Expires: Thu Dec 02 17:15:33 2021
SHA1 hash: 38B7C74E37392713E436E19A2BE053100115DA88
The signature is timestamped: Fri Mar 26 02:52:28 2021
Timestamp Verified by:
Issued to: Microsoft Root Certificate Authority 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sat Jun 23 17:04:01 2035
SHA1 hash: 3B1EFD3A66EA28B16697394703A72CA340A05BD5
Issued to: Microsoft Time-Stamp PCA 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Tue Jul 01 16:46:55 2025
SHA1 hash: 2AA752FE64C49ABE82913C463529CF10FF2F04EE
Issued to: Microsoft Time-Stamp Service
Issued by: Microsoft Time-Stamp PCA 2010
Expires: Wed Jan 12 12:28:14 2022
SHA1 hash: EABBA83938895CFC213B996D416B006EDE731A9C
Successfully verified: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\Display.NvContainer\plugins\LocalSystem\_NvMsgBusBroadcast.dll
Number of files successfully Verified: 1
Number of warnings: 0
Number of errors: 0
Verifying: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\Display.NvContainer\plugins\LocalSystem\messagebus.conf
File is signed in catalog: C:\Windows\System32\CatRoot\{F750E6C3-38EE-11D1-85E5-00C04FC295EE}\oem15.cat
Hash of file (sha1): A9B0750E35D96A709D1EF31DBD7211A2C5F6F38D
Signing Certificate Chain:
Issued to: Microsoft Root Certificate Authority 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sat Jun 23 17:04:01 2035
SHA1 hash: 3B1EFD3A66EA28B16697394703A72CA340A05BD5
Issued to: Microsoft Windows Third Party Component CA 2012
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sun Apr 18 18:58:38 2027
SHA1 hash: 77A10EBF07542725218CD83A01B521C57BC67F73
Issued to: Microsoft Windows Hardware Compatibility Publisher
Issued by: Microsoft Windows Third Party Component CA 2012
Expires: Thu Dec 02 17:15:33 2021
SHA1 hash: 38B7C74E37392713E436E19A2BE053100115DA88
The signature is timestamped: Fri Mar 26 02:52:28 2021
Timestamp Verified by:
Issued to: Microsoft Root Certificate Authority 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sat Jun 23 17:04:01 2035
SHA1 hash: 3B1EFD3A66EA28B16697394703A72CA340A05BD5
Issued to: Microsoft Time-Stamp PCA 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Tue Jul 01 16:46:55 2025
SHA1 hash: 2AA752FE64C49ABE82913C463529CF10FF2F04EE
Issued to: Microsoft Time-Stamp Service
Issued by: Microsoft Time-Stamp PCA 2010
Expires: Wed Jan 12 12:28:14 2022
SHA1 hash: EABBA83938895CFC213B996D416B006EDE731A9C
Successfully verified: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\Display.NvContainer\plugins\LocalSystem\messagebus.conf
Number of files successfully Verified: 1
Number of warnings: 0
Number of errors: 0
Verifying: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\Display.NvContainer\plugins\Session\NvFBCPlugin.dll
File is signed in catalog: C:\Windows\System32\CatRoot\{F750E6C3-38EE-11D1-85E5-00C04FC295EE}\oem15.cat
Hash of file (sha1): 66ED1BFED4AA5F7F86E872871B2C2705E599B600
Signing Certificate Chain:
Issued to: Microsoft Root Certificate Authority 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sat Jun 23 17:04:01 2035
SHA1 hash: 3B1EFD3A66EA28B16697394703A72CA340A05BD5
Issued to: Microsoft Windows Third Party Component CA 2012
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sun Apr 18 18:58:38 2027
SHA1 hash: 77A10EBF07542725218CD83A01B521C57BC67F73
Issued to: Microsoft Windows Hardware Compatibility Publisher
Issued by: Microsoft Windows Third Party Component CA 2012
Expires: Thu Dec 02 17:15:33 2021
SHA1 hash: 38B7C74E37392713E436E19A2BE053100115DA88
The signature is timestamped: Fri Mar 26 02:52:28 2021
Timestamp Verified by:
Issued to: Microsoft Root Certificate Authority 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sat Jun 23 17:04:01 2035
SHA1 hash: 3B1EFD3A66EA28B16697394703A72CA340A05BD5
Issued to: Microsoft Time-Stamp PCA 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Tue Jul 01 16:46:55 2025
SHA1 hash: 2AA752FE64C49ABE82913C463529CF10FF2F04EE
Issued to: Microsoft Time-Stamp Service
Issued by: Microsoft Time-Stamp PCA 2010
Expires: Wed Jan 12 12:28:14 2022
SHA1 hash: EABBA83938895CFC213B996D416B006EDE731A9C
Successfully verified: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\Display.NvContainer\plugins\Session\NvFBCPlugin.dll
Number of files successfully Verified: 1
Number of warnings: 0
Number of errors: 0
Verifying: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\Display.NvContainer\plugins\Session\_nvppo.dll
File is signed in catalog: C:\Windows\System32\CatRoot\{F750E6C3-38EE-11D1-85E5-00C04FC295EE}\oem15.cat
Hash of file (sha1): 7C722BF29B6C7548DC12D53FBCE135047D1C92FA
Signing Certificate Chain:
Issued to: Microsoft Root Certificate Authority 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sat Jun 23 17:04:01 2035
SHA1 hash: 3B1EFD3A66EA28B16697394703A72CA340A05BD5
Issued to: Microsoft Windows Third Party Component CA 2012
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sun Apr 18 18:58:38 2027
SHA1 hash: 77A10EBF07542725218CD83A01B521C57BC67F73
Issued to: Microsoft Windows Hardware Compatibility Publisher
Issued by: Microsoft Windows Third Party Component CA 2012
Expires: Thu Dec 02 17:15:33 2021
SHA1 hash: 38B7C74E37392713E436E19A2BE053100115DA88
The signature is timestamped: Fri Mar 26 02:52:28 2021
Timestamp Verified by:
Issued to: Microsoft Root Certificate Authority 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sat Jun 23 17:04:01 2035
SHA1 hash: 3B1EFD3A66EA28B16697394703A72CA340A05BD5
Issued to: Microsoft Time-Stamp PCA 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Tue Jul 01 16:46:55 2025
SHA1 hash: 2AA752FE64C49ABE82913C463529CF10FF2F04EE
Issued to: Microsoft Time-Stamp Service
Issued by: Microsoft Time-Stamp PCA 2010
Expires: Wed Jan 12 12:28:14 2022
SHA1 hash: EABBA83938895CFC213B996D416B006EDE731A9C
Successfully verified: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\Display.NvContainer\plugins\Session\_nvppo.dll
Number of files successfully Verified: 1
Number of warnings: 0
Number of errors: 0
Verifying: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\Display.NvContainer\plugins\Session\_nvtopps.dll
File is signed in catalog: C:\Windows\System32\CatRoot\{F750E6C3-38EE-11D1-85E5-00C04FC295EE}\oem15.cat
Hash of file (sha1): 452712C7C38BC87D19215A75F6CD9665EC0500EC
Signing Certificate Chain:
Issued to: Microsoft Root Certificate Authority 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sat Jun 23 17:04:01 2035
SHA1 hash: 3B1EFD3A66EA28B16697394703A72CA340A05BD5
Issued to: Microsoft Windows Third Party Component CA 2012
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sun Apr 18 18:58:38 2027
SHA1 hash: 77A10EBF07542725218CD83A01B521C57BC67F73
Issued to: Microsoft Windows Hardware Compatibility Publisher
Issued by: Microsoft Windows Third Party Component CA 2012
Expires: Thu Dec 02 17:15:33 2021
SHA1 hash: 38B7C74E37392713E436E19A2BE053100115DA88
The signature is timestamped: Fri Mar 26 02:52:28 2021
Timestamp Verified by:
Issued to: Microsoft Root Certificate Authority 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sat Jun 23 17:04:01 2035
SHA1 hash: 3B1EFD3A66EA28B16697394703A72CA340A05BD5
Issued to: Microsoft Time-Stamp PCA 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Tue Jul 01 16:46:55 2025
SHA1 hash: 2AA752FE64C49ABE82913C463529CF10FF2F04EE
Issued to: Microsoft Time-Stamp Service
Issued by: Microsoft Time-Stamp PCA 2010
Expires: Wed Jan 12 12:28:14 2022
SHA1 hash: EABBA83938895CFC213B996D416B006EDE731A9C
Successfully verified: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\Display.NvContainer\plugins\Session\_nvtopps.dll
Number of files successfully Verified: 1
Number of warnings: 0
Number of errors: 0
Verifying: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\Display.NvContainer\plugins\Session\nvprofileupdaterplugin.dll
File is signed in catalog: C:\Windows\System32\CatRoot\{F750E6C3-38EE-11D1-85E5-00C04FC295EE}\oem15.cat
Hash of file (sha1): B37603C4FA64278642C686A41D6764C1B366AEB2
Signing Certificate Chain:
Issued to: Microsoft Root Certificate Authority 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sat Jun 23 17:04:01 2035
SHA1 hash: 3B1EFD3A66EA28B16697394703A72CA340A05BD5
Issued to: Microsoft Windows Third Party Component CA 2012
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sun Apr 18 18:58:38 2027
SHA1 hash: 77A10EBF07542725218CD83A01B521C57BC67F73
Issued to: Microsoft Windows Hardware Compatibility Publisher
Issued by: Microsoft Windows Third Party Component CA 2012
Expires: Thu Dec 02 17:15:33 2021
SHA1 hash: 38B7C74E37392713E436E19A2BE053100115DA88
The signature is timestamped: Fri Mar 26 02:52:28 2021
Timestamp Verified by:
Issued to: Microsoft Root Certificate Authority 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sat Jun 23 17:04:01 2035
SHA1 hash: 3B1EFD3A66EA28B16697394703A72CA340A05BD5
Issued to: Microsoft Time-Stamp PCA 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Tue Jul 01 16:46:55 2025
SHA1 hash: 2AA752FE64C49ABE82913C463529CF10FF2F04EE
Issued to: Microsoft Time-Stamp Service
Issued by: Microsoft Time-Stamp PCA 2010
Expires: Wed Jan 12 12:28:14 2022
SHA1 hash: EABBA83938895CFC213B996D416B006EDE731A9C
Successfully verified: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\Display.NvContainer\plugins\Session\nvprofileupdaterplugin.dll
Number of files successfully Verified: 1
Number of warnings: 0
Number of errors: 0
Verifying: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\Display.NvContainer\plugins\Session\nvxdsyncplugin.dll
File is signed in catalog: C:\Windows\System32\CatRoot\{F750E6C3-38EE-11D1-85E5-00C04FC295EE}\oem15.cat
Hash of file (sha1): 3C3B4A9C2C16B59AF0AF9C8FBFE4989590343207
Signing Certificate Chain:
Issued to: Microsoft Root Certificate Authority 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sat Jun 23 17:04:01 2035
SHA1 hash: 3B1EFD3A66EA28B16697394703A72CA340A05BD5
Issued to: Microsoft Windows Third Party Component CA 2012
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sun Apr 18 18:58:38 2027
SHA1 hash: 77A10EBF07542725218CD83A01B521C57BC67F73
Issued to: Microsoft Windows Hardware Compatibility Publisher
Issued by: Microsoft Windows Third Party Component CA 2012
Expires: Thu Dec 02 17:15:33 2021
SHA1 hash: 38B7C74E37392713E436E19A2BE053100115DA88
The signature is timestamped: Fri Mar 26 02:52:28 2021
Timestamp Verified by:
Issued to: Microsoft Root Certificate Authority 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sat Jun 23 17:04:01 2035
SHA1 hash: 3B1EFD3A66EA28B16697394703A72CA340A05BD5
Issued to: Microsoft Time-Stamp PCA 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Tue Jul 01 16:46:55 2025
SHA1 hash: 2AA752FE64C49ABE82913C463529CF10FF2F04EE
Issued to: Microsoft Time-Stamp Service
Issued by: Microsoft Time-Stamp PCA 2010
Expires: Wed Jan 12 12:28:14 2022
SHA1 hash: EABBA83938895CFC213B996D416B006EDE731A9C
Successfully verified: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\Display.NvContainer\plugins\Session\nvxdsyncplugin.dll
Number of files successfully Verified: 1
Number of warnings: 0
Number of errors: 0
Verifying: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\Display.NvContainer\plugins\Session\wksServicePlugin.dll
File is signed in catalog: C:\Windows\System32\CatRoot\{F750E6C3-38EE-11D1-85E5-00C04FC295EE}\oem15.cat
Hash of file (sha1): 4C6FC8CCE6647329E7FD2DC973DF26A0D751E6D1
Signing Certificate Chain:
Issued to: Microsoft Root Certificate Authority 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sat Jun 23 17:04:01 2035
SHA1 hash: 3B1EFD3A66EA28B16697394703A72CA340A05BD5
Issued to: Microsoft Windows Third Party Component CA 2012
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sun Apr 18 18:58:38 2027
SHA1 hash: 77A10EBF07542725218CD83A01B521C57BC67F73
Issued to: Microsoft Windows Hardware Compatibility Publisher
Issued by: Microsoft Windows Third Party Component CA 2012
Expires: Thu Dec 02 17:15:33 2021
SHA1 hash: 38B7C74E37392713E436E19A2BE053100115DA88
The signature is timestamped: Fri Mar 26 02:52:28 2021
Timestamp Verified by:
Issued to: Microsoft Root Certificate Authority 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sat Jun 23 17:04:01 2035
SHA1 hash: 3B1EFD3A66EA28B16697394703A72CA340A05BD5
Issued to: Microsoft Time-Stamp PCA 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Tue Jul 01 16:46:55 2025
SHA1 hash: 2AA752FE64C49ABE82913C463529CF10FF2F04EE
Issued to: Microsoft Time-Stamp Service
Issued by: Microsoft Time-Stamp PCA 2010
Expires: Wed Jan 12 12:28:14 2022
SHA1 hash: EABBA83938895CFC213B996D416B006EDE731A9C
Successfully verified: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\Display.NvContainer\plugins\Session\wksServicePlugin.dll
Number of files successfully Verified: 1
Number of warnings: 0
Number of errors: 0
Verifying: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\dbInstaller.exe
File is signed in catalog: C:\Windows\System32\CatRoot\{F750E6C3-38EE-11D1-85E5-00C04FC295EE}\oem15.cat
Hash of file (sha1): 3F678C3B1B6D0871053ED7E2DE59066F326B4946
Signing Certificate Chain:
Issued to: Microsoft Root Certificate Authority 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sat Jun 23 17:04:01 2035
SHA1 hash: 3B1EFD3A66EA28B16697394703A72CA340A05BD5
Issued to: Microsoft Windows Third Party Component CA 2012
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sun Apr 18 18:58:38 2027
SHA1 hash: 77A10EBF07542725218CD83A01B521C57BC67F73
Issued to: Microsoft Windows Hardware Compatibility Publisher
Issued by: Microsoft Windows Third Party Component CA 2012
Expires: Thu Dec 02 17:15:33 2021
SHA1 hash: 38B7C74E37392713E436E19A2BE053100115DA88
The signature is timestamped: Fri Mar 26 02:52:28 2021
Timestamp Verified by:
Issued to: Microsoft Root Certificate Authority 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sat Jun 23 17:04:01 2035
SHA1 hash: 3B1EFD3A66EA28B16697394703A72CA340A05BD5
Issued to: Microsoft Time-Stamp PCA 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Tue Jul 01 16:46:55 2025
SHA1 hash: 2AA752FE64C49ABE82913C463529CF10FF2F04EE
Issued to: Microsoft Time-Stamp Service
Issued by: Microsoft Time-Stamp PCA 2010
Expires: Wed Jan 12 12:28:14 2022
SHA1 hash: EABBA83938895CFC213B996D416B006EDE731A9C
Successfully verified: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\dbInstaller.exe
Number of files successfully Verified: 1
Number of warnings: 0
Number of errors: 0
Verifying: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\nvdrsdb.bin
File is signed in catalog: C:\Windows\System32\CatRoot\{F750E6C3-38EE-11D1-85E5-00C04FC295EE}\oem15.cat
Hash of file (sha1): 89734C0EB7AB56BEE328C6B8784688D7D2FDAC40
Signing Certificate Chain:
Issued to: Microsoft Root Certificate Authority 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sat Jun 23 17:04:01 2035
SHA1 hash: 3B1EFD3A66EA28B16697394703A72CA340A05BD5
Issued to: Microsoft Windows Third Party Component CA 2012
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sun Apr 18 18:58:38 2027
SHA1 hash: 77A10EBF07542725218CD83A01B521C57BC67F73
Issued to: Microsoft Windows Hardware Compatibility Publisher
Issued by: Microsoft Windows Third Party Component CA 2012
Expires: Thu Dec 02 17:15:33 2021
SHA1 hash: 38B7C74E37392713E436E19A2BE053100115DA88
The signature is timestamped: Fri Mar 26 02:52:28 2021
Timestamp Verified by:
Issued to: Microsoft Root Certificate Authority 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Sat Jun 23 17:04:01 2035
SHA1 hash: 3B1EFD3A66EA28B16697394703A72CA340A05BD5
Issued to: Microsoft Time-Stamp PCA 2010
Issued by: Microsoft Root Certificate Authority 2010
Expires: Tue Jul 01 16:46:55 2025
SHA1 hash: 2AA752FE64C49ABE82913C463529CF10FF2F04EE
Issued to: Microsoft Time-Stamp Service
Issued by: Microsoft Time-Stamp PCA 2010
Expires: Wed Jan 12 12:28:14 2022
SHA1 hash: EABBA83938895CFC213B996D416B006EDE731A9C
Successfully verified: C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_3784df9edffd3314\nvdrsdb.bin
Number of files successfully Verified: 1
Number of warnings: 0
Number of errors: 0