-
Notifications
You must be signed in to change notification settings - Fork 0
/
DxDiag.txt
1765 lines (1615 loc) · 126 KB
/
DxDiag.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
------------------
System Information
------------------
Time of this report: 7/19/2019, 20:10:17
Machine name: DESKTOP-G6LE5UQ
Machine Id: {D675D6CA-5387-4BE0-899A-350A79E2B566}
Operating System: Windows 10 Pro 64-bit (10.0, Build 17763) (17763.rs5_release.180914-1434)
Language: English (Regional Setting: English)
System Manufacturer: System manufacturer
System Model: System Product Name
BIOS: 4207 (type: UEFI)
Processor: AMD Ryzen 7 2700X Eight-Core Processor (16 CPUs), ~3.7GHz
Memory: 16384MB RAM
Available OS Memory: 16304MB RAM
Page File: 6520MB used, 12727MB available
Windows Dir: C:\Windows
DirectX Version: DirectX 12
DX Setup Parameters: Not found
User DPI Setting: 96 DPI (100 percent)
System DPI Setting: 96 DPI (100 percent)
DWM DPI Scaling: Disabled
Miracast: Available, with HDCP
Microsoft Graphics Hybrid: Not Supported
DxDiag Version: 10.00.17763.0001 64bit Unicode
------------
DxDiag Notes
------------
Display Tab 1: No problems found.
Sound Tab 1: No problems found.
Sound Tab 2: No problems found.
Sound Tab 3: No problems found.
Input Tab: No problems found.
--------------------
DirectX Debug Levels
--------------------
Direct3D: 0/4 (retail)
DirectDraw: 0/4 (retail)
DirectInput: 0/5 (retail)
DirectMusic: 0/5 (retail)
DirectPlay: 0/9 (retail)
DirectSound: 0/5 (retail)
DirectShow: 0/6 (retail)
---------------
Display Devices
---------------
Card name: NVIDIA GeForce RTX 2060
Manufacturer: NVIDIA
Chip type: GeForce RTX 2060
DAC type: Integrated RAMDAC
Device Type: Full Device (POST)
Device Key: Enum\PCI\VEN_10DE&DEV_1F08&SUBSYS_37D91458&REV_A1
Device Status: 0180200A [DN_DRIVER_LOADED|DN_STARTED|DN_DISABLEABLE|DN_NT_ENUMERATOR|DN_NT_DRIVER]
Device Problem Code: No Problem
Driver Problem Code: Unknown
Display Memory: 14132 MB
Dedicated Memory: 5980 MB
Shared Memory: 8152 MB
Current Mode: 1920 x 1080 (32 bit) (60Hz)
HDR Support: Not Supported
Display Topology: Internal
Display Color Space: DXGI_COLOR_SPACE_RGB_FULL_G22_NONE_P709
Color Primaries: Red(0.644531,0.334961), Green(0.304688,0.629883), Blue(0.148438,0.049805), White Point(0.313477,0.329102)
Display Luminance: Min Luminance = 0.500000, Max Luminance = 270.000000, MaxFullFrameLuminance = 270.000000
Monitor Name: Generic PnP Monitor
Monitor Model: LG IPS FULLHD
Monitor Id: GSM5AB8
Native Mode: 1920 x 1080(p) (60.000Hz)
Output Type: HDMI
Monitor Capabilities: HDR Not Supported
Display Pixel Format: DISPLAYCONFIG_PIXELFORMAT_32BPP
Advanced Color: Not Supported
Driver Name: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvldumdx.dll,C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvldumdx.dll,C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvldumdx.dll,C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvldumdx.dll
Driver File Version: 25.21.0014.1967 (English)
Driver Version: 25.21.14.1967
DDI Version: 12
Feature Levels: 12_1,12_0,11_1,11_0,10_1,10_0,9_3,9_2,9_1
Driver Model: WDDM 2.5
Graphics Preemption: Pixel
Compute Preemption: Dispatch
Miracast: Not Supported
Hybrid Graphics GPU: Not Supported
Power P-states: Not Supported
Virtualization: Paravirtualization
Block List: No Blocks
Catalog Attributes: Universal:False Declarative:True
Driver Attributes: Final Retail
Driver Date/Size: 17/03/2019 02:00:00, 957312 bytes
WHQL Logo'd: Yes
WHQL Date Stamp: Unknown
Device Identifier: {D7B71E3E-5C48-11CF-4770-D7171BC2D435}
Vendor ID: 0x10DE
Device ID: 0x1F08
SubSys ID: 0x37D91458
Revision ID: 0x00A1
Driver Strong Name: oem5.inf:0f066de317b83370:Section001:25.21.14.1967:PCI\VEN_10DE&DEV_1F08
Rank Of Driver: 00CF2001
Video Accel:
DXVA2 Modes: DXVA2_ModeMPEG2_VLD DXVA2_ModeVC1_D2010 DXVA2_ModeVC1_VLD DXVA2_ModeH264_VLD_Stereo_Progressive_NoFGT DXVA2_ModeH264_VLD_Stereo_NoFGT DXVA2_ModeH264_VLD_NoFGT DXVA2_ModeHEVC_VLD_Main DXVA2_ModeHEVC_VLD_Main10 DXVA2_ModeMPEG4pt2_VLD_Simple DXVA2_ModeMPEG4pt2_VLD_AdvSimple_NoGMC DXVA2_ModeVP9_VLD_Profile0 DXVA2_ModeVP9_VLD_10bit_Profile2
Deinterlace Caps: {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
{F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
{5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
{335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
{6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
{F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
{5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
{335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
{6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
{F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
{5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
{335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
{6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
{F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
{5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
{335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
{6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
{F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
{5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
{335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
{6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
{F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
{5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
{335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
{6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
{F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
{5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
{335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
{6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
{F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
{5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
{335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
{6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
{F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
{5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
{335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
{6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
{F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
{5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
{335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
D3D9 Overlay: Supported
DXVA-HD: Supported
DDraw Status: Enabled
D3D Status: Enabled
AGP Status: Enabled
MPO MaxPlanes: 1
MPO Caps: Not Supported
MPO Stretch: Not Supported
MPO Media Hints: Not Supported
MPO Formats: Not Supported
PanelFitter Caps: Not Supported
PanelFitter Stretch: Not Supported
-------------
Sound Devices
-------------
Description: Speakers (High Definition Audio Device)
Default Sound Playback: Yes
Default Voice Playback: Yes
Hardware ID: HDAUDIO\FUNC_01&VEN_10EC&DEV_1168&SUBSYS_10438733&REV_1001
Manufacturer ID: 1
Product ID: 65535
Type: WDM
Driver Name: HdAudio.sys
Driver Version: 10.00.17763.0001 (English)
Driver Attributes: Final Retail
WHQL Logo'd: Yes
Date and Size: 14/09/2018 00:00:00, 398336 bytes
Other Files:
Driver Provider: Microsoft
HW Accel Level: Basic
Cap Flags: 0xF1F
Min/Max Sample Rate: 100, 200000
Static/Strm HW Mix Bufs: 1, 0
Static/Strm HW 3D Bufs: 0, 0
HW Memory: 0
Voice Management: No
EAX(tm) 2.0 Listen/Src: No, No
I3DL2(tm) Listen/Src: No, No
Sensaura(tm) ZoomFX(tm): No
Description: Digital Audio (S/PDIF) (High Definition Audio Device)
Default Sound Playback: No
Default Voice Playback: No
Hardware ID: HDAUDIO\FUNC_01&VEN_10EC&DEV_1168&SUBSYS_10438733&REV_1001
Manufacturer ID: 1
Product ID: 65535
Type: WDM
Driver Name: HdAudio.sys
Driver Version: 10.00.17763.0001 (English)
Driver Attributes: Final Retail
WHQL Logo'd: Yes
Date and Size: 14/09/2018 00:00:00, 398336 bytes
Other Files:
Driver Provider: Microsoft
HW Accel Level: Basic
Cap Flags: 0xF1F
Min/Max Sample Rate: 100, 200000
Static/Strm HW Mix Bufs: 1, 0
Static/Strm HW 3D Bufs: 0, 0
HW Memory: 0
Voice Management: No
EAX(tm) 2.0 Listen/Src: No, No
I3DL2(tm) Listen/Src: No, No
Sensaura(tm) ZoomFX(tm): No
Description: LG IPS FULLHD (NVIDIA High Definition Audio)
Default Sound Playback: No
Default Voice Playback: No
Hardware ID: HDAUDIO\FUNC_01&VEN_10DE&DEV_0093&SUBSYS_145837D9&REV_1001
Manufacturer ID: 1
Product ID: 100
Type: WDM
Driver Name: nvhda64v.sys
Driver Version: 1.03.0038.0013 (English)
Driver Attributes: Final Retail
WHQL Logo'd: Yes
Date and Size: 17/03/2019 00:00:00, 236904 bytes
Other Files:
Driver Provider: NVIDIA Corporation
HW Accel Level: Basic
Cap Flags: 0xF1F
Min/Max Sample Rate: 100, 200000
Static/Strm HW Mix Bufs: 1, 0
Static/Strm HW 3D Bufs: 0, 0
HW Memory: 0
Voice Management: No
EAX(tm) 2.0 Listen/Src: No, No
I3DL2(tm) Listen/Src: No, No
Sensaura(tm) ZoomFX(tm): No
---------------------
Sound Capture Devices
---------------------
---------------------
Video Capture Devices
Number of Devices: 0
---------------------
-------------------
DirectInput Devices
-------------------
Device Name: Mouse
Attached: 1
Controller ID: n/a
Vendor/Product ID: n/a
FF Driver: n/a
Device Name: Keyboard
Attached: 1
Controller ID: n/a
Vendor/Product ID: n/a
FF Driver: n/a
Device Name: G502 HERO Gaming Mouse
Attached: 1
Controller ID: 0x0
Vendor/Product ID: 0x046D, 0xC08B
FF Driver: n/a
Device Name: G502 HERO Gaming Mouse
Attached: 1
Controller ID: 0x0
Vendor/Product ID: 0x046D, 0xC08B
FF Driver: n/a
Device Name: G502 HERO Gaming Mouse
Attached: 1
Controller ID: 0x0
Vendor/Product ID: 0x046D, 0xC08B
FF Driver: n/a
Device Name: G513 Carbon Linear
Attached: 1
Controller ID: 0x0
Vendor/Product ID: 0x046D, 0xC33C
FF Driver: n/a
Device Name: G513 Carbon Linear
Attached: 1
Controller ID: 0x0
Vendor/Product ID: 0x046D, 0xC33C
FF Driver: n/a
Device Name: G513 Carbon Linear
Attached: 1
Controller ID: 0x0
Vendor/Product ID: 0x046D, 0xC33C
FF Driver: n/a
Device Name: G502 HERO Gaming Mouse
Attached: 1
Controller ID: 0x0
Vendor/Product ID: 0x046D, 0xC08B
FF Driver: n/a
Poll w/ Interrupt: No
-----------
USB Devices
-----------
+ USB Root Hub (USB 3.0)
| Vendor/Product ID: 0x1B21, 0x1242
| Matching Device ID: USB\ROOT_HUB30
| Service: USBHUB3
| Driver: USBHUB3.SYS, 9/15/2018 09:28:19, 586552 bytes
|
+-+ USB Composite Device
| | Vendor/Product ID: 0x046D, 0xC08B
| | Location: Port_#0004.Hub_#0002
| | Matching Device ID: USB\COMPOSITE
| | Service: usbccgp
| | Driver: usbccgp.sys, 9/15/2018 09:28:19, 179000 bytes
| |
| +-+ USB Input Device
| | | Vendor/Product ID: 0x046D, 0xC08B
| | | Location: 0005.0000.0000.004.000.000.000.000.000
| | | Matching Device ID: USB\Class_03&SubClass_01
| | | Service: HidUsb
| | | Driver: hidusb.sys, 9/15/2018 09:28:19, 43520 bytes
| | | Driver: hidclass.sys, 9/15/2018 09:28:19, 209920 bytes
| | | Driver: hidparse.sys, 7/17/2019 20:47:46, 46080 bytes
| | |
| | +-+ HID-compliant mouse
| | | | Vendor/Product ID: 0x046D, 0xC08B
| | | | Matching Device ID: HID_DEVICE_SYSTEM_MOUSE
| | | | Service: mouhid
| | | | Driver: mouhid.sys, 9/15/2018 09:28:19, 34816 bytes
| | | | Driver: mouclass.sys, 9/15/2018 09:28:19, 61240 bytes
| | |
| +-+ USB Input Device
| | | Vendor/Product ID: 0x046D, 0xC08B
| | | Location: 0005.0000.0000.004.000.000.000.000.000
| | | Matching Device ID: USB\Class_03
| | | Service: HidUsb
| | | Driver: hidusb.sys, 9/15/2018 09:28:19, 43520 bytes
| | | Driver: hidclass.sys, 9/15/2018 09:28:19, 209920 bytes
| | | Driver: hidparse.sys, 7/17/2019 20:47:46, 46080 bytes
| | |
| | +-+ HID Keyboard Device
| | | | Vendor/Product ID: 0x046D, 0xC08B
| | | | Matching Device ID: HID_DEVICE_SYSTEM_KEYBOARD
| | | | Service: kbdhid
| | | | Driver: kbdhid.sys, 7/17/2019 20:47:46, 44544 bytes
| | | | Driver: kbdclass.sys, 9/15/2018 09:28:19, 67896 bytes
|
+ USB Root Hub (USB 3.0)
| Vendor/Product ID: 0x1022, 0x145F
| Matching Device ID: USB\ROOT_HUB30
| Service: USBHUB3
| Driver: USBHUB3.SYS, 9/15/2018 09:28:19, 586552 bytes
|
+-+ USB Composite Device
| | Vendor/Product ID: 0x046D, 0xC33C
| | Location: Port_#0002.Hub_#0004
| | Matching Device ID: USB\COMPOSITE
| | Service: usbccgp
| | Driver: usbccgp.sys, 9/15/2018 09:28:19, 179000 bytes
| |
| +-+ USB Input Device
| | | Vendor/Product ID: 0x046D, 0xC33C
| | | Location: 000a.0000.0003.002.000.000.000.000.000
| | | Matching Device ID: USB\Class_03&SubClass_01
| | | Service: HidUsb
| | | Driver: hidusb.sys, 9/15/2018 09:28:19, 43520 bytes
| | | Driver: hidclass.sys, 9/15/2018 09:28:19, 209920 bytes
| | | Driver: hidparse.sys, 7/17/2019 20:47:46, 46080 bytes
| | |
| | +-+ HID Keyboard Device
| | | | Vendor/Product ID: 0x046D, 0xC33C
| | | | Matching Device ID: HID_DEVICE_SYSTEM_KEYBOARD
| | | | Service: kbdhid
| | | | Driver: kbdhid.sys, 7/17/2019 20:47:46, 44544 bytes
| | | | Driver: kbdclass.sys, 9/15/2018 09:28:19, 67896 bytes
| | |
| +-+ USB Input Device
| | | Vendor/Product ID: 0x046D, 0xC33C
| | | Location: 000a.0000.0003.002.000.000.000.000.000
| | | Matching Device ID: USB\Class_03
| | | Service: HidUsb
| | | Driver: hidusb.sys, 9/15/2018 09:28:19, 43520 bytes
| | | Driver: hidclass.sys, 9/15/2018 09:28:19, 209920 bytes
| | | Driver: hidparse.sys, 7/17/2019 20:47:46, 46080 bytes
| | |
| | +-+ HID Keyboard Device
| | | | Vendor/Product ID: 0x046D, 0xC33C
| | | | Matching Device ID: HID_DEVICE_SYSTEM_KEYBOARD
| | | | Service: kbdhid
| | | | Driver: kbdhid.sys, 7/17/2019 20:47:46, 44544 bytes
| | | | Driver: kbdclass.sys, 9/15/2018 09:28:19, 67896 bytes
----------------
Gameport Devices
----------------
------------
PS/2 Devices
------------
+ HID Keyboard Device
| Vendor/Product ID: 0x046D, 0xC232
| Matching Device ID: HID_DEVICE_SYSTEM_KEYBOARD
| Service: kbdhid
| Driver: kbdhid.sys, 7/17/2019 20:47:46, 44544 bytes
| Driver: kbdclass.sys, 9/15/2018 09:28:19, 67896 bytes
|
+ HID-compliant mouse
| Vendor/Product ID: 0x046D, 0xC231
| Matching Device ID: HID_DEVICE_SYSTEM_MOUSE
| Service: mouhid
| Driver: mouhid.sys, 9/15/2018 09:28:19, 34816 bytes
| Driver: mouclass.sys, 9/15/2018 09:28:19, 61240 bytes
------------------------
Disk & DVD/CD-ROM Drives
------------------------
Drive: C:
Free Space: 311.4 GB
Total Space: 487.8 GB
File System: NTFS
Model: Samsung SSD 970 PRO 512GB
Drive: D:
Free Space: 446.0 GB
Total Space: 457.9 GB
File System: NTFS
Model: KINGSTON SA400S37480G
--------------
System Devices
--------------
Name: High Definition Audio Controller
Device ID: PCI\VEN_10DE&DEV_10F9&SUBSYS_37D91458&REV_A1\4&1DA95F35&0&0119
Driver: C:\Windows\system32\DRIVERS\hdaudbus.sys, 10.00.17763.0001 (English), 9/15/2018 09:28:15, 104960 bytes
Driver: C:\Windows\system32\DRIVERS\drmk.sys, 10.00.17763.0001 (English), 9/15/2018 09:28:15, 98304 bytes
Driver: C:\Windows\system32\DRIVERS\portcls.sys, 10.00.17763.0001 (English), 9/15/2018 09:28:15, 381440 bytes
Name: Standard SATA AHCI Controller
Device ID: PCI\VEN_1022&DEV_43C8&SUBSYS_10621B21&REV_01\4&115A0D29&0&010B
Driver: C:\Windows\system32\DRIVERS\storahci.sys, 10.00.17763.0168 (English), 12/8/2018 03:17:47, 164344 bytes
Name: PCI standard host CPU bridge
Device ID: PCI\VEN_1022&DEV_1461&SUBSYS_00000000&REV_00\3&11583659&0&C1
Driver: n/a
Name: ASMedia USB 3.1 eXtensible Host Controller - 1.10 (Microsoft)
Device ID: PCI\VEN_1B21&DEV_1242&SUBSYS_86751043&REV_00\6&9F5003C&0&0020020B
Driver: C:\Windows\system32\DRIVERS\USBXHCI.SYS, 10.00.17763.0592 (English), 7/17/2019 20:47:46, 467984 bytes
Driver: C:\Windows\system32\DRIVERS\UMDF\UsbXhciCompanion.dll, 10.00.17763.0001 (English), 9/15/2018 09:28:19, 130720 bytes
Name: PCI-to-PCI Bridge
Device ID: PCI\VEN_1022&DEV_43C7&SUBSYS_33061B21&REV_01\5&37061795&0&00020B
Driver: C:\Windows\system32\DRIVERS\pci.sys, 10.00.17763.0475 (English), 7/17/2019 20:47:46, 421392 bytes
Name: AMD SMBus
Device ID: PCI\VEN_1022&DEV_790B&SUBSYS_87471043&REV_59\3&11583659&0&A0
Driver: n/a
Name: PCI standard host CPU bridge
Device ID: PCI\VEN_1022&DEV_1464&SUBSYS_00000000&REV_00\3&11583659&0&C4
Driver: n/a
Name: AMD PSP 3.0 Device
Device ID: PCI\VEN_1022&DEV_1456&SUBSYS_14561022&REV_00\4&C93BEE2&0&0239
Driver: C:\Windows\system32\DRIVERS\amdpsp.sys, 4.04.0000.0000 (English), 6/12/2017 05:07:22, 239976 bytes
Driver: C:\Windows\system32\DRIVERS\amdkmcsp.sys, 4.04.0000.0000 (English), 6/12/2017 05:07:20, 95080 bytes
Driver: C:\Windows\system32\amdumcsp.dll, 4.04.0000.0000 (English), 6/12/2017 05:07:24, 87536 bytes
Driver: C:\Windows\SysWOW64\amdumcsp.dll, 4.04.0000.0000 (English), 6/12/2017 05:07:22, 71152 bytes
Driver: C:\Windows\system32\t-base_client_api.dll, 4.04.0000.0000 (English), 6/12/2017 05:07:24, 26096 bytes
Driver: C:\Windows\SysWOW64\t-base_client_api.dll, 4.04.0000.0000 (English), 6/12/2017 05:07:24, 22000 bytes
Driver: C:\Windows\system32\tbaseregistry64.dll, 4.04.0000.0000 (English), 6/12/2017 05:07:26, 129008 bytes
Driver: C:\Windows\SysWOW64\tbaseregistry32.dll, 4.04.0000.0000 (English), 6/12/2017 05:07:26, 108528 bytes
Driver: C:\Windows\system32\WdfCoInstaller01011.dll, 1.11.9200.16384 (English), 6/12/2017 05:07:26, 1804672 bytes
Driver: C:\Windows\system32\pspcoins.dll, 1.00.0005.0009 (English), 6/12/2017 05:07:24, 106480 bytes
Name: PCI standard host CPU bridge
Device ID: PCI\VEN_1022&DEV_1467&SUBSYS_00000000&REV_00\3&11583659&0&C7
Driver: n/a
Name: High Definition Audio Controller
Device ID: PCI\VEN_1022&DEV_1457&SUBSYS_87331043&REV_00\4&2B9CC193&0&0341
Driver: C:\Windows\system32\DRIVERS\hdaudbus.sys, 10.00.17763.0001 (English), 9/15/2018 09:28:15, 104960 bytes
Driver: C:\Windows\system32\DRIVERS\drmk.sys, 10.00.17763.0001 (English), 9/15/2018 09:28:15, 98304 bytes
Driver: C:\Windows\system32\DRIVERS\portcls.sys, 10.00.17763.0001 (English), 9/15/2018 09:28:15, 381440 bytes
Name: PCI standard host CPU bridge
Device ID: PCI\VEN_1022&DEV_1462&SUBSYS_00000000&REV_00\3&11583659&0&C2
Driver: n/a
Name: Standard NVM Express Controller
Device ID: PCI\VEN_144D&DEV_A808&SUBSYS_A801144D&REV_00\4&2D380D55&0&0009
Driver: C:\Windows\system32\DRIVERS\stornvme.sys, 10.00.17763.0404 (English), 7/17/2019 20:47:46, 131384 bytes
Name: NVIDIA GeForce RTX 2060
Device ID: PCI\VEN_10DE&DEV_1F08&SUBSYS_37D91458&REV_A1\4&1DA95F35&0&0019
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\0000.ui.forms, 3/25/2019 00:36:28, 61560 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\0000.ui.strings, 3/25/2019 00:36:28, 1404 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\0401.ui.forms, 3/25/2019 00:36:28, 4333 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\0401.ui.strings, 3/25/2019 00:36:28, 11724 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\0404.ui.forms, 3/25/2019 00:36:28, 4659 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\0404.ui.strings, 3/25/2019 00:36:28, 9704 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\0405.ui.forms, 3/25/2019 00:36:28, 4748 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\0405.ui.strings, 3/25/2019 00:36:28, 10303 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\0406.ui.forms, 3/25/2019 00:36:28, 4581 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\0406.ui.strings, 3/25/2019 00:36:28, 10008 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\0407.ui.forms, 3/25/2019 00:36:28, 6411 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\0407.ui.strings, 3/25/2019 00:36:28, 10956 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\0408.ui.forms, 3/25/2019 00:36:28, 7052 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\0408.ui.strings, 3/25/2019 00:36:28, 14538 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\0409.ui.forms, 3/25/2019 00:36:28, 4423 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\0409.ui.strings, 3/25/2019 00:36:28, 9671 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\040a.ui.forms, 3/25/2019 00:36:28, 5186 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\040a.ui.strings, 3/25/2019 00:36:28, 10352 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\040b.ui.forms, 3/25/2019 00:36:28, 6012 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\040b.ui.strings, 3/25/2019 00:36:28, 10147 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\040c.ui.forms, 3/25/2019 00:36:28, 6957 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\040c.ui.strings, 3/25/2019 00:36:28, 10826 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\040d.ui.forms, 3/25/2019 00:36:28, 4522 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\040d.ui.strings, 3/25/2019 00:36:28, 11808 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\040e.ui.forms, 3/25/2019 00:36:28, 4515 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\040e.ui.strings, 3/25/2019 00:36:28, 10454 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\0410.ui.forms, 3/25/2019 00:36:28, 4704 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\0410.ui.strings, 3/25/2019 00:36:28, 10535 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\0411.ui.forms, 3/25/2019 00:36:28, 4700 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\0411.ui.strings, 3/25/2019 00:36:28, 11814 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\0412.ui.forms, 3/25/2019 00:36:28, 4567 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\0412.ui.strings, 3/25/2019 00:36:28, 10625 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\0413.ui.forms, 3/25/2019 00:36:28, 5913 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\0413.ui.strings, 3/25/2019 00:36:28, 10358 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\0414.ui.forms, 3/25/2019 00:36:28, 4770 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\0414.ui.strings, 3/25/2019 00:36:28, 9998 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\0415.ui.forms, 3/25/2019 00:36:28, 7010 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\0415.ui.strings, 3/25/2019 00:36:28, 10351 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\0416.ui.forms, 3/25/2019 00:36:28, 5603 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\0416.ui.strings, 3/25/2019 00:36:28, 10202 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\0419.ui.forms, 3/25/2019 00:36:28, 6039 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\0419.ui.strings, 3/25/2019 00:36:28, 13126 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\041b.ui.forms, 3/25/2019 00:36:28, 4730 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\041b.ui.strings, 3/25/2019 00:36:28, 10466 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\041d.ui.forms, 3/25/2019 00:36:28, 4720 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\041d.ui.strings, 3/25/2019 00:36:28, 10030 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\041e.ui.forms, 3/25/2019 00:36:28, 5929 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\041e.ui.strings, 3/25/2019 00:36:28, 16698 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\041f.ui.forms, 3/25/2019 00:36:28, 5213 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\041f.ui.strings, 3/25/2019 00:36:28, 10165 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\0424.ui.forms, 3/25/2019 00:36:28, 5495 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\0424.ui.strings, 3/25/2019 00:36:28, 10187 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\0804.ui.strings, 3/25/2019 00:36:28, 9154 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\0809.ui.strings, 3/25/2019 00:36:28, 9639 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\080a.ui.strings, 3/25/2019 00:36:28, 10351 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\0816.ui.forms, 3/25/2019 00:36:28, 5650 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\0816.ui.strings, 3/25/2019 00:36:28, 10526 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\Adjustments.yaml, 3/25/2019 00:36:28, 8964 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\Adjustments.yfx, 3/25/2019 00:36:28, 1271 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\BlacknWhite.yaml, 3/25/2019 00:36:28, 5774 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\BlacknWhite.yfx, 3/25/2019 00:36:28, 1080 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\Burnout Paradise - 1 - ESRB E PEGI 7+.jps, 3/25/2019 00:36:28, 360529 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\Color.yaml, 3/25/2019 00:36:28, 5298 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\Color.yfx, 3/25/2019 00:36:28, 1951 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\Colorblind.yaml, 3/25/2019 00:36:28, 3853 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\Colorblind.yfx, 3/25/2019 00:36:28, 1531 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\DOF.yaml, 3/25/2019 00:36:28, 16008 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\DOF.yfx, 3/25/2019 00:36:28, 12413 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\Details.yaml, 3/25/2019 00:36:28, 5222 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\Details.yfx, 3/25/2019 00:36:28, 4077 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\Devil May Crry 4 - 2 - ESRB T PEGI 12+.jps, 3/25/2019 00:36:28, 332260 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\DisplayDriver.nvi, 3/25/2019 00:36:28, 70026 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\DisplayDriverExt.dll, 2.1002.0319.0000 (English), 3/25/2019 00:51:32, 1555024 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\EULA.txt, 3/25/2019 00:36:28, 21691 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\FreqTransfer32.exe, 3/25/2019 00:51:40, 3712392 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\FreqTransfer64.exe, 3/25/2019 00:51:40, 4057536 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\GreenScreen.yaml, 3/25/2019 00:36:28, 5882 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\GreenScreen.yfx, 3/25/2019 00:36:28, 2034 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\GreenScreenBG01.png, 3/25/2019 00:36:28, 3396326 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\GreenScreenBG02.png, 3/25/2019 00:36:28, 3553106 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\Guitar Hero 3 - 2 - ESRB T PEGI 12+.jps, 3/25/2019 00:36:28, 357213 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\HighresBlender32.exe, 3/25/2019 00:51:44, 3833544 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\HighresBlender64.exe, 3/25/2019 00:51:46, 4189952 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\Letterbox.yaml, 3/25/2019 00:36:28, 3295 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\Letterbox.yfx, 3/25/2019 00:36:28, 1319 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\MCU.exe, 1.01.5204.20580 (English), 3/25/2019 00:51:48, 858504 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NGXCore.nvi, 3/25/2019 00:36:28, 4308 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NGXCoreExt.dll, 1.00.0000.0005 (English), 3/25/2019 00:51:52, 1070792 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NV3DVision.nvi, 3/25/2019 00:36:28, 30374 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NV3DVisionExt.dll, 2.1002.0319.0000 (English), 3/25/2019 00:51:56, 1019088 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NVI2.dll, 2.1002.0319.0000 (English), 3/25/2019 00:52:34, 5749720 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NVI2UI.dll, 2.1002.0319.0000 (English), 3/25/2019 00:52:34, 1771664 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NVNetworkService.exe, 2.04.0013.0069 (English), 3/25/2019 00:52:52, 1889872 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NVNetworkServiceAPI.dll, 2.04.0013.0069 (English), 3/25/2019 00:52:52, 796304 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NVPrxy32.dll, 2.1002.0319.0000 (English), 3/25/2019 00:53:30, 1052040 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NVPrxy64.dll, 2.1002.0319.0000 (English), 3/25/2019 00:53:30, 1360128 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NVStWizRes.dll, 7.17.0014.1967 (English), 3/25/2019 00:53:58, 7389392 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NVWMIExt.dll, 2.1002.0319.0000 (English), 3/25/2019 00:54:12, 1255168 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NVWmi.nvi, 3/25/2019 00:36:34, 11338 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NightMode.yaml, 3/25/2019 00:36:28, 1738 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NightMode.yfx, 3/25/2019 00:36:28, 552 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\Nv3DVisionIePlugin.dll, 7.17.0014.1967 (English), 3/25/2019 00:51:58, 272584 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\Nv3DVisionIePlugin64.dll, 7.17.0014.1967 (English), 3/25/2019 00:51:58, 324808 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NvCamera.nvi, 3/25/2019 00:36:28, 12712 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NvCamera32.dll, 7.00.0504.0000 (English), 3/25/2019 00:52:04, 6460504 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NvCamera64.dll, 7.00.0504.0000 (English), 3/25/2019 00:52:06, 7543280 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NvCameraEnable.exe, 3/25/2019 00:52:06, 372368 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NvCameraWhitelisting32.dll, 7.00.0504.0000 (English), 3/25/2019 00:52:06, 509528 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NvCameraWhitelisting64.dll, 7.00.0504.0000 (English), 3/25/2019 00:52:06, 639632 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NvFBC.dll, 6.14.0014.1967 (English), 3/25/2019 00:52:30, 1535960 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NvFBC64.dll, 6.14.0014.1967 (English), 3/25/2019 00:52:30, 2033264 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NvFBCPlugin.dll, 6.14.0014.1967 (English), 3/25/2019 00:52:32, 1024600 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NvFBCPlugin64.dll, 6.14.0014.1967 (English), 3/25/2019 00:52:32, 1320592 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NvIFR.dll, 6.14.0014.1967 (English), 3/25/2019 00:52:36, 1130376 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NvIFR64.dll, 6.14.0014.1967 (English), 3/25/2019 00:52:36, 1464920 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NvIFROpenGL32.dll, 25.21.0014.1967 (English), 3/25/2019 00:52:38, 522328 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NvIFROpenGL64.dll, 25.21.0014.1967 (English), 3/25/2019 00:52:38, 631256 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NvImageConvert32.exe, 3/25/2019 00:52:40, 3753888 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NvImageConvert64.exe, 3/25/2019 00:52:40, 4084184 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NvInstallerUtil.dll, 7.10.0015.0000 (English), 3/25/2019 00:52:40, 1384024 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NvSCPAPI.dll, 7.17.0014.1967 (English), 3/25/2019 00:53:36, 649928 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NvSCPAPI64.dll, 7.17.0014.1967 (English), 3/25/2019 00:53:38, 739528 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NvStDef.reg, 3/25/2019 00:36:34, 1755 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NvStInst.exe, 7.17.0014.1967 (English), 3/25/2019 00:53:44, 407752 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NvTelemetry.nvi, 3/25/2019 00:36:34, 4538 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NvTelemetry64.dll, 13.06.0010.0000 (English), 3/25/2019 00:53:58, 4621920 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NvTelemetryAPI32.dll, 13.06.0010.0000 (English), 3/25/2019 00:54:00, 519264 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NvTelemetryAPI64.dll, 13.06.0010.0000 (English), 3/25/2019 00:54:00, 627808 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NvTelemetryBridge32.dll, 13.06.0010.0000 (English), 3/25/2019 00:54:00, 445024 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NvTelemetryBridge64.dll, 13.06.0010.0000 (English), 3/25/2019 00:54:02, 541280 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NvTelemetryContainer.exe, 1.14.2564.1478 (English), 3/25/2019 00:54:02, 791136 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NvTelemetryContainer.nvi, 3/25/2019 00:36:34, 5594 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NvTelemetryContainerRecovery.bat, 3/25/2019 00:36:34, 1951 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NvTelemetryExt.dll, 2.1002.0319.0000 (English), 3/25/2019 00:54:04, 990136 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NvTelemetryStatusReporter.dll, 13.06.0010.0000 (English), 3/25/2019 00:54:04, 330336 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NvTelemetryStatusReporter64.dll, 13.06.0010.0000 (English), 3/25/2019 00:54:06, 400480 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\OGLStReg.reg, 3/25/2019 00:36:34, 10217 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\OldFilm.yaml, 3/25/2019 00:36:34, 7473 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\OldFilm.yfx, 3/25/2019 00:36:34, 2746 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\OpenCL32.dll, 2.02.0001.0000 (English), 3/25/2019 00:54:14, 456640 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\OpenCL64.dll, 2.02.0001.0000 (English), 3/25/2019 00:54:16, 551680 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\ReShadeFXC32.exe, 1.00.0000.0000 (English), 3/25/2019 00:54:16, 755968 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\RemoveHud.yaml, 3/25/2019 00:36:34, 459 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\RemoveHud.yfx, 3/25/2019 00:36:34, 776 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\Samples.7z, 3/25/2019 00:36:34, 35671 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\SpecialFX.yaml, 3/25/2019 00:36:34, 14165 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\SpecialFX.yfx, 3/25/2019 00:36:34, 7619 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\SphericalEquirect32.exe, 3/25/2019 00:54:18, 3705736 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\SphericalEquirect64.exe, 3/25/2019 00:54:20, 3987904 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\Sticker01.png, 3/25/2019 00:36:34, 49695 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\Sticker02.png, 3/25/2019 00:36:34, 474002 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\Sticker03.png, 3/25/2019 00:36:34, 380006 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\Sticker04.png, 3/25/2019 00:36:34, 86881 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\Sticker05.png, 3/25/2019 00:36:34, 59304 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\Sticker06.png, 3/25/2019 00:36:34, 13547 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\Sticker07.png, 3/25/2019 00:36:34, 6342 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\Sticker08.png, 3/25/2019 00:36:34, 96493 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\Stickers.yaml, 3/25/2019 00:36:34, 10323 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\Stickers.yfx, 3/25/2019 00:36:34, 3989 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\TiltShift.yaml, 3/25/2019 00:36:34, 4656 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\TiltShift.yfx, 3/25/2019 00:36:34, 4849 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\Tomb Raider Underworld - 2 - ESRB T PEGI 12+.jps, 3/25/2019 00:36:34, 212827 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\Vignette.yaml, 3/25/2019 00:36:34, 4677 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\Vignette.yfx, 3/25/2019 00:36:34, 1823 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\YAMLFXC32.exe, 3/25/2019 00:54:26, 1059536 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\box_checked_disabled.png, 3/25/2019 00:36:28, 937 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\box_checked_enabled.png, 3/25/2019 00:36:28, 821 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\box_partialcheckboxed_enabled.png, 3/25/2019 00:36:28, 3208 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\box_unchecked_disabled.png, 3/25/2019 00:36:28, 180 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\box_unchecked_enabled.png, 3/25/2019 00:36:28, 701 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\btn_disable_135.png, 3/25/2019 00:36:28, 720 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\btn_disable_180.png, 3/25/2019 00:36:28, 738 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\btn_disable_90.png, 3/25/2019 00:36:28, 705 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\btn_primary_135.png, 3/25/2019 00:36:28, 870 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\btn_primary_180.png, 3/25/2019 00:36:28, 894 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\btn_primary_90.png, 3/25/2019 00:36:28, 852 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\btn_primary_focus_135.png, 3/25/2019 00:36:28, 882 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\btn_primary_focus_180.png, 3/25/2019 00:36:28, 908 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\btn_primary_focus_90.png, 3/25/2019 00:36:28, 863 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\btn_primary_pressed_135.png, 3/25/2019 00:36:28, 842 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\btn_primary_pressed_180.png, 3/25/2019 00:36:28, 867 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\btn_primary_pressed_90.png, 3/25/2019 00:36:28, 822 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\btn_secondary_135.png, 3/25/2019 00:36:28, 815 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\btn_secondary_180.png, 3/25/2019 00:36:28, 833 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\btn_secondary_90.png, 3/25/2019 00:36:28, 796 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\btn_secondary_focus_135.png, 3/25/2019 00:36:28, 801 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\btn_secondary_focus_180.png, 3/25/2019 00:36:28, 824 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\btn_secondary_focus_90.png, 3/25/2019 00:36:28, 789 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\btn_secondary_pressed_135.png, 3/25/2019 00:36:28, 819 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\btn_secondary_pressed_180.png, 3/25/2019 00:36:28, 841 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\btn_secondary_pressed_90.png, 3/25/2019 00:36:28, 803 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\check.png, 3/25/2019 00:36:28, 731 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\checkmark.png, 3/25/2019 00:36:28, 641 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\chunkyGrain.bmp, 3/25/2019 00:36:28, 7372854 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\circled_checkmark.png, 3/25/2019 00:36:28, 2970 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\cudnn_infer64_7.dll, 3/25/2019 00:51:30, 22773360 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\d3dcompiler_47_32.dll, 6.03.9600.16384 (English), 3/25/2019 00:51:30, 3476384 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\d3dcompiler_47_64.dll, 6.03.9600.16384 (English), 3/25/2019 00:51:32, 4183000 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\dbInstaller.exe, 25.21.0014.1967 (English), 3/25/2019 00:51:32, 731280 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\error.png, 3/25/2019 00:36:28, 2531 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\filternames.cfg, 3/25/2019 00:36:28, 12019 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\flxcomm64.dll, 2018.02.0001.0000 (English), 3/25/2019 00:51:34, 3022984 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\flxconnect64.dll, 2018.02.0001.0000 (English), 3/25/2019 00:51:34, 6594184 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\flxcore64.dll, 2018.02.0001.0000 (English), 3/25/2019 00:51:36, 8967816 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\fxtools.cfg, 3/25/2019 00:36:28, 79 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\info.png, 3/25/2019 00:36:28, 2191 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\install_bg.png, 3/25/2019 00:36:28, 62330 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\install_bg_rtl.png, 3/25/2019 00:36:28, 63022 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\license.txt, 3/25/2019 00:36:28, 27203 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\noise.tga, 3/25/2019 00:36:28, 8159587 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\npnv3dv.dll, 7.17.0014.1967 (English), 3/25/2019 00:51:54, 817352 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\npnv3dvstreaming.dll, 7.17.0014.1967 (English), 3/25/2019 00:51:56, 292048 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nv3dvstreaming.dll, 7.17.0014.1967 (English), 3/25/2019 00:52:00, 148168 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nv3dvstreaming64.dll, 7.17.0014.1967 (English), 3/25/2019 00:52:00, 170184 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nv3dvstreamingieplugin.dll, 7.17.0014.1967 (English), 3/25/2019 00:52:02, 197328 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nv3dvstreamingieplugin64.dll, 7.17.0014.1967 (English), 3/25/2019 00:52:02, 178376 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvDecMFTMjpeg.dll, 25.21.0014.1967 (English), 3/25/2019 00:52:28, 611928 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvDecMFTMjpegx.dll, 25.21.0014.1967 (English), 3/25/2019 00:52:28, 752544 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvEncMFTH264.dll, 25.21.0014.1967 (English), 3/25/2019 00:52:18, 1145928 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvEncMFTH264x.dll, 25.21.0014.1967 (English), 3/25/2019 00:52:20, 1462232 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvEncMFThevc.dll, 25.21.0014.1967 (English), 3/25/2019 00:52:24, 1152192 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvEncMFThevcx.dll, 25.21.0014.1967 (English), 3/25/2019 00:52:28, 1471816 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvEncodeAPI.dll, 25.21.0014.1967 (English), 3/25/2019 00:52:32, 638384 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvEncodeAPI64.dll, 25.21.0014.1967 (English), 3/25/2019 00:52:34, 794840 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvImage.dll, 7.17.0014.1967 (English), 3/25/2019 00:52:40, 1029560 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvImage64.dll, 7.17.0014.1967 (English), 3/25/2019 00:52:40, 1334688 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvPerfProvider.man, 3/25/2019 00:36:34, 14175 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvStReg.exe, 7.17.0014.1967 (English), 3/25/2019 00:53:50, 819912 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvStereoApiI.dll, 7.17.0014.1967 (English), 3/25/2019 00:53:40, 330448 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvStereoApiI64.dll, 7.17.0014.1967 (English), 3/25/2019 00:53:42, 389320 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvStreaming.exe, 7.17.0014.1967 (English), 3/25/2019 00:53:48, 142032 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvWmi.chm, 3/25/2019 00:36:34, 367847 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvWmi.mof, 3/25/2019 00:36:34, 147569 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvWmi64.exe, 2.33.0000.0000 (English), 3/25/2019 00:54:12, 4738440 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nv_ref_pubwu.inf, 3/25/2019 00:36:34, 672788 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvapi.dll, 25.21.0014.1967 (English), 3/25/2019 00:51:20, 4303288 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvapi64.dll, 25.21.0014.1967 (English), 3/25/2019 00:51:24, 5044896 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvcompiler32.dll, 25.21.0014.1967 (English), 3/25/2019 00:52:08, 35268696 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvcompiler64.dll, 25.21.0014.1967 (English), 3/25/2019 00:52:14, 40421272 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvcuda32.dll, 25.21.0014.1967 (English), 3/25/2019 00:51:32, 17433392 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvcuda64.dll, 25.21.0014.1967 (English), 3/25/2019 00:51:38, 20107592 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvcuvid32.dll, 7.17.0014.1967 (English), 3/25/2019 00:52:24, 4625824 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvcuvid64.dll, 7.17.0014.1967 (English), 3/25/2019 00:52:26, 5274760 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvdebugdump.exe, 6.14.0014.1967 (English), 3/25/2019 00:52:26, 448928 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvdrsdb.bin, 3/25/2019 00:36:32, 1565896 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvfatbinaryLoader32.dll, 25.21.0014.1967 (English), 3/25/2019 00:52:36, 914912 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvfatbinaryLoader64.dll, 25.21.0014.1967 (English), 3/25/2019 00:52:38, 1169144 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvidia-smi.1.pdf, 3/25/2019 00:36:32, 104677 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvidia-smi.exe, 8.17.0014.1967 (English), 3/25/2019 00:52:36, 566208 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvinfo.pb, 3/25/2019 00:36:32, 47332 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvmcumd.dll, 25.21.0014.1967 (English), 3/25/2019 00:52:44, 822784 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvml.dll, 8.17.0014.1967 (English), 3/25/2019 00:52:50, 992344 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvngx.dll, 1.02.0014.0120 (English), 3/25/2019 00:52:52, 735704 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvngx_update.exe, 1.01.0004.0120 (English), 3/25/2019 00:52:54, 815576 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvofapi.dll, 3/25/2019 00:52:54, 534936 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvofapi64.dll, 3/25/2019 00:52:54, 668664 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvpciflt.sys, 25.21.0014.1967 (English), 3/25/2019 00:53:28, 57224 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvptxJitCompiler32.dll, 25.21.0014.1967 (English), 3/25/2019 00:53:14, 8786128 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvptxJitCompiler64.dll, 25.21.0014.1967 (English), 3/25/2019 00:53:18, 10320712 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvsetup.exe, 3/25/2019 00:53:38, 92368 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvst3.chm, 3/25/2019 00:36:34, 80529 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvst3ARA.chm, 3/25/2019 00:36:34, 80228 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvst3CHS.chm, 3/25/2019 00:36:34, 78872 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvst3CHT.chm, 3/25/2019 00:36:34, 80828 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvst3CSY.chm, 3/25/2019 00:36:34, 82476 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvst3DAN.chm, 3/25/2019 00:36:34, 76269 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvst3DEU.chm, 3/25/2019 00:36:34, 79058 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvst3ELL.chm, 3/25/2019 00:36:34, 82981 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvst3ENG.chm, 3/25/2019 00:36:34, 75556 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvst3ESM.chm, 3/25/2019 00:36:34, 77246 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvst3ESN.chm, 3/25/2019 00:36:34, 77156 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvst3FIN.chm, 3/25/2019 00:36:34, 81233 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvst3FRA.chm, 3/25/2019 00:36:34, 77870 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvst3HEB.chm, 3/25/2019 00:36:34, 83090 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvst3HUN.chm, 3/25/2019 00:36:34, 83246 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvst3ITA.chm, 3/25/2019 00:36:34, 78109 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvst3JPN.chm, 3/25/2019 00:36:34, 89524 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvst3KOR.chm, 3/25/2019 00:36:34, 80836 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvst3NLD.chm, 3/25/2019 00:36:34, 75407 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvst3NOR.chm, 3/25/2019 00:36:34, 74277 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvst3PLK.chm, 3/25/2019 00:36:34, 82599 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvst3PTB.chm, 3/25/2019 00:36:34, 77058 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvst3PTG.chm, 3/25/2019 00:36:34, 77193 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvst3RUS.chm, 3/25/2019 00:36:34, 80781 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvst3SKY.chm, 3/25/2019 00:36:34, 84051 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvst3SLV.chm, 3/25/2019 00:36:34, 80917 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvst3SVE.chm, 3/25/2019 00:36:34, 75095 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvst3THA.chm, 3/25/2019 00:36:34, 83029 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvst3TRK.chm, 3/25/2019 00:36:34, 80892 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvstapisvr.dll, 7.17.0014.1967 (English), 3/25/2019 00:53:40, 379592 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvstapisvr64.dll, 7.17.0014.1967 (English), 3/25/2019 00:53:40, 414416 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvstlink.exe, 7.17.0014.1967 (English), 3/25/2019 00:53:46, 2374344 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvstres.dll, 7.17.0014.1967 (English), 3/25/2019 00:53:52, 3754192 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvstres64.dll, 7.17.0014.1967 (English), 3/25/2019 00:53:54, 3644616 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvtimings.ini, 3/25/2019 00:36:34, 107200 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvvgpu64.dll, 6.14.0014.1967 (English), 3/25/2019 00:54:08, 1459080 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvvgpuconfig.dll, 25.21.0014.1967 (English), 3/25/2019 00:54:10, 295632 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvwl.dll, 1.00.0000.0036 (English), 3/25/2019 00:54:10, 125640 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvwl64.dll, 1.00.0000.0036 (English), 3/25/2019 00:54:12, 139472 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\presentations_bg.png, 3/25/2019 00:36:34, 143326 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\presentations_bg_rtl.png, 3/25/2019 00:36:34, 140906 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\radio_btn_selected.png, 3/25/2019 00:36:34, 1718 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\radio_btn_unselected.png, 3/25/2019 00:36:34, 1516 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\scratches.bmp, 3/25/2019 00:36:34, 6220856 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\setup.cfg, 3/25/2019 00:36:34, 9886 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\setup.exe, 2.1002.0319.0000 (English), 3/25/2019 00:54:18, 488648 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\splash.png, 3/25/2019 00:36:34, 161756 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\splash_rtl.png, 3/25/2019 00:36:34, 164925 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\theme.cfg, 3/25/2019 00:36:34, 8943 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\tools_licenses.txt, 3/25/2019 00:36:34, 11045 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\ui.tga, 3/25/2019 00:36:34, 120236 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\uninstall_bg.png, 3/25/2019 00:36:34, 64596 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\uninstall_bg_rtl.png, 3/25/2019 00:36:34, 62297 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\vgpuconfig.xml, 3/25/2019 00:36:34, 260919 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\vulkan-1-x64.dll, 1.01.0097.0000 (English), 3/25/2019 00:54:22, 1006800 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\vulkan-1-x86.dll, 1.01.0097.0000 (English), 3/25/2019 00:54:22, 870096 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\vulkaninfo-x64.exe, 1.01.0097.0000 (English), 3/25/2019 00:54:24, 286416 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\vulkaninfo-x86.exe, 1.01.0097.0000 (English), 3/25/2019 00:54:24, 260304 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\warning.png, 3/25/2019 00:36:34, 1601 bytes
Driver: C:\Windows\system32\DRIVERS\NVIDIA Corporation\Drs\dbInstaller.exe, 25.21.0014.1967 (English), 3/25/2019 00:51:32, 731280 bytes
Driver: C:\Windows\system32\DRIVERS\NVIDIA Corporation\Drs\nvdrsdb.bin, 3/25/2019 00:36:32, 1565896 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NvContainerSetup.exe, 1.00.0007.0000 (English), 3/25/2019 00:52:22, 4428760 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\NvCplSetupInt.exe, 1.00.0007.0000 (English), 3/25/2019 00:52:24, 100803152 bytes
Driver: C:\Windows\system32\DRIVERS\NVIDIA Corporation\license.txt, 3/25/2019 00:36:28, 27203 bytes
Driver: C:\Windows\system32\MCU.exe, 1.01.5204.20580 (English), 3/25/2019 00:51:48, 858504 bytes
Driver: C:\Windows\system32\nvdebugdump.exe, 6.14.0014.1967 (English), 3/25/2019 00:52:26, 448928 bytes
Driver: C:\Windows\system32\nvidia-smi.1.pdf, 3/25/2019 00:36:32, 104677 bytes
Driver: C:\Windows\system32\nvidia-smi.exe, 8.17.0014.1967 (English), 3/25/2019 00:52:36, 566208 bytes
Driver: C:\Windows\system32\nvml.dll, 8.17.0014.1967 (English), 3/25/2019 00:52:50, 992344 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvopencl32.dll, 25.21.0014.1967 (English), 3/25/2019 00:52:52, 29992640 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvopencl64.dll, 25.21.0014.1967 (English), 3/25/2019 00:53:02, 35488592 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvlddmkm.sys, 25.21.0014.1967 (English), 3/25/2019 00:52:44, 20746840 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nv-vk64.json, 3/25/2019 00:36:28, 669 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvcbl64.dll, 25.21.0014.1967 (English), 3/25/2019 00:52:08, 497616 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvd3dumx.dll, 25.21.0014.1967 (English), 3/25/2019 00:51:58, 20953368 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvd3dumx_cfg.dll, 25.21.0014.1967 (English), 3/25/2019 00:52:04, 21397248 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvdlistx.dll, 25.21.0014.1967 (English), 3/25/2019 00:52:16, 194720 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvldumdx.dll, 25.21.0014.1967 (English), 3/25/2019 00:52:42, 957312 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvoglv64.dll, 25.21.0014.1967 (English), 3/25/2019 00:53:02, 40392608 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvoptix.dll, 6.00.0000.0000 (English), 3/25/2019 00:53:12, 71478376 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvrtum64.dll, 25.21.0014.1967 (English), 3/25/2019 00:53:32, 20904328 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvwgf2umx.dll, 25.21.0014.1967 (English), 3/25/2019 00:53:38, 38261328 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvwgf2umx_cfg.dll, 25.21.0014.1967 (English), 3/25/2019 00:53:54, 39267656 bytes
Driver: C:\Windows\system32\NvFBC64.dll, 6.14.0014.1967 (English), 3/25/2019 00:52:30, 2033264 bytes
Driver: C:\Windows\system32\NvIFR64.dll, 6.14.0014.1967 (English), 3/25/2019 00:52:36, 1464920 bytes
Driver: C:\Windows\system32\NvIFROpenGL.dll, 25.21.0014.1967 (English), 3/25/2019 00:52:38, 631256 bytes
Driver: C:\Windows\system32\OpenCL.dll, 2.02.0001.0000 (English), 3/25/2019 00:54:16, 551680 bytes
Driver: C:\Windows\system32\nvDecMFTMjpeg.dll, 25.21.0014.1967 (English), 3/25/2019 00:52:28, 752544 bytes
Driver: C:\Windows\system32\nvEncMFTH264.dll, 25.21.0014.1967 (English), 3/25/2019 00:52:20, 1462232 bytes
Driver: C:\Windows\system32\nvEncMFThevc.dll, 25.21.0014.1967 (English), 3/25/2019 00:52:28, 1471816 bytes
Driver: C:\Windows\system32\nvEncodeAPI64.dll, 25.21.0014.1967 (English), 3/25/2019 00:52:34, 794840 bytes
Driver: C:\Windows\system32\nvapi64.dll, 25.21.0014.1967 (English), 3/25/2019 00:51:24, 5044896 bytes
Driver: C:\Windows\system32\nvcompiler.dll, 25.21.0014.1967 (English), 3/25/2019 00:52:14, 40421272 bytes
Driver: C:\Windows\system32\nvcuda.dll, 25.21.0014.1967 (English), 3/25/2019 00:51:38, 20107592 bytes
Driver: C:\Windows\system32\nvcuvid.dll, 7.17.0014.1967 (English), 3/25/2019 00:52:26, 5274760 bytes
Driver: C:\Windows\system32\nvfatbinaryLoader.dll, 25.21.0014.1967 (English), 3/25/2019 00:52:38, 1169144 bytes
Driver: C:\Windows\system32\nvinfo.pb, 3/25/2019 00:36:32, 47332 bytes
Driver: C:\Windows\system32\nvmcumd.dll, 25.21.0014.1967 (English), 3/25/2019 00:52:44, 822784 bytes
Driver: C:\Windows\system32\nvofapi64.dll, 3/25/2019 00:52:54, 668664 bytes
Driver: C:\Windows\system32\nvptxJitCompiler.dll, 25.21.0014.1967 (English), 3/25/2019 00:53:18, 10320712 bytes
Driver: C:\Windows\system32\vulkan-1-999-0-0-0.dll, 1.01.0097.0000 (English), 3/25/2019 00:54:22, 1006800 bytes
Driver: C:\Windows\system32\vulkan-1.dll, 1.01.0097.0000 (English), 3/25/2019 00:54:22, 1006800 bytes
Driver: C:\Windows\system32\vulkaninfo-1-999-0-0-0.exe, 1.01.0097.0000 (English), 3/25/2019 00:54:24, 286416 bytes
Driver: C:\Windows\system32\vulkaninfo.exe, 1.01.0097.0000 (English), 3/25/2019 00:54:24, 286416 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\DisplayDriverRAS.dll, 1.10.0000.0000 (English), 3/25/2019 00:51:32, 2203224 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nv-vk32.json, 3/25/2019 00:36:28, 669 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvd3dum.dll, 25.21.0014.1967 (English), 3/25/2019 00:51:48, 17356896 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvd3dum_cfg.dll, 25.21.0014.1967 (English), 3/25/2019 00:52:10, 17710880 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvdispco64.exe, 1.00.0010.0000 (English), 3/25/2019 00:52:28, 1548944 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvdlist.dll, 25.21.0014.1967 (English), 3/25/2019 00:52:16, 168760 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvldumd.dll, 25.21.0014.1967 (English), 3/25/2019 00:52:40, 798808 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvoglv32.dll, 25.21.0014.1967 (English), 3/25/2019 00:52:56, 30060112 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvwgf2um.dll, 25.21.0014.1967 (English), 3/25/2019 00:53:26, 32840616 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nv_ref_pubwu.inf_amd64_127f5d94e1abe12e\nvwgf2um_cfg.dll, 25.21.0014.1967 (English), 3/25/2019 00:54:06, 33926864 bytes
Driver: C:\Windows\SysWow64\NvFBC.dll, 6.14.0014.1967 (English), 3/25/2019 00:52:30, 1535960 bytes
Driver: C:\Windows\SysWow64\NvIFR.dll, 6.14.0014.1967 (English), 3/25/2019 00:52:36, 1130376 bytes
Driver: C:\Windows\SysWow64\NvIFROpenGL.dll, 25.21.0014.1967 (English), 3/25/2019 00:52:38, 522328 bytes
Driver: C:\Windows\SysWow64\OpenCL.dll, 2.02.0001.0000 (English), 3/25/2019 00:54:14, 456640 bytes
Driver: C:\Windows\SysWow64\nvDecMFTMjpeg.dll, 25.21.0014.1967 (English), 3/25/2019 00:52:28, 611928 bytes
Driver: C:\Windows\SysWow64\nvEncMFTH264.dll, 25.21.0014.1967 (English), 3/25/2019 00:52:18, 1145928 bytes
Driver: C:\Windows\SysWow64\nvEncMFThevc.dll, 25.21.0014.1967 (English), 3/25/2019 00:52:24, 1152192 bytes
Driver: C:\Windows\SysWow64\nvEncodeAPI.dll, 25.21.0014.1967 (English), 3/25/2019 00:52:32, 638384 bytes
Driver: C:\Windows\SysWow64\nvapi.dll, 25.21.0014.1967 (English), 3/25/2019 00:51:20, 4303288 bytes
Driver: C:\Windows\SysWow64\nvcompiler.dll, 25.21.0014.1967 (English), 3/25/2019 00:52:08, 35268696 bytes
Driver: C:\Windows\SysWow64\nvcuda.dll, 25.21.0014.1967 (English), 3/25/2019 00:51:32, 17433392 bytes
Driver: C:\Windows\SysWow64\nvcuvid.dll, 7.17.0014.1967 (English), 3/25/2019 00:52:24, 4625824 bytes
Driver: C:\Windows\SysWow64\nvfatbinaryLoader.dll, 25.21.0014.1967 (English), 3/25/2019 00:52:36, 914912 bytes
Driver: C:\Windows\SysWow64\nvofapi.dll, 3/25/2019 00:52:54, 534936 bytes
Driver: C:\Windows\SysWow64\nvptxJitCompiler.dll, 25.21.0014.1967 (English), 3/25/2019 00:53:14, 8786128 bytes
Driver: C:\Windows\SysWow64\vulkan-1-999-0-0-0.dll, 1.01.0097.0000 (English), 3/25/2019 00:54:22, 870096 bytes
Driver: C:\Windows\SysWow64\vulkan-1.dll, 1.01.0097.0000 (English), 3/25/2019 00:54:22, 870096 bytes
Driver: C:\Windows\SysWow64\vulkaninfo-1-999-0-0-0.exe, 1.01.0097.0000 (English), 3/25/2019 00:54:24, 260304 bytes
Driver: C:\Windows\SysWow64\vulkaninfo.exe, 1.01.0097.0000 (English), 3/25/2019 00:54:24, 260304 bytes
Name: Standard SATA AHCI Controller
Device ID: PCI\VEN_1022&DEV_7901&SUBSYS_87471043&REV_51\4&2B9CC193&0&0241
Driver: C:\Windows\system32\DRIVERS\storahci.sys, 10.00.17763.0168 (English), 12/8/2018 03:17:47, 164344 bytes
Name: PCI-to-PCI Bridge
Device ID: PCI\VEN_1022&DEV_43C6&SUBSYS_02011B21&REV_01\4&115A0D29&0&020B
Driver: C:\Windows\system32\DRIVERS\pci.sys, 10.00.17763.0475 (English), 7/17/2019 20:47:46, 421392 bytes
Name: PCI standard host CPU bridge
Device ID: PCI\VEN_1022&DEV_1465&SUBSYS_00000000&REV_00\3&11583659&0&C5
Driver: n/a
Name: Intel(R) I211 Gigabit Network Connection
Device ID: PCI\VEN_8086&DEV_1539&SUBSYS_85F01043&REV_03\6&2239D62D&0&0038020B
Driver: C:\Windows\system32\DRIVERS\e1i63x64.sys, 12.15.0022.0006 (English), 9/15/2018 09:28:15, 524800 bytes
Name: PCI-to-PCI Bridge
Device ID: PCI\VEN_1022&DEV_43C7&SUBSYS_33061B21&REV_01\5&37061795&0&48020B
Driver: C:\Windows\system32\DRIVERS\pci.sys, 10.00.17763.0475 (English), 7/17/2019 20:47:46, 421392 bytes
Name: AMD PCI
Device ID: PCI\VEN_1022&DEV_1455&SUBSYS_14551022&REV_00\4&2B9CC193&0&0041
Driver: C:\Windows\system32\DRIVERS\AMDPCIDev.sys, 1.00.0000.0055 (English), 4/25/2018 23:51:24, 31592 bytes
Name: NVIDIA USB 3.10 eXtensible Host Controller - 1.10 (Microsoft)
Device ID: PCI\VEN_10DE&DEV_1ADA&SUBSYS_37D91458&REV_A1\4&1DA95F35&0&0219
Driver: C:\Windows\system32\DRIVERS\USBXHCI.SYS, 10.00.17763.0592 (English), 7/17/2019 20:47:46, 467984 bytes
Driver: C:\Windows\system32\DRIVERS\UMDF\UsbXhciCompanion.dll, 10.00.17763.0001 (English), 9/15/2018 09:28:19, 130720 bytes
Name: PCI standard host CPU bridge
Device ID: PCI\VEN_1022&DEV_1460&SUBSYS_00000000&REV_00\3&11583659&0&C0
Driver: n/a
Name: PCI-to-PCI Bridge
Device ID: PCI\VEN_1022&DEV_43C7&SUBSYS_33061B21&REV_01\5&37061795&0&38020B
Driver: C:\Windows\system32\DRIVERS\pci.sys, 10.00.17763.0475 (English), 7/17/2019 20:47:46, 421392 bytes
Name: PCI standard ISA bridge
Device ID: PCI\VEN_1022&DEV_790E&SUBSYS_87471043&REV_51\3&11583659&0&A3
Driver: C:\Windows\system32\DRIVERS\msisadrv.sys, 10.00.17763.0001 (English), 9/15/2018 09:28:18, 18744 bytes
Name: AMD PCI
Device ID: PCI\VEN_1022&DEV_145A&SUBSYS_145A1022&REV_00\4&C93BEE2&0&0039
Driver: C:\Windows\system32\DRIVERS\AMDPCIDev.sys, 1.00.0000.0055 (English), 4/25/2018 23:51:24, 31592 bytes
Name: PCI standard host CPU bridge
Device ID: PCI\VEN_1022&DEV_1463&SUBSYS_00000000&REV_00\3&11583659&0&C3
Driver: n/a
Name: AMD USB 3.10 eXtensible Host Controller - 1.10 (Microsoft)
Device ID: PCI\VEN_1022&DEV_43D0&SUBSYS_11421B21&REV_01\4&115A0D29&0&000B
Driver: C:\Windows\system32\DRIVERS\USBXHCI.SYS, 10.00.17763.0592 (English), 7/17/2019 20:47:46, 467984 bytes
Driver: C:\Windows\system32\DRIVERS\UMDF\UsbXhciCompanion.dll, 10.00.17763.0001 (English), 9/15/2018 09:28:19, 130720 bytes
Name: PCI-to-PCI Bridge
Device ID: PCI\VEN_1022&DEV_1454&SUBSYS_14541022&REV_00\3&11583659&0&41
Driver: C:\Windows\system32\DRIVERS\pci.sys, 10.00.17763.0475 (English), 7/17/2019 20:47:46, 421392 bytes
Name: PCI-to-PCI Bridge
Device ID: PCI\VEN_1022&DEV_1454&SUBSYS_14541022&REV_00\3&11583659&0&39
Driver: C:\Windows\system32\DRIVERS\pci.sys, 10.00.17763.0475 (English), 7/17/2019 20:47:46, 421392 bytes
Name: PCI-to-PCI Bridge
Device ID: PCI\VEN_1022&DEV_43C7&SUBSYS_33061B21&REV_01\5&37061795&0&30020B
Driver: C:\Windows\system32\DRIVERS\pci.sys, 10.00.17763.0475 (English), 7/17/2019 20:47:46, 421392 bytes
Name: PCI standard host CPU bridge
Device ID: PCI\VEN_1022&DEV_1452&SUBSYS_00000000&REV_00\3&11583659&0&40
Driver: n/a
Name: PCI standard host CPU bridge
Device ID: PCI\VEN_1022&DEV_1452&SUBSYS_00000000&REV_00\3&11583659&0&38
Driver: n/a
Name: PCI standard host CPU bridge
Device ID: PCI\VEN_1022&DEV_1452&SUBSYS_00000000&REV_00\3&11583659&0&20
Driver: n/a
Name: PCI standard host CPU bridge
Device ID: PCI\VEN_1022&DEV_1452&SUBSYS_00000000&REV_00\3&11583659&0&18
Driver: n/a
Name: PCI standard host CPU bridge
Device ID: PCI\VEN_1022&DEV_1452&SUBSYS_00000000&REV_00\3&11583659&0&10
Driver: n/a
Name: PCI standard host CPU bridge
Device ID: PCI\VEN_1022&DEV_1452&SUBSYS_00000000&REV_00\3&11583659&0&08
Driver: n/a
Name: AMD USB 3.0 eXtensible Host Controller - 1.0 (Microsoft)
Device ID: PCI\VEN_1022&DEV_145F&SUBSYS_87471043&REV_00\4&C93BEE2&0&0339
Driver: C:\Windows\system32\DRIVERS\USBXHCI.SYS, 10.00.17763.0592 (English), 7/17/2019 20:47:46, 467984 bytes
Driver: C:\Windows\system32\DRIVERS\UMDF\UsbXhciCompanion.dll, 10.00.17763.0001 (English), 9/15/2018 09:28:19, 130720 bytes
Name: PCI standard host CPU bridge
Device ID: PCI\VEN_1022&DEV_1450&SUBSYS_87471043&REV_00\3&11583659&0&00
Driver: n/a
Name: PCI standard host CPU bridge
Device ID: PCI\VEN_1022&DEV_1466&SUBSYS_00000000&REV_00\3&11583659&0&C6
Driver: n/a
Name: PCI-to-PCI Bridge
Device ID: PCI\VEN_1022&DEV_43C7&SUBSYS_33061B21&REV_01\5&37061795&0&20020B
Driver: C:\Windows\system32\DRIVERS\pci.sys, 10.00.17763.0475 (English), 7/17/2019 20:47:46, 421392 bytes
Name: NVIDIA USB Type-C Port Policy Controller
Device ID: PCI\VEN_10DE&DEV_1ADB&SUBSYS_37D91458&REV_A1\4&1DA95F35&0&0319
Driver: C:\Windows\system32\DRIVERS\UcmCxUcsiNvppc.sys, 1.01.0027.0831 (English), 3/25/2019 00:54:20, 461136 bytes
Name: PCI-to-PCI Bridge