Log File
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
------------------ System Information ------------------ Time of this report: 5/9/2026, 13:35:40 Machine name: BANKSAIRFIELD Machine Id: {0ACB9B3A-9F76-4BD5-8E30-0507B5A5B4E1} Operating System: Windows 11 Home 64-bit (10.0, Build 26200) (26100.ge_release.240331-1435) Language: English (Regional Setting: English) System Manufacturer: ASUS System Model: System Product Name BIOS: 3222 (type: UEFI) Processor: AMD Ryzen 7 7800X3D 8-Core Processor (8 CPUs), ~4.2GHz Memory: 32768MB RAM Available OS Memory: 31914MB RAM Page File: 37638MB used, 18567MB available Windows Dir: C:\WINDOWS DirectX Version: DirectX 12 DX Setup Parameters: Not found User DPI Setting: 144 DPI (150 percent) System DPI Setting: 288 DPI (300 percent) DWM DPI Scaling: UnKnown Miracast: Available, no HDCP Microsoft Graphics Hybrid: Supported DirectX Database Version: 1.8.3 Auto Super Res Version: Unknown System Mux Support: Mux Support Inactive - Ok Mux Target GPU: dGPU Mux Incompatible List: Unknown DxDiag Version: 10.00.26100.8328 64bit Unicode ------------ DxDiag Notes ------------ Display Tab 1: No problems found. Display Tab 2: No problems found. Display Tab 3: No problems found. Sound Tab 1: No problems found. Sound Tab 2: No problems found. Sound Tab 3: No problems found. Sound Tab 4: No problems found. Sound Tab 5: No problems found. Sound Tab 6: No problems found. Sound Tab 7: No problems found. Sound Tab 8: 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 5070 Ti Manufacturer: NVIDIA Chip type: NVIDIA GeForce RTX 5070 Ti DAC type: Integrated RAMDAC Device Type: Full Device (POST) Device Key: Enum\PCI\VEN_10DE&DEV_2C05&SUBSYS_89F41043&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: 31951 MB Dedicated Memory: 15995 MB Shared Memory: 15956 MB Current Mode: 2560 x 1440 (32 bit) (144Hz) HDR Support: Supported Display Topology: Extend Display Color Space: DXGI_COLOR_SPACE_RGB_FULL_G22_NONE_P709 Color Primaries: Red(0.673828,0.314453), Green(0.273438,0.669922), Blue(0.149414,0.047852), White Point(0.313477,0.329102) Display Luminance: Min Luminance = 0.200500, Max Luminance = 282.855499, MaxFullFrameLuminance = 282.855499 Monitor Name: Generic PnP Monitor Monitor Model: VG27AQ3A Monitor Id: AUS27EF Native Mode: 2560 x 1440(p) (60.000Hz) Output Type: Displayport External Monitor Capabilities: HDR Supported (BT2020RGB BT2020YCC Eotf2084Supported ) Display Pixel Format: DISPLAYCONFIG_PIXELFORMAT_32BPP Advanced Color: AdvancedColorSupported Using DDisplay: Yes WCG: Wcg Supported Active Color Mode: DISPLAYCONFIG_ADVANCED_COLOR_MODE_SDR Driver Name: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvldumdx.dll,C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvldumdx.dll,C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvldumdx.dll,C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvldumdx.dll Driver File Version: 32.00.0015.9636 (English) Driver Version: 32.0.15.9636 DDI Version: 12 Adapter Attributes: HARDWARE_TYPE_GPU,D3D11_GRAPHICS,D3D12_GRAPHICS,D3D12_CORE_COMPUTE,D3D12_GENERIC_ML,D3D12_GENERIC_MEDIA Feature Levels: 12_2,12_1,12_0,11_1,11_0,10_1,10_0,9_3,9_2,9_1,1_0_CORE Driver Model: WDDM 3.2 Hardware Scheduling: DriverSupportState:Stable Enabled:True Displayable: Supported Graphics Preemption: Pixel Compute Preemption: Dispatch Miracast: Not Supported by Graphics driver Detachable GPU: No Hybrid Graphics GPU: Discrete GPU Mux Support: Development, Uninitialized - Query driver runtime status failed Power P-states: Not Supported Virtualization: Paravirtualization Block List: No Blocks Catalog Attributes: Universal:False Declarative:True Driver Attributes: Final Retail Driver Date/Size: 4/22/2026 8:00:00 PM, 818088 bytes WHQL Logo'd: Yes WHQL Date Stamp: Unknown Device Identifier: {D7B71E3E-6F45-11CF-5756-FBA90EC2ED35} Vendor ID: 0x10DE Device ID: 0x2C05 SubSys ID: 0x89F41043 Revision ID: 0x00A1 Driver Strong Name: oem39.inf:0f066de3d00d1f77:Section048:32.0.15.9636:pci\ven_10de&dev_2c05 Adapter Family: Unknown Rank Of Driver: 00CF2001 Video Accel: DXVA2 Modes: {86695F12-340E-4F04-9FD3-9253DD327460} DXVA2_ModeMPEG2_VLD {6F3EC719-3735-42CC-8063-65CC3CB36616} DXVA2_ModeVC1_D2010 DXVA2_ModeVC1_VLD {32FCFE3F-DE46-4A49-861B-AC71110649D5} DXVA2_ModeH264_VLD_Stereo_Progressive_NoFGT DXVA2_ModeH264_VLD_Stereo_NoFGT DXVA2_ModeH264_VLD_NoFGT {0BAC4FE5-1532-4429-A854-F84DE0264422} DXVA2_ModeHEVC_VLD_Main DXVA2_ModeHEVC_VLD_Main10 DXVA_ModeHEVC_VLD_Main12 {15DF9B21-06C4-47F1-841E-A67C97D7F312} DXVA_ModeHEVC_VLD_Main10_422 DXVA_ModeHEVC_VLD_Main12_422 DXVA_ModeHEVC_VLD_Main_444 DXVA_ModeHEVC_VLD_Main10_444 DXVA_ModeHEVC_VLD_Main12_444 DXVA2_ModeMPEG4pt2_VLD_Simple DXVA2_ModeMPEG4pt2_VLD_AdvSimple_NoGMC {9947EC6F-689B-11DC-A320-0019DBBC4184} {33FCFE41-DE46-4A49-861B-AC71110649D5} DXVA_ModeMJPEG_VLD_420 DXVA_ModeMJPEG_VLD_422 DXVA_ModeMJPEG_VLD_444 DXVA_ModeJPEG_VLD_444 DXVA2_ModeVP9_VLD_Profile0 DXVA2_ModeVP9_VLD_10bit_Profile2 {DDA19DC7-93B5-49F5-A9B3-2BDA28A2CE6E} DXVA_ModeAV1_VLD_Profile0 {6AFFD11E-1D96-42B1-A215-93A31F09A53D} {914C84A3-4078-4FA9-984C-E2F262CB5C9C} {8A1A1031-29BC-46D0-A007-E9B092CA6767} D3D12 Encode Modes: { D3D12_VIDEO_ENCODER_PROFILE_H264_MAIN } { D3D12_VIDEO_ENCODER_PROFILE_H264_HIGH } { D3D12_VIDEO_ENCODER_PROFILE_HEVC_MAIN }{ D3D12_VIDEO_ENCODER_PROFILE_HEVC_MAIN10 }{ D3D12_VIDEO_ENCODER_AV1_PROFILE_MAIN } 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: Not Supported DXVA-HD: Supported DDraw Status: Enabled D3D Status: Enabled AGP Status: Enabled MPO MaxPlanes: 7 MPO Caps: RGB,YUV,BILINEAR,HIGH_FILTER,STRETCH_YUV,STRETCH_RGB,IMMEDIATE,HDR (MPO3) MPO Stretch: 10.000X - 0.500X MPO Media Hints: resizing, colorspace Conversion MPO Formats: NV12 YCBCR_STUDIO_G22_LEFT_P601 YCBCR_FULL_G22_LEFT_P601 YCBCR_STUDIO_G22_LEFT_P709 YCBCR_FULL_G22_LEFT_P709 YCBCR_STUDIO_G22_LEFT_P2020 P010 YCBCR_STUDIO_G22_LEFT_P601 YCBCR_FULL_G22_LEFT_P601 YCBCR_STUDIO_G22_LEFT_P709 YCBCR_FULL_G22_LEFT_P709 YCBCR_STUDIO_G22_LEFT_P2020 YUY2 YCBCR_STUDIO_G22_LEFT_P601 YCBCR_FULL_G22_LEFT_P601 YCBCR_STUDIO_G22_LEFT_P709 YCBCR_FULL_G22_LEFT_P709 YCBCR_STUDIO_G22_LEFT_P2020 R16G16B16A16_FLOAT RGB_FULL_G10_NONE_P709 R10G10B10A2_UNORM RGB_FULL_G22_NONE_P709 RGB_STUDIO_G22_NONE_P709 RGB_STUDIO_G22_NONE_P2020 RGB_FULL_G2084_NONE_P2020 RGB_STUDIO_G2084_NONE_P2020 RGB_FULL_G22_NONE_P2020 RGB_STUDIO_G24_NONE_P709 RGB_STUDIO_G24_NONE_P2020 R8G8B8A8_UNORM RGB_FULL_G22_NONE_P709 RGB_STUDIO_G22_NONE_P709 RGB_STUDIO_G22_NONE_P2020 RGB_FULL_G2084_NONE_P2020 RGB_STUDIO_G2084_NONE_P2020 RGB_FULL_G22_NONE_P2020 RGB_STUDIO_G24_NONE_P709 RGB_STUDIO_G24_NONE_P2020 B8G8R8A8_UNORM RGB_FULL_G22_NONE_P709 RGB_STUDIO_G22_NONE_P709 RGB_STUDIO_G22_NONE_P2020 RGB_FULL_G2084_NONE_P2020 RGB_STUDIO_G2084_NONE_P2020 RGB_FULL_G22_NONE_P2020 RGB_STUDIO_G24_NONE_P709 RGB_STUDIO_G24_NONE_P2020 PanelFitter Caps: RGB,YUV,BILINEAR,HIGH_FILTER,STRETCH_YUV,STRETCH_RGB,IMMEDIATE,HDR (MPO3) PanelFitter Stretch: 10.000X - 0.500X Card name: NVIDIA GeForce RTX 5070 Ti Manufacturer: NVIDIA Chip type: NVIDIA GeForce RTX 5070 Ti DAC type: Integrated RAMDAC Device Type: Full Device (POST) Device Key: Enum\PCI\VEN_10DE&DEV_2C05&SUBSYS_89F41043&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: 31951 MB Dedicated Memory: 15995 MB Shared Memory: 15956 MB Current Mode: 3840 x 2160 (32 bit) (60Hz) HDR Support: Supported Display Topology: Extend Display Color Space: DXGI_COLOR_SPACE_RGB_FULL_G2084_NONE_P2020 Color Primaries: Red(0.639642,0.330083), Green(0.299805,0.599610), Blue(0.150393,0.059568), White Point(0.312500,0.329098) Display Luminance: Min Luminance = 0.070000, Max Luminance = 4300.000000, MaxFullFrameLuminance = 3900.000000 Monitor Name: Generic PnP Monitor Monitor Model: LG TV SSCR2 Monitor Id: GSM82CD Native Mode: 3840 x 2160(p) (60.000Hz) Output Type: HDMI Monitor Capabilities: HDR Supported (BT2020RGB BT2020YCC Eotf2084Supported ) Display Pixel Format: DISPLAYCONFIG_PIXELFORMAT_NONGDI Advanced Color: AdvancedColorSupported AdvancedColorEnabled Using DDisplay: Yes WCG: Wcg Supported Active Color Mode: DISPLAYCONFIG_ADVANCED_COLOR_MODE_HDR Driver Name: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvldumdx.dll,C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvldumdx.dll,C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvldumdx.dll,C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvldumdx.dll Driver File Version: 32.00.0015.9636 (English) Driver Version: 32.0.15.9636 DDI Version: 12 Adapter Attributes: HARDWARE_TYPE_GPU,D3D11_GRAPHICS,D3D12_GRAPHICS,D3D12_CORE_COMPUTE,D3D12_GENERIC_ML,D3D12_GENERIC_MEDIA Feature Levels: 12_2,12_1,12_0,11_1,11_0,10_1,10_0,9_3,9_2,9_1,1_0_CORE Driver Model: WDDM 3.2 Hardware Scheduling: DriverSupportState:Stable Enabled:True Displayable: Supported Graphics Preemption: Pixel Compute Preemption: Dispatch Miracast: Not Supported by Graphics driver Detachable GPU: No Hybrid Graphics GPU: Discrete GPU Mux Support: Development, Uninitialized - Query driver runtime status failed Power P-states: Not Supported Virtualization: Paravirtualization Block List: No Blocks Catalog Attributes: Universal:False Declarative:True Driver Attributes: Final Retail Driver Date/Size: 4/22/2026 8:00:00 PM, 818088 bytes WHQL Logo'd: Yes WHQL Date Stamp: Unknown Device Identifier: {D7B71E3E-6F45-11CF-5756-FBA90EC2ED35} Vendor ID: 0x10DE Device ID: 0x2C05 SubSys ID: 0x89F41043 Revision ID: 0x00A1 Driver Strong Name: oem39.inf:0f066de3d00d1f77:Section048:32.0.15.9636:pci\ven_10de&dev_2c05 Adapter Family: Unknown Rank Of Driver: 00CF2001 Video Accel: DXVA2 Modes: {86695F12-340E-4F04-9FD3-9253DD327460} DXVA2_ModeMPEG2_VLD {6F3EC719-3735-42CC-8063-65CC3CB36616} DXVA2_ModeVC1_D2010 DXVA2_ModeVC1_VLD {32FCFE3F-DE46-4A49-861B-AC71110649D5} DXVA2_ModeH264_VLD_Stereo_Progressive_NoFGT DXVA2_ModeH264_VLD_Stereo_NoFGT DXVA2_ModeH264_VLD_NoFGT {0BAC4FE5-1532-4429-A854-F84DE0264422} DXVA2_ModeHEVC_VLD_Main DXVA2_ModeHEVC_VLD_Main10 DXVA_ModeHEVC_VLD_Main12 {15DF9B21-06C4-47F1-841E-A67C97D7F312} DXVA_ModeHEVC_VLD_Main10_422 DXVA_ModeHEVC_VLD_Main12_422 DXVA_ModeHEVC_VLD_Main_444 DXVA_ModeHEVC_VLD_Main10_444 DXVA_ModeHEVC_VLD_Main12_444 DXVA2_ModeMPEG4pt2_VLD_Simple DXVA2_ModeMPEG4pt2_VLD_AdvSimple_NoGMC {9947EC6F-689B-11DC-A320-0019DBBC4184} {33FCFE41-DE46-4A49-861B-AC71110649D5} DXVA_ModeMJPEG_VLD_420 DXVA_ModeMJPEG_VLD_422 DXVA_ModeMJPEG_VLD_444 DXVA_ModeJPEG_VLD_444 DXVA2_ModeVP9_VLD_Profile0 DXVA2_ModeVP9_VLD_10bit_Profile2 {DDA19DC7-93B5-49F5-A9B3-2BDA28A2CE6E} DXVA_ModeAV1_VLD_Profile0 {6AFFD11E-1D96-42B1-A215-93A31F09A53D} {914C84A3-4078-4FA9-984C-E2F262CB5C9C} {8A1A1031-29BC-46D0-A007-E9B092CA6767} D3D12 Encode Modes: { D3D12_VIDEO_ENCODER_PROFILE_H264_MAIN } { D3D12_VIDEO_ENCODER_PROFILE_H264_HIGH } { D3D12_VIDEO_ENCODER_PROFILE_HEVC_MAIN }{ D3D12_VIDEO_ENCODER_PROFILE_HEVC_MAIN10 }{ D3D12_VIDEO_ENCODER_AV1_PROFILE_MAIN } 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: Not 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 Card name: AMD Radeon(TM) Graphics Manufacturer: Advanced Micro Devices, Inc. Chip type: AMD Radeon Graphics Processor (0x164E) DAC type: Internal DAC(400MHz) Device Type: Full Device Device Key: Enum\PCI\VEN_1002&DEV_164E&SUBSYS_88771043&REV_CB 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: 16442 MB Dedicated Memory: 485 MB Shared Memory: 15956 MB Current Mode: Unknown HDR Support: Unknown Display Topology: Unknown Display Color Space: Unknown Color Primaries: Unknown Display Luminance: Unknown Driver Name: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\atidx9loader64.dll,C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\amdxx64.dll,C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\amdxx64.dll,C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\amdxc64.dll Driver File Version: 32.00.21043.5001 (English) Driver Version: 32.0.21043.5001 DDI Version: 12 Adapter Attributes: HARDWARE_TYPE_GPU,D3D11_GRAPHICS,D3D12_GRAPHICS,D3D12_CORE_COMPUTE,D3D12_GENERIC_ML,D3D12_GENERIC_MEDIA Feature Levels: 12_1,12_0,11_1,11_0,10_1,10_0,9_3,9_2,9_1,1_0_CORE Driver Model: WDDM 3.2 Hardware Scheduling: DriverSupportState:AlwaysOff Enabled:False Displayable: Supported Graphics Preemption: Primitive Compute Preemption: DMA Miracast: Not Supported by Graphics driver Detachable GPU: No Hybrid Graphics GPU: Integrated GPU Mux Support: Development, Uninitialized - Query driver runtime status failed Power P-states: Not Supported Virtualization: Paravirtualization Block List: DISABLE_HWSCH Catalog Attributes: Universal:False Declarative:True Driver Attributes: Final Retail Driver Date/Size: 3/2/2026 8:00:00 PM, 141840 bytes WHQL Logo'd: Yes WHQL Date Stamp: Unknown Device Identifier: Unknown Vendor ID: 0x1002 Device ID: 0x164E SubSys ID: 0x88771043 Revision ID: 0x00CB Driver Strong Name: oem31.inf:cb0ae414c35bf3b1:ati2mtag_Raphael:32.0.21043.5001:PCI\VEN_1002&DEV_164E&SUBSYS_88771043&REV_CB Adapter Family: Unknown Rank Of Driver: 00CF0000 Video Accel: Unknown DXVA2 Modes: {C58B9A06-7E89-11E1-BB00-70B34824019B} DXVA2_ModeH264_VLD_NoFGT {4245F676-2BBC-4166-A0BB-54E7B849C380} {9901CCD3-CA12-4B7E-867A-E2223D9255C3} DXVA2_ModeH264_VLD_Stereo_Progressive_NoFGT DXVA2_ModeH264_VLD_Stereo_NoFGT {D1C20509-AE7B-4E72-AE3B-49F88D58992F} DXVA2_ModeHEVC_VLD_Main {EA72396A-67EC-4781-BEDE-56F498F04EF2} {C152CA8F-738C-461B-AD89-FC292CF8F162} {514A356C-7027-4AFF-8A60-AFD2C1F672F1} DXVA2_ModeHEVC_VLD_Main10 {65D1FA41-58AF-453A-9CAB-5D981156DA9F} {2DB154B6-DBB2-4079-A3FF-60D7A898A6AB} {C74A3FD0-D713-4581-A02E-8EDFB112ACE3} DXVA2_ModeVP9_VLD_Profile0 DXVA2_ModeVP9_VLD_10bit_Profile2 DXVA_ModeAV1_VLD_Profile0 {603A4756-A864-4F91-BB62-2C935B7A1391} {84AD67F6-4C21-419A-9F0B-24F0578906C1} D3D12 Encode Modes: { D3D12_VIDEO_ENCODER_PROFILE_H264_MAIN } { D3D12_VIDEO_ENCODER_PROFILE_H264_HIGH } { D3D12_VIDEO_ENCODER_PROFILE_HEVC_MAIN }{ D3D12_VIDEO_ENCODER_PROFILE_HEVC_MAIN10 } Deinterlace Caps: n/a D3D9 Overlay: Unknown DXVA-HD: Unknown DDraw Status: Enabled D3D Status: Enabled AGP Status: Enabled MPO MaxPlanes: 0 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 Component Drivers: Driver Name: Unknown Driver Version: Unknown Driver Date: Unknown Driver Provider: Unknown Catalog Attributes: N/A Driver Name: Unknown Driver Version: Unknown Driver Date: Unknown Driver Provider: Unknown Catalog Attributes: N/A Driver Name: Unknown Driver Version: Unknown Driver Date: Unknown Driver Provider: Unknown Catalog Attributes: N/A Driver Name: Unknown Driver Version: Unknown Driver Date: Unknown Driver Provider: Unknown Catalog Attributes: N/A ------------- MCDM Devices ------------- ------------- Sound Devices ------------- Description: Headphones (3- Flight Sounds - SOLO) Default Sound Playback: No Default Voice Playback: No Hardware ID: USB\VID_0D8C&PID_0012&REV_0100&MI_00 Manufacturer ID: N/A Product ID: N/A Type: N/A Driver Name: USBAUDIO.sys Driver Version: 10.0.26100.8328 (English) Driver Attributes: Final Retail WHQL Logo'd: Yes Date and Size: 4/26/2026 8:00:00 PM, 294912 bytes Other Files: Driver Provider: Microsoft HW Accel Level: Emulation Only 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: Headphones (Bedroom TV) Default Sound Playback: Yes Default Voice Playback: Yes Hardware ID: BTHENUM\{0000110b-0000-1000-8000-00805f9b34fb}_VID&0002054c_PID&0eaf Manufacturer ID: N/A Product ID: N/A Type: N/A Driver Name: BthA2dp.sys Driver Version: 10.0.26100.1 (English) Driver Attributes: Final Retail WHQL Logo'd: Yes Date and Size: 3/30/2024 8:00:00 PM, 614400 bytes Other Files: Driver Provider: Microsoft HW Accel Level: Emulation Only 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 TV SSCR2 (NVIDIA High Definition Audio) Default Sound Playback: No Default Voice Playback: No Hardware ID: HDAUDIO\FUNC_01&VEN_10DE&DEV_00AB&SUBSYS_10DE0000&REV_1001 Manufacturer ID: N/A Product ID: N/A Type: N/A Driver Name: nvhda64v.sys Driver Version: 1.4.5.7 (English) Driver Attributes: Final Retail WHQL Logo'd: Yes Date and Size: 11/30/2025 8:00:00 PM, 127208 bytes Other Files: Driver Provider: NVIDIA Corporation HW Accel Level: Emulation Only 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: Speakers (ButtKicker PRO) Default Sound Playback: No Default Voice Playback: No Hardware ID: USB\VID_33A1&PID_52DA&REV_0100&MI_00 Manufacturer ID: N/A Product ID: N/A Type: N/A Driver Name: USBAUDIO.sys Driver Version: 10.0.26100.8328 (English) Driver Attributes: Final Retail WHQL Logo'd: Yes Date and Size: 4/26/2026 8:00:00 PM, 294912 bytes Other Files: Driver Provider: Microsoft HW Accel Level: Emulation Only 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: Speakers (Realtek(R) Audio) Default Sound Playback: No Default Voice Playback: No Hardware ID: HDAUDIO\FUNC_01&VEN_10EC&DEV_1168&SUBSYS_104388B9&REV_1001 Manufacturer ID: N/A Product ID: N/A Type: N/A Driver Name: RTKVHD64.sys Driver Version: 6.0.9700.1 (English) Driver Attributes: Final Retail WHQL Logo'd: Yes Date and Size: 6/24/2024 8:00:00 PM, 6217056 bytes Other Files: Driver Provider: Realtek Semiconductor Corp. HW Accel Level: Emulation Only 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: Speakers (Steam Streaming Microphone) Default Sound Playback: No Default Voice Playback: No Hardware ID: ROOT\SteamStreamingMicrophone Manufacturer ID: N/A Product ID: N/A Type: N/A Driver Name: SteamStreamingMicrophone.sys Driver Version: 8.33.15.17 () Driver Attributes: Final Retail WHQL Logo'd: Yes Date and Size: 7/27/2017 8:00:00 PM, 40736 bytes Other Files: Driver Provider: Valve Corporation HW Accel Level: Emulation Only 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: Speakers (Steam Streaming Speakers) Default Sound Playback: No Default Voice Playback: No Hardware ID: ROOT\SteamStreamingSpeakers Manufacturer ID: N/A Product ID: N/A Type: N/A Driver Name: SteamStreamingSpeakers.sys Driver Version: 17.56.13.764 () Driver Attributes: Final Retail WHQL Logo'd: Yes Date and Size: 7/19/2017 8:00:00 PM, 40736 bytes Other Files: Driver Provider: Valve Corporation HW Accel Level: Emulation Only 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: VG27AQ3A (NVIDIA High Definition Audio) Default Sound Playback: No Default Voice Playback: No Hardware ID: HDAUDIO\FUNC_01&VEN_10DE&DEV_00AB&SUBSYS_10DE0000&REV_1001 Manufacturer ID: N/A Product ID: N/A Type: N/A Driver Name: nvhda64v.sys Driver Version: 1.4.5.7 (English) Driver Attributes: Final Retail WHQL Logo'd: Yes Date and Size: 11/30/2025 8:00:00 PM, 127208 bytes Other Files: Driver Provider: NVIDIA Corporation HW Accel Level: Emulation Only 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 --------------------- Description: Capture Input terminal (NexiGo N60 FHD Webcam Audio) Default Sound Capture: No Default Voice Capture: No Driver Name: USBAUDIO.sys Driver Version: 10.0.26100.8328 (English) Driver Attributes: Final Retail Date and Size: 4/26/2026 8:00:00 PM, 294912 bytes Cap Flags: 0x1 Format Flags: 0xFFFFF Description: Headset (Bedroom TV) Default Sound Capture: No Default Voice Capture: Yes Driver Name: Driver Version: Driver Attributes: Date and Size: Cap Flags: 0x1 Format Flags: 0xFFFFF Description: Microphone (3- Flight Sounds - SOLO) Default Sound Capture: Yes Default Voice Capture: No Driver Name: USBAUDIO.sys Driver Version: 10.0.26100.8328 (English) Driver Attributes: Final Retail Date and Size: 4/26/2026 8:00:00 PM, 294912 bytes Cap Flags: 0x1 Format Flags: 0xFFFFF Description: Microphone (Steam Streaming Microphone) Default Sound Capture: No Default Voice Capture: No Driver Name: SteamStreamingMicrophone.sys Driver Version: 8.33.15.17 () Driver Attributes: Final Retail Date and Size: 7/27/2017 8:00:00 PM, 40736 bytes Cap Flags: 0x1 Format Flags: 0xFFFFF --------------------- Video Capture Devices Number of Devices: 1 --------------------- FriendlyName: NexiGo N60 FHD Webcam Category: Camera SymbolicLink: \\?\usb#vid_1d6b&pid_0102&mi_00#a&3b233fb8&0&0000#{e5323777-f976-4f5b-9b55-b94699c46e44}\global Location: n/a Rotation: n/a SensorOrientation: 0 Manufacturer: Microsoft HardwareID: USB\VID_1D6B&PID_0102&REV_0409&MI_00,USB\VID_1D6B&PID_0102&MI_00 DriverDesc: USB Video Device DriverProvider: Microsoft DriverVersion: 10.0.26100.8328 DriverDateEnglish: 6/21/2006 00:00:00 DriverDateLocalized: 6/21/2006 12:00:00 AM Service: usbvideo Class: Camera DevNodeStatus: 180200A[DN_DRIVER_LOADED|DN_STARTED|DN_DISABLEABLE|DN_NT_ENUMERATOR|DN_NT_DRIVER] ContainerId: {00A646DB-8941-11F0-B4A8-CF9E76A7234A} ProblemCode: No Problem BusReportedDeviceDesc: NexiGo N60 FHD Webcam Parent: USB\VID_1D6B&PID_0102\9&2c66bcd3&0&2 DriverProblemDesc: n/a UpperFilters: n/a LowerFilters: WdmCompanionFilter Stack: \Driver\ksthunk,\Driver\usbvideo,\Driver\usbccgp ContainerCategory: n/a SensorGroupID: n/a MFT0: n/a DMFT: n/a CustomCaptureSource: n/a DependentStillCapture: n/a EnablePlatformDMFT: n/a DMFTChain: n/a EnableDshowRedirection: n/a FrameServerEnabled: n/a MEPOptedIn: n/a MEPVersion: n/a MEPHighResMode: n/a AnalogProviders: n/a CompanionAppPfn: n/a MSXUCapability: n/a Fingerprint: 10.0.26100.8328;01C694C5A38C8000;0;0;0;0000000000000000;0000000000000000; DMFTVersionInfo: n/a ProfileIDs: n/a ------------------- 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: T-Pendular-Rudder Attached: 1 Controller ID: 0x1 Vendor/Product ID: 0x044F, 0xB68F FF Driver: n/a Device Name: Keychron K10 Attached: 1 Controller ID: 0x0 Vendor/Product ID: 0x05AC, 0x024F FF Driver: n/a Device Name: AURA LED Controller Attached: 1 Controller ID: 0x0 Vendor/Product ID: 0x0B05, 0x19AF FF Driver: n/a Device Name: WINCTRL Orion Joystick Base Metal 2 + CarrierAce Joystick Grip R.Metal 2 Attached: 1 Controller ID: 0x3 Vendor/Product ID: 0x4098, 0xBEA2 FF Driver: n/a Device Name: ELECOM TrackBall Mouse Attached: 1 Controller ID: 0x0 Vendor/Product ID: 0x056E, 0x018E FF Driver: n/a Device Name: Keychron C3 Pro Attached: 1 Controller ID: 0x0 Vendor/Product ID: 0x3434, 0x0430 FF Driver: n/a Device Name: ELECOM TrackBall Mouse Attached: 1 Controller ID: 0x0 Vendor/Product ID: 0x056E, 0x018E FF Driver: n/a Device Name: USBDISPLAY Attached: 1 Controller ID: 0x0 Vendor/Product ID: 0x0416, 0x5302 FF Driver: n/a Device Name: ELECOM TrackBall Mouse Attached: 1 Controller ID: 0x0 Vendor/Product ID: 0x056E, 0x018E FF Driver: n/a Device Name: ELECOM TrackBall Mouse Attached: 1 Controller ID: 0x0 Vendor/Product ID: 0x056E, 0x018E FF Driver: n/a Device Name: Keychron C3 Pro Attached: 1 Controller ID: 0x0 Vendor/Product ID: 0x3434, 0x0430 FF Driver: n/a Device Name: ELECOM TrackBall Mouse Attached: 1 Controller ID: 0x0 Vendor/Product ID: 0x056E, 0x018E FF Driver: n/a Device Name: Keychron C3 Pro Attached: 1 Controller ID: 0x0 Vendor/Product ID: 0x3434, 0x0430 FF Driver: n/a Device Name: WINCTRL Orion Throttle Base II + F18 HANDLE Attached: 1 Controller ID: 0x0 Vendor/Product ID: 0x4098, 0xBE62 FF Driver: n/a Device Name: USB OPTICAL MOUSE Attached: 1 Controller ID: 0x0 Vendor/Product ID: 0x4E53, 0x5407 FF Driver: n/a Device Name: USB OPTICAL MOUSE Attached: 1 Controller ID: 0x0 Vendor/Product ID: 0x4E53, 0x5407 FF Driver: n/a Device Name: USB OPTICAL MOUSE Attached: 1 Controller ID: 0x0 Vendor/Product ID: 0x4E53, 0x5407 FF Driver: n/a Device Name: USB OPTICAL MOUSE Attached: 1 Controller ID: 0x0 Vendor/Product ID: 0x4E53, 0x5407 FF Driver: n/a Device Name: ButtKicker PRO Attached: 1 Controller ID: 0x0 Vendor/Product ID: 0x33A1, 0x52DA FF Driver: n/a Device Name: Flight Sounds - SOLO Attached: 1 Controller ID: 0x0 Vendor/Product ID: 0x0D8C, 0x0012 FF Driver: n/a Device Name: CP1500AVRLCD3 Attached: 1 Controller ID: 0x0 Vendor/Product ID: 0x0764, 0x0601 FF Driver: n/a Device Name: Keychron K10 Attached: 1 Controller ID: 0x0 Vendor/Product ID: 0x05AC, 0x024F FF Driver: n/a Device Name: WINCTRL CarrierAce PTO 2 Attached: 1 Controller ID: 0x2 Vendor/Product ID: 0x4098, 0xBF05 FF Driver: n/a Device Name: Keychron K10 Attached: 1 Controller ID: 0x0 Vendor/Product ID: 0x05AC, 0x024F FF Driver: n/a Poll w/ Interrupt: No ----------- USB Devices ----------- + USB Root Hub (USB 3.0) | Vendor/Product ID: 0x1022, 0x15B7 | Matching Device ID: USB\ROOT_HUB30 | Service: USBHUB3 | Driver: USBHUB3.SYS, 4/30/2026 22:36:45, 742872 bytes | +-+ USB Input Device | | Vendor/Product ID: 0x056E, 0x018E | | Location: Port_#0001.Hub_#0002 | | Matching Device ID: USB\Class_03&SubClass_01 | | Service: HidUsb | | Driver: hidusb.sys, 4/30/2026 22:36:45, 81920 bytes | | Driver: hidclass.sys, 4/30/2026 22:36:45, 327680 bytes | | Driver: hidparse.sys, 4/30/2026 22:36:45, 81920 bytes | | | +-+ HID-compliant mouse | | | Vendor/Product ID: 0x056E, 0x018E | | | Matching Device ID: HID_DEVICE_SYSTEM_MOUSE | | | Service: mouhid | | | Driver: mouhid.sys, 9/4/2025 03:36:13, 69632 bytes | | | Driver: mouclass.sys, 9/4/2025 03:36:13, 95552 bytes | | +-+ Generic USB Hub | | Vendor/Product ID: 0x0BDA, 0x5411 | | Location: Port_#0002.Hub_#0002 | | Matching Device ID: USB\USB20_HUB | | Service: USBHUB3 | | Driver: USBHUB3.SYS, 4/30/2026 22:36:45, 742872 bytes | | | +-+ Generic USB Hub | | | Vendor/Product ID: 0x0BDA, 0x5411 | | | Location: Port_#0004.Hub_#0006 | | | Matching Device ID: USB\USB20_HUB | | | Service: USBHUB3 | | | Driver: USBHUB3.SYS, 4/30/2026 22:36:45, 742872 bytes | | | | | +-+ USB Composite Device | | | | Vendor/Product ID: 0x3434, 0x0430 | | | | Location: Port_#0002.Hub_#0009 | | | | Matching Device ID: USB\COMPOSITE | | | | Service: usbccgp | | | | Driver: usbccgp.sys, 4/30/2026 22:36:45, 222672 bytes | | | | | | | +-+ USB Input Device | | | | | Vendor/Product ID: 0x3434, 0x0430 | | | | | Location: 000c.0000.0004.002.004.002.000.000.000 | | | | | Matching Device ID: USB\Class_03&SubClass_01 | | | | | Service: HidUsb | | | | | Driver: hidusb.sys, 4/30/2026 22:36:45, 81920 bytes | | | | | Driver: hidclass.sys, 4/30/2026 22:36:45, 327680 bytes | | | | | Driver: hidparse.sys, 4/30/2026 22:36:45, 81920 bytes | | | | | | | | | +-+ HID Keyboard Device | | | | | | Vendor/Product ID: 0x3434, 0x0430 | | | | | | Matching Device ID: HID_DEVICE_SYSTEM_KEYBOARD | | | | | | Service: kbdhid | | | | | | Driver: kbdhid.sys, 4/30/2026 22:36:45, 81920 bytes | | | | | | Driver: kbdclass.sys, 4/30/2026 22:36:45, 95720 bytes | | | | | | | | +-+ USB Input Device | | | | | Vendor/Product ID: 0x3434, 0x0430 | | | | | Location: 000c.0000.0004.002.004.002.000.000.000 | | | | | Matching Device ID: USB\Class_03 | | | | | Service: HidUsb | | | | | Driver: hidusb.sys, 4/30/2026 22:36:45, 81920 bytes | | | | | Driver: hidclass.sys, 4/30/2026 22:36:45, 327680 bytes | | | | | Driver: hidparse.sys, 4/30/2026 22:36:45, 81920 bytes | | | | | | | | | +-+ HID-compliant mouse | | | | | | Vendor/Product ID: 0x3434, 0x0430 | | | | | | Matching Device ID: HID_DEVICE_SYSTEM_MOUSE | | | | | | Service: mouhid | | | | | | Driver: mouhid.sys, 9/4/2025 03:36:13, 69632 bytes | | | | | | Driver: mouclass.sys, 9/4/2025 03:36:13, 95552 bytes | | | | | | | | | | +-+ HID Keyboard Device | | | | | | Vendor/Product ID: 0x3434, 0x0430 | | | | | | Matching Device ID: HID_DEVICE_SYSTEM_KEYBOARD | | | | | | Service: kbdhid | | | | | | Driver: kbdhid.sys, 4/30/2026 22:36:45, 81920 bytes | | | | | | Driver: kbdclass.sys, 4/30/2026 22:36:45, 95720 bytes | + USB Root Hub (USB 3.0) | Vendor/Product ID: 0x1022, 0x43F7 | Matching Device ID: USB\ROOT_HUB30 | Service: USBHUB3 | Driver: USBHUB3.SYS, 4/30/2026 22:36:45, 742872 bytes | +-+ Generic USB Hub | | Vendor/Product ID: 0x05E3, 0x0610 | | Location: Port_#0012.Hub_#0004 | | Matching Device ID: USB\USB20_HUB | | Service: USBHUB3 | | Driver: USBHUB3.SYS, 4/30/2026 22:36:45, 742872 bytes | | | +-+ USB Composite Device | | | Vendor/Product ID: 0x05AC, 0x024F | | | Location: Port_#0003.Hub_#0008 | | | Matching Device ID: USB\COMPOSITE | | | Service: usbccgp | | | Driver: usbccgp.sys, 4/30/2026 22:36:45, 222672 bytes | | | | | +-+ USB Input Device | | | | Vendor/Product ID: 0x05AC, 0x024F | | | | Location: 000a.0000.0000.012.003.000.000.000.000 | | | | Matching Device ID: USB\Class_03&SubClass_01 | | | | Service: HidUsb | | | | Driver: hidusb.sys, 4/30/2026 22:36:45, 81920 bytes | | | | Driver: hidclass.sys, 4/30/2026 22:36:45, 327680 bytes | | | | Driver: hidparse.sys, 4/30/2026 22:36:45, 81920 bytes | | | | | | | +-+ HID Keyboard Device | | | | | Vendor/Product ID: 0x05AC, 0x024F | | | | | Matching Device ID: HID_DEVICE_SYSTEM_KEYBOARD | | | | | Service: kbdhid | | | | | Driver: kbdhid.sys, 4/30/2026 22:36:45, 81920 bytes | | | | | Driver: kbdclass.sys, 4/30/2026 22:36:45, 95720 bytes | | | | | | +-+ USB Input Device | | | | Vendor/Product ID: 0x05AC, 0x024F | | | | Location: 000a.0000.0000.012.003.000.000.000.000 | | | | Matching Device ID: USB\Class_03&SubClass_01 | | | | Service: HidUsb | | | | Driver: hidusb.sys, 4/30/2026 22:36:45, 81920 bytes | | | | Driver: hidclass.sys, 4/30/2026 22:36:45, 327680 bytes | | | | Driver: hidparse.sys, 4/30/2026 22:36:45, 81920 bytes | | | | | | | +-+ HID Keyboard Device | | | | | Vendor/Product ID: 0x05AC, 0x024F | | | | | Matching Device ID: HID_DEVICE_SYSTEM_KEYBOARD | | | | | Service: kbdhid | | | | | Driver: kbdhid.sys, 4/30/2026 22:36:45, 81920 bytes | | | | | Driver: kbdclass.sys, 4/30/2026 22:36:45, 95720 bytes | | | | | | | | +-+ HID-compliant mouse | | | | | Vendor/Product ID: 0x05AC, 0x024F | | | | | Matching Device ID: HID_DEVICE_SYSTEM_MOUSE | | | | | Service: mouhid | | | | | Driver: mouhid.sys, 9/4/2025 03:36:13, 69632 bytes | | | | | Driver: mouclass.sys, 9/4/2025 03:36:13, 95552 bytes | | | | +-+ USB Composite Device | | | Vendor/Product ID: 0x4E53, 0x5407 | | | Location: Port_#0004.Hub_#0008 | | | Matching Device ID: USB\COMPOSITE | | | Service: usbccgp | | | Driver: usbccgp.sys, 4/30/2026 22:36:45, 222672 bytes | | | | | +-+ USB Input Device | | | | Vendor/Product ID: 0x4E53, 0x5407 | | | | Location: 000a.0000.0000.012.004.000.000.000.000 | | | | Matching Device ID: USB\Class_03&SubClass_01 | | | | Service: HidUsb | | | | Driver: hidusb.sys, 4/30/2026 22:36:45, 81920 bytes | | | | Driver: hidclass.sys, 4/30/2026 22:36:45, 327680 bytes | | | | Driver: hidparse.sys, 4/30/2026 22:36:45, 81920 bytes | | | | | | | +-+ HID-compliant mouse | | | | | Vendor/Product ID: 0x4E53, 0x5407 | | | | | Matching Device ID: HID_DEVICE_SYSTEM_MOUSE | | | | | Service: mouhid | | | | | Driver: mouhid.sys, 9/4/2025 03:36:13, 69632 bytes | | | | | Driver: mouclass.sys, 9/4/2025 03:36:13, 95552 bytes | | | | | | +-+ USB Input Device | | | | Vendor/Product ID: 0x4E53, 0x5407 | | | | Location: 000a.0000.0000.012.004.000.000.000.000 | | | | Matching Device ID: USB\Class_03&SubClass_01 | | | | Service: HidUsb | | | | Driver: hidusb.sys, 4/30/2026 22:36:45, 81920 bytes | | | | Driver: hidclass.sys, 4/30/2026 22:36:45, 327680 bytes | | | | Driver: hidparse.sys, 4/30/2026 22:36:45, 81920 bytes | | | | | | | +-+ HID Keyboard Device | | | | | Vendor/Product ID: 0x4E53, 0x5407 | | | | | Matching Device ID: HID_DEVICE_SYSTEM_KEYBOARD | | | | | Service: kbdhid | | | | | Driver: kbdhid.sys, 4/30/2026 22:36:45, 81920 bytes | | | | | Driver: kbdclass.sys, 4/30/2026 22:36:45, 95720 bytes ---------------- Gameport Devices ---------------- ------------ PS/2 Devices ------------ ------------------------ Disk & DVD/CD-ROM Drives ------------------------ Drive: C: Free Space: 308.5 GB Total Space: 1906.9 GB File System: NTFS Model: Samsung SSD 990 EVO Plus 2TB Drive: D: Free Space: 1536.1 GB Total Space: 1907.7 GB File System: NTFS Model: WD My Passport 2626 USB Device -------------- System Devices -------------- Name: NVIDIA GeForce RTX 5070 Ti Device ID: PCI\VEN_10DE&DEV_2C05&SUBSYS_89F41043&REV_A1\2CF2E17F102DB04800 Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\NVWMI\nvPerfProvider.man, 4/23/2026 05:12:42, 14175 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\NVWMI\nvWmi.mof, 4/23/2026 05:12:42, 148903 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\NVWMI\nvWmi64.exe, 2.36.0000.0000 (English), 4/23/2026 18:45:42, 4570856 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\Display.NvContainer\NVDisplay.Container.exe, 1.48.3660.2504 (English), 4/23/2026 18:45:20, 1702632 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\Display.NvContainer\NvContainerRecovery.bat, 4/23/2026 05:12:42, 1951 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\Display.NvContainer\NvMessageBus.dll, 3.15.3538.9611 (English), 4/23/2026 18:45:22, 3535520 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\Display.NvContainer\dlsargs.xml, 4/23/2026 05:12:42, 544 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\Display.NvContainer\dlsnetparams.csv, 4/23/2026 05:12:42, 551901 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\Display.NvContainer\messagebus_client.conf, 4/23/2026 05:12:42, 313 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\Display.NvContainer\nvgwls.exe, 4/23/2026 18:45:20, 3727080 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\Display.NvContainer\nvtopps.db3, 4/23/2026 05:12:42, 126976 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\Display.NvContainer\plugins\LocalSystem\NvXDCore.dll, 32.00.0015.9636 (English), 4/23/2026 18:45:24, 1956584 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\Display.NvContainer\plugins\LocalSystem\NvcDispCorePlugin.dll, 32.00.0015.9636 (English), 4/23/2026 18:45:22, 1081064 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\Display.NvContainer\plugins\LocalSystem\NvcDispWatchdog.dll, 1.48.3660.2504 (English), 4/23/2026 18:45:22, 1278184 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\Display.NvContainer\plugins\LocalSystem\_DisplayDriverRAS.dll, 1.10.0000.0000 (English), 4/23/2026 18:45:24, 2551528 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\Display.NvContainer\plugins\LocalSystem\_NvMsgBusBroadcast.dll, 3.15.3538.9611 (English), 4/23/2026 18:45:26, 3521184 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\Display.NvContainer\plugins\LocalSystem\_nvtopps.dll, 32.00.0015.9636 (English), 4/23/2026 18:45:26, 13609704 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\Display.NvContainer\plugins\LocalSystem\messagebus.conf, 4/23/2026 05:12:42, 313 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\Display.NvContainer\plugins\LocalSystem\wksServicePluginZ.dll, 32.00.0015.9636 (English), 4/23/2026 18:45:24, 319208 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\Display.NvContainer\plugins\Session\_NvGSTPlugin.dll, 32.00.0015.9636 (English), 4/23/2026 18:45:30, 2655464 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\Display.NvContainer\plugins\Session\nvprofileupdaterplugin.dll, 32.00.0015.9636 (English), 4/23/2026 18:45:28, 2188008 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\Display.NvContainer\plugins\Session\nvxdsyncplugin.dll, 8.17.0015.9636 (English), 4/23/2026 18:45:28, 1848552 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\Display.NvContainer\plugins\Session\wksServicePlugin.dll, 32.00.0015.9636 (English), 4/23/2026 18:45:28, 348904 bytes Driver: C:\WINDOWS\system32\DRIVERS\NVIDIA Corporation\Drs\dbInstaller.exe, 32.00.0015.9636 (English), 4/23/2026 18:38:18, 827624 bytes Driver: C:\WINDOWS\system32\DRIVERS\NVIDIA Corporation\Drs\nvdrsdb.bin, 4/23/2026 05:12:42, 2150392 bytes Driver: C:\WINDOWS\system32\nvcpl.dll, 8.17.0015.9636 (English), 4/23/2026 18:38:40, 5925608 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nv3dappshext.dll, 6.14.0015.9636 (English), 4/23/2026 18:38:30, 1006312 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nv3dappshextr.dll, 6.14.0015.9636 (English), 4/23/2026 18:38:30, 98536 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvcoproc.bin, 4/23/2026 05:12:42, 12563893 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvcpl.dll, 8.17.0015.9636 (English), 4/23/2026 18:38:40, 5925608 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvdevtools.dll, 32.00.0015.9636 (English), 4/23/2026 18:39:32, 4609256 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvdevtoolsr.dll, 32.00.0015.9636 (English), 4/23/2026 18:39:34, 245992 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvdisps.dll, 32.00.0015.9636 (English), 4/23/2026 18:39:44, 11676392 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvdispsr.dll, 32.00.0015.9636 (English), 4/23/2026 18:39:44, 11574504 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvgames.dll, 32.00.0015.9636 (English), 4/23/2026 18:40:34, 12520680 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvgamesr.dll, 32.00.0015.9636 (English), 4/23/2026 18:40:36, 13318888 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvlicensings.dll, 6.14.0015.9636 (English), 4/23/2026 18:41:18, 4588776 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvlicensingsr.dll, 6.14.0015.9636 (English), 4/23/2026 18:41:20, 363752 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvshext.dll, 1.02.0000.0001 (English), 4/23/2026 18:43:14, 134376 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvsmartmax.dll, 6.14.0010.10003 (English), 4/23/2026 18:43:14, 201448 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvsmartmax64.dll, 6.14.0010.10003 (English), 4/23/2026 18:43:16, 237800 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvsmartmaxapp.exe, 6.14.0010.10003 (English), 4/23/2026 18:43:16, 274664 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvsmartmaxapp64.exe, 6.14.0010.10003 (English), 4/23/2026 18:43:18, 285416 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvsvc64.dll, 32.00.0015.9636 (English), 4/23/2026 18:43:18, 2682088 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvsvcr.dll, 32.00.0015.9636 (English), 4/23/2026 18:43:20, 1801960 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvsvs.dll, 32.00.0015.9636 (English), 4/23/2026 18:43:22, 5118184 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvsvsr.dll, 32.00.0015.9636 (English), 4/23/2026 18:43:22, 2012392 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvui.dll, 8.17.0015.9636 (English), 4/23/2026 18:44:00, 6677224 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvuir.dll, 8.17.0015.9636 (English), 4/23/2026 18:44:02, 2650344 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvvitvs.dll, 32.00.0015.9636 (English), 4/23/2026 18:44:08, 7479528 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvvitvsr.dll, 32.00.0015.9636 (English), 4/23/2026 18:44:10, 4264168 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvwss.dll, 32.00.0015.9636 (English), 4/23/2026 18:44:54, 12286184 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvwssr.dll, 32.00.0015.9636 (English), 4/23/2026 18:44:56, 9530088 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvxdapix.dll, 8.17.0015.9636 (English), 4/23/2026 18:45:00, 9646824 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvxdbat.dll, 8.17.0015.9636 (English), 4/23/2026 18:45:02, 1660136 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvxdplcy.dll, 8.17.0015.9636 (English), 4/23/2026 18:45:04, 1901800 bytes Driver: C:\WINDOWS\system32\lxss\lib\libcuda.so, 4/23/2026 05:12:42, 183752 bytes Driver: C:\WINDOWS\system32\lxss\lib\libcuda.so.1, 4/23/2026 05:12:42, 183752 bytes Driver: C:\WINDOWS\system32\lxss\lib\libcuda.so.1.1, 4/23/2026 05:12:42, 183752 bytes Driver: C:\WINDOWS\system32\lxss\lib\libcudadebugger.so.1, 3/5/2026 00:46:36, 11732120 bytes Driver: C:\WINDOWS\system32\lxss\lib\libnvcuvid.so, 3/17/2026 19:37:32, 24988448 bytes Driver: C:\WINDOWS\system32\lxss\lib\libnvcuvid.so.1, 3/17/2026 19:37:32, 24988448 bytes Driver: C:\WINDOWS\system32\lxss\lib\libnvdxdlkernels.so, 12/2/2025 11:55:47, 154232352 bytes Driver: C:\WINDOWS\system32\lxss\lib\libnvidia-encode.so, 3/5/2026 00:46:36, 272528 bytes Driver: C:\WINDOWS\system32\lxss\lib\libnvidia-encode.so.1, 3/5/2026 00:46:36, 272528 bytes Driver: C:\WINDOWS\system32\lxss\lib\libnvidia-gpucomp.so, 4/23/2026 05:12:42, 93944648 bytes Driver: C:\WINDOWS\system32\lxss\lib\libnvidia-ml.so.1, 4/23/2026 05:12:42, 285016 bytes Driver: C:\WINDOWS\system32\lxss\lib\libnvidia-ngx.so.1, 4/23/2026 05:12:42, 4594744 bytes Driver: C:\WINDOWS\system32\lxss\lib\libnvidia-opticalflow.so, 12/2/2025 11:55:47, 67608 bytes Driver: C:\WINDOWS\system32\lxss\lib\libnvidia-opticalflow.so.1, 12/2/2025 11:55:47, 67608 bytes Driver: C:\WINDOWS\system32\lxss\lib\libnvoptix.so.1, 8/21/2025 23:35:54, 10056 bytes Driver: C:\WINDOWS\system32\lxss\lib\libnvwgf2umx.so, 4/23/2026 05:12:42, 56381952 bytes Driver: C:\WINDOWS\system32\lxss\lib\nvidia-ngx-updater, 4/23/2026 05:12:42, 5092480 bytes Driver: C:\WINDOWS\system32\lxss\lib\nvidia-smi, 4/23/2026 05:12:42, 828384 bytes Driver: C:\WINDOWS\system32\DRIVERS\NVIDIA Corporation\license.txt, 3/5/2026 00:46:36, 55339 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\_nvngx.dll, 32.00.0015.9636 (English), 4/23/2026 18:45:18, 1421544 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvdirectsr.dll, 310.02.0001.0000 (English), 4/23/2026 18:39:36, 25025768 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvngx.dll, 30.00.0014.9516 (English), 4/23/2026 18:41:22, 488824 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvngx_dlssg.dll, 310.02.0001.0000 (English), 4/23/2026 18:41:24, 9299632 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvngx_update.exe, 32.00.0015.9636 (English), 4/23/2026 18:41:26, 1020648 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\NvCamera\FreqTransfer32.exe, 4/23/2026 18:45:32, 3744488 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\NvCamera\FreqTransfer64.exe, 4/23/2026 18:45:34, 4068072 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\NvCamera\GreenScreenBG01.jpg, 4/23/2026 05:12:42, 281528 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\NvCamera\GreenScreenBG02.jpg, 4/23/2026 05:12:42, 499736 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\NvCamera\HighresBlender32.exe, 4/23/2026 18:45:34, 3829480 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\NvCamera\HighresBlender64.exe, 4/23/2026 18:45:34, 4158696 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\NvCamera\NvCamera32.dll, 7.01.0000.0000 (English), 4/23/2026 18:45:36, 8265624 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\NvCamera\NvCamera64.dll, 7.01.0000.0000 (English), 4/23/2026 18:45:36, 8799720 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\NvCamera\NvCameraEnable.exe, 4/23/2026 18:45:38, 384232 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\NvCamera\NvImageConvert32.exe, 4/23/2026 18:45:38, 3760872 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\NvCamera\NvImageConvert64.exe, 4/23/2026 18:45:38, 4057832 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\NvCamera\ReShadeFXC32.exe, 2.00.0000.0000 (English), 4/23/2026 18:45:40, 869608 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\NvCamera\ReShadeFXC64.exe, 2.00.0000.0000 (English), 4/23/2026 18:45:40, 958184 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\NvCamera\ShotWithGeforce518x32.rgba, 4/23/2026 05:12:42, 66304 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\NvCamera\SphericalEquirect32.exe, 4/23/2026 18:45:42, 3583208 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\NvCamera\SphericalEquirect64.exe, 4/23/2026 18:45:42, 3827432 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\NvCamera\Sticker01.png, 4/23/2026 05:12:42, 49695 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\NvCamera\Sticker02.png, 4/23/2026 05:12:42, 474002 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\NvCamera\Sticker03.png, 4/23/2026 05:12:42, 380006 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\NvCamera\Sticker04.png, 4/23/2026 05:12:42, 86881 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\NvCamera\Sticker05.png, 4/23/2026 05:12:42, 59304 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\NvCamera\Sticker06.png, 4/23/2026 05:12:42, 13547 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\NvCamera\Sticker07.png, 4/23/2026 05:12:42, 6342 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\NvCamera\Sticker08.png, 4/23/2026 05:12:42, 96493 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\NvCamera\d3dcompiler_47_32.dll, 10.00.10150.0000 (English), 4/23/2026 18:45:30, 3710696 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\NvCamera\d3dcompiler_47_64.dll, 10.00.10150.0000 (English), 4/23/2026 18:45:32, 4472552 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\NvCamera\scratches.jpg, 4/23/2026 05:12:42, 346354 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\NvCamera\tools_licenses.txt, 4/23/2026 05:12:42, 15970 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\NvCamera\ui.tga, 4/23/2026 05:12:42, 121321 bytes Driver: C:\WINDOWS\system32\MCU.exe, 1.01.5204.20580 (English), 4/23/2026 18:38:28, 853736 bytes Driver: C:\WINDOWS\system32\nvdebugdump.exe, 6.14.0015.9636 (English), 4/23/2026 18:39:28, 469736 bytes Driver: C:\WINDOWS\system32\nvidia-smi.exe, 8.17.0015.9636 (English), 4/23/2026 18:40:52, 1624808 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvopencl32.dll, 32.00.0015.9636 (English), 4/23/2026 18:42:00, 31086312 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvopencl64.dll, 32.00.0015.9636 (English), 4/23/2026 18:42:08, 30674664 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvlddmkm.sys, 32.00.0015.9636 (English), 4/23/2026 18:40:58, 105733352 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvvm32.dll, 32.00.0015.9636 (English), 4/23/2026 18:44:16, 60225256 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvvm64.dll, 32.00.0015.9636 (English), 4/23/2026 18:44:32, 68395240 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvvm70.dll, 6.14.0011.9000 (English), 4/23/2026 18:44:50, 18980072 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\NvMemMapStorage.dll, 4/23/2026 18:40:12, 1002944 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\NvMemMapStorageax.dll, 4/23/2026 18:40:14, 1398784 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\NvMemMapStorageaxec.dll, 4/23/2026 18:40:14, 2132408 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\NvMemMapStoragex.dll, 4/23/2026 18:40:16, 1283496 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\NvOSC.exe, 4/23/2026 18:42:32, 3233512 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\NvPresent64.dll, 4/23/2026 18:42:34, 8355048 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\gsp_ga10x.bin, 4/23/2026 05:12:42, 72853488 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\gsp_tu10x.bin, 4/23/2026 05:12:42, 30045056 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\libcuda.so.1.1, 4/23/2026 05:12:42, 25268528 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\libcuda_loader.so, 4/23/2026 05:12:42, 183752 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\libcudadebugger.so.1, 4/23/2026 05:12:42, 11732120 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\libnvcuvid.so.1, 4/23/2026 05:12:42, 24988448 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\libnvdxdlkernels.so, 4/23/2026 05:12:42, 154232352 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\libnvdxgdmal.so.1, 4/23/2026 05:12:42, 67656 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\libnvidia-encode.so.1, 4/23/2026 05:12:42, 272528 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\libnvidia-gpucomp.so, 4/23/2026 05:12:42, 93944648 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\libnvidia-ml.so.1, 4/23/2026 05:12:42, 2265120 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\libnvidia-ml_loader.so, 4/23/2026 05:12:42, 285016 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\libnvidia-nvvm.so.4, 4/23/2026 05:12:42, 23128792 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\libnvidia-nvvm70.so.4, 4/23/2026 05:12:42, 24821264 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\libnvidia-opticalflow.so.1, 4/23/2026 05:12:42, 67608 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\libnvidia-ptxjitcompiler.so.1, 4/23/2026 05:12:42, 38095824 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\libnvidia-tileiras.so, 4/23/2026 05:12:42, 97276536 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\libnvoptix_loader.so.1, 4/23/2026 05:12:42, 10056 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\libnvvamanager.so.1, 4/23/2026 05:12:42, 26848 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\libnvwgf2umx.so, 4/23/2026 05:12:42, 56381952 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nv-vk64.json, 4/23/2026 05:12:42, 1189 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nv-vksc64.json, 4/23/2026 05:12:42, 1189 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvAIDVC.dll, 32.00.0015.9636 (English), 4/23/2026 18:38:32, 2891496 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvAIDVCx.dll, 32.00.0015.9636 (English), 4/23/2026 18:38:32, 2998504 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvAIHDR.dll, 32.00.0015.9636 (English), 4/23/2026 18:38:36, 3985416 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvAIHDRx.dll, 32.00.0015.9636 (English), 4/23/2026 18:38:38, 4117960 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvAIVPx.dll, 32.00.0015.9636 (English), 4/23/2026 18:38:34, 9327848 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvDecMFTMjpeg.dll, 32.00.0015.9636 (English), 4/23/2026 18:39:30, 511720 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvDecMFTMjpegx.dll, 32.00.0015.9636 (English), 4/23/2026 18:39:30, 667880 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvEncMFTH264.dll, 32.00.0015.9636 (English), 4/23/2026 18:40:24, 875752 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvEncMFTH264x.dll, 32.00.0015.9636 (English), 4/23/2026 18:40:26, 1121000 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvEncMFTav1.dll, 32.00.0015.9636 (English), 4/23/2026 18:40:22, 867560 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvEncMFTav1x.dll, 32.00.0015.9636 (English), 4/23/2026 18:40:24, 1111784 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvEncMFThevc.dll, 32.00.0015.9636 (English), 4/23/2026 18:40:26, 886504 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvEncMFThevcx.dll, 32.00.0015.9636 (English), 4/23/2026 18:40:28, 1137896 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvcubins.bin, 4/23/2026 05:12:42, 73564436 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvcuda32.dll, 32.00.0015.9636 (English), 4/23/2026 18:38:42, 34103528 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvcuda64.dll, 32.00.0015.9636 (English), 4/23/2026 18:38:52, 29709544 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvcudaETW.xml, 4/23/2026 05:12:42, 1006 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvcudart_hybrid64.dll, 6.14.0011.13020 (English), 4/23/2026 18:39:04, 1140968 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvd3dumx.dll, 32.00.0015.9636 (English), 4/23/2026 18:39:06, 41455104 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvdlistx.dll, 32.00.0015.9636 (English), 4/23/2026 18:39:18, 243024 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvdlppx.dll, 32.00.0015.9636 (English), 4/23/2026 18:39:20, 25398304 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvdxdlkernels.dll, 32.00.0015.9636 (English), 4/23/2026 18:39:50, 174441704 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvdxgdmal32.dll, 4/23/2026 18:39:50, 493800 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvdxgdmal64.dll, 4/23/2026 18:39:52, 626408 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvdxgml.dll, 32.00.0015.9636 (English), 4/23/2026 18:39:54, 106022120 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvgpucomp32.dll, 32.00.0015.9636 (English), 4/23/2026 18:39:28, 68157736 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvgpucomp64.dll, 32.00.0015.9636 (English), 4/23/2026 18:39:50, 83757880 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvidia-smi, 4/23/2026 05:12:42, 828384 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvldumdx.dll, 32.00.0015.9636 (English), 4/23/2026 18:40:12, 818088 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvml.dll, 8.17.0015.9636 (English), 4/23/2026 18:41:20, 3654888 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvobjectloader64.dll, 4/23/2026 18:41:28, 20424424 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvoglv64.dll, 32.00.0015.9636 (English), 4/23/2026 18:41:46, 46576872 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvoptix.bin, 4/23/2026 05:12:42, 48744640 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvoptix.dll, 9.01.0000.0000 (English), 4/23/2026 18:42:18, 49733352 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvppe.dll, 32.00.0015.9636 (English), 4/23/2026 18:40:18, 1336440 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvppex.dll, 32.00.0015.9636 (English), 4/23/2026 18:40:18, 7599672 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvptxJitCompiler32.dll, 32.00.0015.9636 (English), 4/23/2026 18:42:42, 24002792 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvptxJitCompiler64.dll, 32.00.0015.9636 (English), 4/23/2026 18:42:50, 27698408 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvrtum64.dll, 32.00.0015.9636 (English), 4/23/2026 18:43:00, 51163880 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvtileiras64.dll, 4/23/2026 18:43:42, 72739560 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvvamanager64.dll, 4/23/2026 18:44:04, 551144 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvvkscv64.dll, 32.00.0015.9636 (English), 4/23/2026 18:44:12, 11799784 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvwgf2umx.dll, 32.00.0015.9636 (English), 4/23/2026 18:40:42, 88385616 bytes Driver: C:\WINDOWS\system32\NvFBC64.dll, 6.14.0015.9636 (English), 4/23/2026 18:40:32, 2329832 bytes Driver: C:\WINDOWS\system32\NvIFR64.dll, 6.14.0015.9636 (English), 4/23/2026 18:40:54, 1584872 bytes Driver: C:\WINDOWS\system32\OpenCL.dll, 3.00.0006.0000 (English), 4/23/2026 18:45:08, 478952 bytes Driver: C:\WINDOWS\system32\nvEncodeAPI64.dll, 32.00.0015.9636 (English), 4/23/2026 18:40:30, 1067240 bytes Driver: C:\WINDOWS\system32\nvapi64.dll, 32.00.0015.9636 (English), 4/23/2026 18:38:42, 5517504 bytes Driver: C:\WINDOWS\system32\nvcuda.dll, 32.00.0015.9636 (English), 4/23/2026 18:39:10, 4466920 bytes Driver: C:\WINDOWS\system32\nvcudadebugger.dll, 0.00.0000.0000 (English), 4/23/2026 18:39:02, 5674216 bytes Driver: C:\WINDOWS\system32\nvcuvid.dll, 7.17.0015.9636 (English), 4/23/2026 18:39:20, 29138664 bytes Driver: C:\WINDOWS\system32\nvidia-pcc.exe, 4/23/2026 18:40:44, 28071144 bytes Driver: C:\WINDOWS\system32\nvinfo.pb, 4/23/2026 05:12:42, 162176 bytes Driver: C:\WINDOWS\system32\nvml.dll, 8.17.0015.9636 (English), 4/23/2026 18:41:22, 1391848 bytes Driver: C:\WINDOWS\system32\nvofapi64.dll, 32.00.0015.9636 (English), 4/23/2026 18:41:36, 676584 bytes Driver: C:\WINDOWS\system32\vulkan-1-999-0-0-0.dll, 1.04.0321.0000 (English), 4/23/2026 18:45:12, 1625648 bytes Driver: C:\WINDOWS\system32\vulkan-1.dll, 1.04.0321.0000 (English), 4/23/2026 18:45:12, 1625648 bytes Driver: C:\WINDOWS\system32\vulkaninfo-1-999-0-0-0.exe, 1.04.0321.0000 (English), 4/23/2026 18:45:14, 2421296 bytes Driver: C:\WINDOWS\system32\vulkaninfo.exe, 1.04.0321.0000 (English), 4/23/2026 18:45:14, 2421296 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nv-vk32.json, 4/23/2026 05:12:42, 1189 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvIccAdvancedColorIdentity.icm, 4/23/2026 05:12:42, 3288 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvd3dum.dll, 32.00.0015.9636 (English), 4/23/2026 18:38:46, 65206072 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvdispco64.exe, 1.00.0016.0000 (English), 4/23/2026 18:39:42, 1740520 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvdlist.dll, 32.00.0015.9636 (English), 4/23/2026 18:39:16, 205496 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvldumd.dll, 32.00.0015.9636 (English), 4/23/2026 18:40:10, 652352 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvoglv32.dll, 32.00.0015.9636 (English), 4/23/2026 18:41:38, 26559208 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvtileiras32.dll, 4/23/2026 18:43:26, 57435368 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\nvwgf2um.dll, 32.00.0015.9636 (English), 4/23/2026 18:40:24, 58784984 bytes Driver: C:\WINDOWS\SysWow64\NvFBC.dll, 6.14.0015.9636 (English), 4/23/2026 18:40:32, 1725160 bytes Driver: C:\WINDOWS\SysWow64\NvIFR.dll, 6.14.0015.9636 (English), 4/23/2026 18:40:54, 1232616 bytes Driver: C:\WINDOWS\SysWow64\OpenCL.dll, 3.00.0006.0000 (English), 4/23/2026 18:45:08, 375016 bytes Driver: C:\WINDOWS\SysWow64\nvEncodeAPI.dll, 32.00.0015.9636 (English), 4/23/2026 18:40:30, 821480 bytes Driver: C:\WINDOWS\SysWow64\nvapi.dll, 32.00.0015.9636 (English), 4/23/2026 18:38:40, 5014056 bytes Driver: C:\WINDOWS\SysWow64\nvcuda.dll, 32.00.0015.9636 (English), 4/23/2026 18:39:06, 8441064 bytes Driver: C:\WINDOWS\SysWow64\nvcuvid.dll, 7.17.0015.9636 (English), 4/23/2026 18:39:12, 21714152 bytes Driver: C:\WINDOWS\SysWow64\nvofapi.dll, 32.00.0015.9636 (English), 4/23/2026 18:41:34, 510184 bytes Driver: C:\WINDOWS\SysWow64\vulkan-1-999-0-0-0.dll, 1.04.0321.0000 (English), 4/23/2026 18:45:12, 1434672 bytes Driver: C:\WINDOWS\SysWow64\vulkan-1.dll, 1.04.0321.0000 (English), 4/23/2026 18:45:12, 1434672 bytes Driver: C:\WINDOWS\SysWow64\vulkaninfo-1-999-0-0-0.exe, 1.04.0321.0000 (English), 4/23/2026 18:45:16, 1923120 bytes Driver: C:\WINDOWS\SysWow64\vulkaninfo.exe, 1.04.0321.0000 (English), 4/23/2026 18:45:16, 1923120 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_67995ceab8993b08\NvTelemetry64.dll, 14.03.0060.0000 (English), 4/23/2026 18:43:24, 4466272 bytes Name: PCI Express Root Port Device ID: PCI\VEN_1022&DEV_14DB&SUBSYS_88771043&REV_00\3&11583659&0&11 Driver: C:\WINDOWS\system32\DRIVERS\pci.sys, 10.00.26100.8328 (English), 4/30/2026 22:36:45, 611824 bytes Name: PCI Express Root Port Device ID: PCI\VEN_1022&DEV_14DB&SUBSYS_88771043&REV_00\3&11583659&0&0A Driver: C:\WINDOWS\system32\DRIVERS\pci.sys, 10.00.26100.8328 (English), 4/30/2026 22:36:45, 611824 bytes Name: PCI Express Root Port Device ID: PCI\VEN_1022&DEV_14DB&SUBSYS_88771043&REV_00\3&11583659&0&09 Driver: C:\WINDOWS\system32\DRIVERS\pci.sys, 10.00.26100.8328 (English), 4/30/2026 22:36:45, 611824 bytes Name: AMD USB 2.0 eXtensible Host Controller - 1.20 (Microsoft) Device ID: PCI\VEN_1022&DEV_15B8&SUBSYS_88771043&REV_00\4&89701DF&0&0043 Driver: C:\WINDOWS\system32\DRIVERS\USBXHCI.SYS, 10.00.26100.8328 (English), 4/30/2026 22:36:45, 787960 bytes Driver: C:\WINDOWS\system32\DRIVERS\UMDF\UsbXhciCompanion.dll, 10.00.26100.8328 (English), 4/30/2026 22:36:45, 183376 bytes Name: PCI standard host CPU bridge Device ID: PCI\VEN_1022&DEV_14E7&SUBSYS_00000000&REV_00\3&11583659&0&C7 Driver: n/a Name: High Definition Audio Controller Device ID: PCI\VEN_10DE&DEV_22E9&SUBSYS_000010DE&REV_A1\4&1BABDF5B&0&0109 Driver: C:\WINDOWS\system32\DRIVERS\hdaudbus.sys, 10.00.26100.8328 (English), 4/30/2026 22:36:45, 204800 bytes Driver: C:\WINDOWS\system32\DRIVERS\drmk.sys, 10.00.26100.8328 (English), 4/30/2026 22:36:45, 122880 bytes Driver: C:\WINDOWS\system32\DRIVERS\portcls.sys, 10.00.26100.8328 (English), 4/30/2026 22:36:45, 479232 bytes Name: AMD Radeon(TM) Graphics Device ID: PCI\VEN_1002&DEV_164E&SUBSYS_88771043&REV_CB\4&1EBE6A9C&0&0041 Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\ativvaxy_vcn3.dat, 3/17/2026 01:17:26, 579952 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\ativvaxy_vcn3_1.dat, 3/17/2026 01:17:26, 572112 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\ativvaxy_vcn4.dat, 3/17/2026 01:17:26, 395408 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\featuresync.dll, 32.00.21043.5001 (English), 3/17/2026 01:44:54, 1022992 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\amdept.dat, 3/17/2026 01:17:14, 36575 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\ativvaxy_vcn4_0_a.dat, 3/17/2026 01:17:26, 395408 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\ativvaxy_vcn4_0_a_1.dat, 3/17/2026 01:17:26, 395408 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\ativvaxy_vcn5.dat, 3/17/2026 01:17:26, 441296 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\amdgcf.dat, 3/17/2026 01:17:14, 879 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\ativvaxy_vg.dat, 3/17/2026 01:17:26, 572112 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\amdxcffx64.dll, 1.00.0000.40394 (English), 3/17/2026 01:44:12, 14509352 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\ativvaxy_cik.dat, 3/17/2026 01:17:26, 234676 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\ativvaxy_cik_nd.dat, 3/17/2026 01:17:26, 234416 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\amdihk64.dll, 2.00.0000.1788 (English), 3/17/2026 01:43:58, 256800 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\amdihk32.dll, 2.00.0000.1788 (English), 3/17/2026 01:44:16, 199176 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\ativvaxy_nv.dat, 3/17/2026 01:17:26, 404160 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\amdefctb.dat, 3/17/2026 01:17:14, 515238 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\amdxn32.dll, 32.00.21043.5001 (English), 3/17/2026 01:44:26, 36130312 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\amdxn64.dll, 32.00.21043.5001 (English), 3/17/2026 01:44:28, 40728584 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\atidx9loader32.dll, 32.00.21043.5001 (English), 3/17/2026 01:44:38, 118288 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\atidx9loader64.dll, 32.00.21043.5001 (English), 3/17/2026 01:44:40, 141840 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\ativvaxy_vg20.dat, 3/17/2026 01:17:26, 379200 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\ativvaxy_vg20_nd.dat, 3/17/2026 01:17:26, 382880 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\AMDADLXServ.exe, 1.00.0000.0000 (English), 3/17/2026 01:44:08, 179728 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\AMDADLXServPS.dll, 1.00.0000.0000 (English), 3/17/2026 01:44:08, 114192 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\AMDADLXServPS32.dll, 1.00.0000.0000 (English), 3/17/2026 01:44:10, 70672 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\amdave32.dll, 32.00.21043.5001 (English), 3/17/2026 01:43:50, 144704 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\amdave64.dll, 32.00.21043.5001 (English), 3/17/2026 01:43:50, 169344 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\ativvaxy_rv.dat, 3/17/2026 01:17:26, 366304 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\ativvaxy_gl_nd.dat, 3/17/2026 01:17:26, 380192 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\amduve64.dll, 18.04.0006.0000 (English), 3/17/2026 01:44:04, 201672 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\amduve32.dll, 18.04.0006.0000 (English), 3/17/2026 01:44:04, 168176 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\amfrtdrv32.dll, 32.00.21043.5001 (English), 3/17/2026 01:44:34, 30793736 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\amfrtdrv64.dll, 32.00.21043.5001 (English), 3/17/2026 01:44:36, 31930896 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\AMDh265Enc32.dll, 32.00.21043.5001 (English), 3/17/2026 01:43:54, 2024624 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\AMDh265Enc64.dll, 32.00.21043.5001 (English), 3/17/2026 01:43:54, 2143448 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\ativvaxy_stn_nd.dat, 3/17/2026 01:17:26, 278432 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\amdvlk32.dll, 32.00.21043.5001 (English), 3/17/2026 01:44:24, 88518672 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\amdvlk64.dll, 32.00.21043.5001 (English), 3/17/2026 01:44:26, 102716944 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\amd-vulkan32.json, 3/17/2026 01:17:14, 703 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\amd-vulkan64.json, 3/17/2026 01:17:14, 703 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\amdvlk_nexus.cab, 3/17/2026 01:17:22, 71491102 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\ativvaxy_el_nd.dat, 3/17/2026 01:17:26, 376224 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\amdicdxx.dat, 3/17/2026 01:17:14, 1657118 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\atiicdxx.dat, 3/17/2026 01:17:24, 737410 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\ativvaxy_FJ.dat, 3/17/2026 01:17:26, 268244 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\ativvaxy_FJ_nd.dat, 3/17/2026 01:17:26, 267984 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\amdxc32.dll, 32.00.21043.5001 (English), 3/17/2026 01:44:08, 73927336 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\amdxc64.dll, 32.00.21043.5001 (English), 3/17/2026 01:44:10, 82398392 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\ativvaxy_cz_nd.dat, 3/17/2026 01:17:26, 272928 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\AMDhwDecoder_32.dll, 32.00.21043.5001 (English), 3/17/2026 01:44:14, 251920 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\AMDhwDecoder_64.dll, 32.00.21043.5001 (English), 3/17/2026 01:44:16, 306192 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\AMDh264Enc32.dll, 32.00.21043.5001 (English), 3/17/2026 01:43:52, 2050584 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\AMDh264Enc64.dll, 32.00.21043.5001 (English), 3/17/2026 01:43:54, 2167360 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\ativvaxy_vi.dat, 3/17/2026 01:17:26, 325188 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\ativvaxy_vi_nd.dat, 3/17/2026 01:17:26, 324928 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\amdhdl32.dll, 3/17/2026 01:43:56, 122328 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\amdhdl64.dll, 3/17/2026 01:43:56, 147408 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\atiesrxx.exe, 32.00.21043.5001 (English), 3/17/2026 01:44:42, 672784 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\atiglpxx.dll, 32.00.21043.5001 (English), 3/17/2026 01:44:44, 166928 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\atig6pxx.dll, 32.00.21043.5001 (English), 3/17/2026 01:44:44, 201232 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\atioglxx.dll, 32.00.21043.5001 (English), 3/17/2026 01:44:48, 54843408 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\atio6axx.dll, 32.00.21043.5001 (English), 3/17/2026 01:44:46, 64288784 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\amdxx64.dll, 32.00.21043.5001 (English), 3/17/2026 01:44:18, 50424200 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\amdxx32.dll, 32.00.21043.5001 (English), 3/17/2026 01:44:16, 44805080 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\amdenc64.dll, 32.00.21043.5001 (English), 3/17/2026 01:43:52, 1462520 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\amdenc32.dll, 32.00.21043.5001 (English), 3/17/2026 01:44:12, 1244176 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\libamdenc64.so, 3/17/2026 01:17:28, 1653616 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\amf-pa-ml32.dll, 1.04.0037.0000 (English), 3/17/2026 01:44:32, 332304 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\amf-pa-ml64.dll, 1.04.0037.0000 (English), 3/17/2026 01:44:32, 370192 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\H9_EASU_sx1_10_sy1_10.bin, 3/17/2026 01:17:28, 373296 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\H9_EASU_sx1_20_sy1_20.bin, 3/17/2026 01:17:28, 373296 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\H9_EASU_sx1_30_sy1_30.bin, 3/17/2026 01:17:28, 373296 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\H9_EASU_sx1_40_sy1_40.bin, 3/17/2026 01:17:28, 373296 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\H9_EASU_sx1_50_sy1_50.bin, 3/17/2026 01:17:28, 373296 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\H9_EASU_sx1_60_sy1_60.bin, 3/17/2026 01:17:28, 373296 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\H9_EASU_sx1_70_sy1_70.bin, 3/17/2026 01:17:28, 373296 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\H9_EASU_sx1_80_sy1_80.bin, 3/17/2026 01:17:28, 373296 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\H9_EASU_sx1_90_sy1_90.bin, 3/17/2026 01:17:28, 373296 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\H9_EASU_sx2_00_sy2_00.bin, 3/17/2026 01:17:28, 373296 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\amd_opencl32.dll, 3.00.0006.0000 (English), 3/17/2026 01:44:28, 212496 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\amd_opencl64.dll, 3.00.0006.0000 (English), 3/17/2026 01:44:28, 247312 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\amdn1b64.dll, 8.17.0010.1097 (English), 3/17/2026 01:44:00, 20250368 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\amdn1b32.dll, 8.17.0010.1097 (English), 3/17/2026 01:44:00, 17082480 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\regamdcomp.exe, 32.00.21043.5001 (English), 3/17/2026 01:44:58, 301584 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\u0199286.inf_amd64_154faf4486d4b311\B025819\amdkmdag.sys, 32.00.21043.5001 (English), 3/17/2026 01:44:18, 102145040 bytes Driver: C:\WINDOWS\system32\atisamu64.dll, 32.00.21043.5001 (English), 3/17/2026 01:44:48, 190992 bytes Driver: C:\WINDOWS\system32\ativvsva.dat, 6/24/2025 13:48:00, 157144 bytes Driver: C:\WINDOWS\system32\ativvsvl.dat, 6/24/2025 13:48:00, 204952 bytes Driver: C:\WINDOWS\system32\atimpc64.dll, 32.00.21043.5001 (English), 3/17/2026 01:44:20, 158960 bytes Driver: C:\WINDOWS\system32\atimuixx.dll, 32.00.21043.5001 (English), 3/17/2026 01:44:44, 200712 bytes Driver: C:\WINDOWS\system32\EEURestart.exe, 3/17/2026 01:44:52, 526352 bytes Driver: C:\WINDOWS\system32\atiadlxx.dll, 32.00.21043.5001 (English), 3/17/2026 01:44:36, 2194960 bytes Driver: C:\WINDOWS\system32\amdadlx64.dll, 32.00.21043.5001 (English), 3/17/2026 01:44:08, 5221904 bytes Driver: C:\WINDOWS\system32\amdave64.dll, 32.00.21043.5001 (English), 3/17/2026 01:43:50, 169344 bytes Driver: C:\WINDOWS\system32\amdpcom64.dll, 32.00.21043.5001 (English), 3/17/2026 01:44:02, 158968 bytes Driver: C:\WINDOWS\system32\amfrt64.dll, 32.00.21043.5001 (English), 3/17/2026 01:44:34, 147472 bytes Driver: C:\WINDOWS\system32\AMDKernelEvents.man, 3/17/2026 01:17:14, 21730 bytes Driver: C:\WINDOWS\system32\vulkan-1.dll, 1.04.0321.0000 (English), 4/23/2026 18:45:12, 1625648 bytes Driver: C:\WINDOWS\system32\vulkan-1-999-0-0-0.dll, 1.04.0321.0000 (English), 4/23/2026 18:45:12, 1625648 bytes Driver: C:\WINDOWS\system32\vulkaninfo.exe, 1.04.0321.0000 (English), 4/23/2026 18:45:14, 2421296 bytes Driver: C:\WINDOWS\system32\vulkaninfo-1-999-0-0-0.exe, 1.04.0321.0000 (English), 4/23/2026 18:45:14, 2421296 bytes Driver: C:\WINDOWS\system32\GameManager64.dll, 3/17/2026 01:44:56, 631312 bytes Driver: C:\WINDOWS\system32\amdmiracast.dll, 3/17/2026 01:43:58, 541248 bytes Driver: C:\WINDOWS\system32\amdlvr64.dll, 1.00.0017.0000 (English), 3/17/2026 01:44:20, 1184272 bytes Driver: C:\WINDOWS\system32\amdxc64.dll, 3/17/2026 01:44:14, 142728 bytes Driver: C:\WINDOWS\system32\detoured.dll, 32.00.21043.5001 (English), 3/17/2026 01:44:22, 14208 bytes Driver: C:\WINDOWS\system32\amdgfxinfo64.dll, 3/17/2026 01:44:14, 592400 bytes Driver: C:\WINDOWS\system32\atieah64.exe, 3/17/2026 01:44:40, 559632 bytes Driver: C:\WINDOWS\system32\atieclxx.exe, 32.00.21043.5001 (English), 3/17/2026 01:44:42, 1069584 bytes Driver: C:\WINDOWS\system32\atiapfxx.blb, 3/17/2026 01:17:24, 548672 bytes Driver: C:\WINDOWS\system32\atidxx64.dll, 9.17.0011.0082 (English), 3/17/2026 01:44:18, 129432 bytes Driver: C:\WINDOWS\system32\atidemgy.dll, 4.05.9558.34331 (English), 3/17/2026 01:44:38, 473616 bytes Driver: C:\WINDOWS\system32\amdxc64.so, 3/17/2026 01:17:24, 126241728 bytes Driver: C:\WINDOWS\system32\amd-smi.exe, 3/17/2026 01:44:06, 3639312 bytes Driver: C:\WINDOWS\system32\amdsasrv64.dll, 1.05.0000.0000 (English), 3/17/2026 01:44:22, 1329168 bytes Driver: C:\WINDOWS\system32\amdsacli64.dll, 1.05.0000.0000 (English), 3/17/2026 01:44:04, 606472 bytes Driver: C:\WINDOWS\SysWOW64\atisamu32.dll, 32.00.21043.5001 (English), 3/17/2026 01:44:48, 150536 bytes Driver: C:\WINDOWS\SysWOW64\ativvsva.dat, 6/24/2025 13:48:00, 157144 bytes Driver: C:\WINDOWS\SysWOW64\ativvsvl.dat, 6/24/2025 13:48:00, 204952 bytes Driver: C:\WINDOWS\SysWOW64\atimpc32.dll, 32.00.21043.5001 (English), 3/17/2026 01:44:20, 131256 bytes Driver: C:\WINDOWS\SysWOW64\atiadlxx.dll, 32.00.21043.5001 (English), 3/17/2026 01:44:38, 1832464 bytes Driver: C:\WINDOWS\SysWOW64\atiadlxy.dll, 32.00.21043.5001 (English), 3/17/2026 01:44:38, 1832464 bytes Driver: C:\WINDOWS\SysWOW64\amdadlx32.dll, 32.00.21043.5001 (English), 3/17/2026 01:44:06, 5008400 bytes Driver: C:\WINDOWS\SysWOW64\amdave32.dll, 32.00.21043.5001 (English), 3/17/2026 01:43:50, 144704 bytes Driver: C:\WINDOWS\SysWOW64\amdpcom32.dll, 32.00.21043.5001 (English), 3/17/2026 01:44:02, 131256 bytes Driver: C:\WINDOWS\SysWOW64\amfrt32.dll, 32.00.21043.5001 (English), 3/17/2026 01:44:32, 122384 bytes Driver: C:\WINDOWS\SysWOW64\vulkan-1.dll, 1.04.0321.0000 (English), 4/23/2026 18:45:12, 1434672 bytes Driver: C:\WINDOWS\SysWOW64\vulkan-1-999-0-0-0.dll, 1.04.0321.0000 (English), 4/23/2026 18:45:12, 1434672 bytes Driver: C:\WINDOWS\SysWOW64\vulkaninfo.exe, 1.04.0321.0000 (English), 4/23/2026 18:45:16, 1923120 bytes Driver: C:\WINDOWS\SysWOW64\vulkaninfo-1-999-0-0-0.exe, 1.04.0321.0000 (English), 4/23/2026 18:45:16, 1923120 bytes Driver: C:\WINDOWS\SysWOW64\GameManager32.dll, 3/17/2026 01:44:54, 479248 bytes Driver: C:\WINDOWS\SysWOW64\amdlvr32.dll, 1.00.0017.0000 (English), 3/17/2026 01:44:18, 998416 bytes Driver: C:\WINDOWS\SysWOW64\amdxc32.dll, 3/17/2026 01:44:12, 118744 bytes Driver: C:\WINDOWS\SysWOW64\detoured.dll, 32.00.21043.5001 (English), 3/17/2026 01:44:22, 14208 bytes Driver: C:\WINDOWS\SysWOW64\amdgfxinfo32.dll, 3/17/2026 01:44:12, 450064 bytes Driver: C:\WINDOWS\SysWOW64\atieah32.exe, 3/17/2026 01:44:40, 422416 bytes Driver: C:\WINDOWS\SysWOW64\atiapfxx.blb, 3/17/2026 01:17:24, 548672 bytes Driver: C:\WINDOWS\SysWOW64\atidxx32.dll, 9.17.0011.0082 (English), 3/17/2026 01:44:18, 102520 bytes Driver: C:\WINDOWS\SysWOW64\amdsacli32.dll, 1.05.0000.0000 (English), 3/17/2026 01:44:20, 543248 bytes Driver: C:\WINDOWS\system32\AMD\amdkmpfd\amdkmpfd.stz, 25.10.0001.0000 (English), 3/17/2026 01:44:18, 117368 bytes Driver: C:\WINDOWS\system32\AMD\amdkmpfd\amdkmpfd.itz, 3/17/2026 01:17:14, 2064 bytes Driver: C:\WINDOWS\system32\AMD\amdkmpfd\amdkmpfd.ctz, 3/17/2026 01:17:14, 11324 bytes Name: Standard NVM Express Controller Device ID: PCI\VEN_144D&DEV_A80D&SUBSYS_A801144D&REV_00\4&2EC11BF&0&000A Driver: C:\WINDOWS\system32\DRIVERS\stornvme.sys, 10.00.26100.8328 (English), 4/30/2026 22:36:45, 316904 bytes Name: AMD USB 3.20 eXtensible Host Controller - 1.10 (Microsoft) Device ID: PCI\VEN_1022&DEV_43F7&SUBSYS_11421B21&REV_01\6&2AF91C3C&0&00600011 Driver: C:\WINDOWS\system32\DRIVERS\USBXHCI.SYS, 10.00.26100.8328 (English), 4/30/2026 22:36:45, 787960 bytes Driver: C:\WINDOWS\system32\DRIVERS\UMDF\UsbXhciCompanion.dll, 10.00.26100.8328 (English), 4/30/2026 22:36:45, 183376 bytes Name: PCI standard host CPU bridge Device ID: PCI\VEN_1022&DEV_14DA&SUBSYS_00000000&REV_00\3&11583659&0&40 Driver: n/a Name: PCI standard host CPU bridge Device ID: PCI\VEN_1022&DEV_14DA&SUBSYS_00000000&REV_00\3&11583659&0&20 Driver: n/a Name: PCI standard host CPU bridge Device ID: PCI\VEN_1022&DEV_14DA&SUBSYS_00000000&REV_00\3&11583659&0&18 Driver: n/a Name: PCI standard host CPU bridge Device ID: PCI\VEN_1022&DEV_14DA&SUBSYS_00000000&REV_00\3&11583659&0&10 Driver: n/a Name: PCI standard host CPU bridge Device ID: PCI\VEN_1022&DEV_14DA&SUBSYS_00000000&REV_00\3&11583659&0&08 Driver: n/a Name: PCI Express Downstream Switch Port Device ID: PCI\VEN_1022&DEV_43F5&SUBSYS_33281B21&REV_01\5&26BE588C&0&000011 Driver: C:\WINDOWS\system32\DRIVERS\pci.sys, 10.00.26100.8328 (English), 4/30/2026 22:36:45, 611824 bytes Name: Realtek 8852BE Wireless LAN WiFi 6 PCI-E NIC Device ID: PCI\VEN_10EC&DEV_B852&SUBSYS_54711A3B&REV_00\00E04CFFFE88520100 Driver: C:\WINDOWS\system32\DRIVERS\rtwlane601.sys, 6001.15.0153.0001 (English), 7/16/2024 01:41:18, 8900976 bytes Driver: C:\WINDOWS\system32\DRIVERS\rtldata601.txt, 7/16/2024 01:33:52, 394771 bytes Driver: C:\WINDOWS\System32\DriverStore\FileRepository\netvwifibus.inf_amd64_ab4e111fe8221178\vwifibus.sys, 10.00.26100.1150 (English), 9/4/2025 03:36:11, 65536 bytes Name: PCI standard host CPU bridge Device ID: PCI\VEN_1022&DEV_14E2&SUBSYS_00000000&REV_00\3&11583659&0&C2 Driver: n/a Name: AMD SMBUS Device ID: PCI\VEN_1022&DEV_790B&SUBSYS_88771043&REV_71\3&11583659&0&A0 Driver: n/a Name: PCI standard host CPU bridge Device ID: PCI\VEN_1022&DEV_14D8&SUBSYS_88771043&REV_00\3&11583659&0&00 Driver: n/a Name: PCI standard host CPU bridge Device ID: PCI\VEN_1022&DEV_14E5&SUBSYS_00000000&REV_00\3&11583659&0&C5 Driver: n/a Name: PCI Express Upstream Switch Port Device ID: PCI\VEN_1022&DEV_43F4&SUBSYS_33281B21&REV_01\4&383DA6B1&0&0011 Driver: C:\WINDOWS\system32\DRIVERS\pci.sys, 10.00.26100.8328 (English), 4/30/2026 22:36:45, 611824 bytes Name: PCI standard ISA bridge Device ID: PCI\VEN_1022&DEV_790E&SUBSYS_88771043&REV_51\3&11583659&0&A3 Driver: C:\WINDOWS\system32\DRIVERS\msisadrv.sys, 10.00.26100.1150 (English), 9/4/2025 03:36:11, 58672 bytes Name: Standard SATA AHCI Controller Device ID: PCI\VEN_1022&DEV_43F6&SUBSYS_10621B21&REV_01\6&37563465&0&00680011 Driver: C:\WINDOWS\system32\DRIVERS\storahci.sys, 10.00.26100.8328 (English), 4/30/2026 22:36:45, 234968 bytes Name: AMD USB 3.10 eXtensible Host Controller - 1.20 (Microsoft) Device ID: PCI\VEN_1022&DEV_15B6&SUBSYS_88771043&REV_00\4&1EBE6A9C&0&0341 Driver: C:\WINDOWS\system32\DRIVERS\USBXHCI.SYS, 10.00.26100.8328 (English), 4/30/2026 22:36:45, 787960 bytes Driver: C:\WINDOWS\system32\DRIVERS\UMDF\UsbXhciCompanion.dll, 10.00.26100.8328 (English), 4/30/2026 22:36:45, 183376 bytes Name: High Definition Audio Controller Device ID: PCI\VEN_1022&DEV_15E3&SUBSYS_88B91043&REV_00\4&1EBE6A9C&0&0641 Driver: C:\WINDOWS\system32\DRIVERS\hdaudbus.sys, 10.00.26100.8328 (English), 4/30/2026 22:36:45, 204800 bytes Driver: C:\WINDOWS\system32\DRIVERS\drmk.sys, 10.00.26100.8328 (English), 4/30/2026 22:36:45, 122880 bytes Driver: C:\WINDOWS\system32\DRIVERS\portcls.sys, 10.00.26100.8328 (English), 4/30/2026 22:36:45, 479232 bytes Name: PCI standard host CPU bridge Device ID: PCI\VEN_1022&DEV_14E0&SUBSYS_00000000&REV_00\3&11583659&0&C0 Driver: n/a Name: PCI Express Downstream Switch Port Device ID: PCI\VEN_1022&DEV_43F5&SUBSYS_33281B21&REV_01\5&26BE588C&0&680011 Driver: C:\WINDOWS\system32\DRIVERS\pci.sys, 10.00.26100.8328 (English), 4/30/2026 22:36:45, 611824 bytes Name: PCI standard host CPU bridge Device ID: PCI\VEN_1022&DEV_14E3&SUBSYS_00000000&REV_00\3&11583659&0&C3 Driver: n/a Name: Realtek Gaming 2.5GbE Family Controller Device ID: PCI\VEN_10EC&DEV_8125&SUBSYS_87D71043&REV_05\01000000684CE00000 Driver: C:\WINDOWS\System32\DriverStore\FileRepository\rt25cx21x64.inf_amd64_7a47c3c01d4b9cab\rt25cx21x64.sys, 1125.21.0903.2024 (English), 9/8/2024 23:54:24, 897472 bytes Name: PCI Express Downstream Switch Port Device ID: PCI\VEN_1022&DEV_43F5&SUBSYS_33281B21&REV_01\5&26BE588C&0&580011 Driver: C:\WINDOWS\system32\DRIVERS\pci.sys, 10.00.26100.8328 (English), 4/30/2026 22:36:45, 611824 bytes Name: PCI Express Downstream Switch Port Device ID: PCI\VEN_1022&DEV_43F5&SUBSYS_33281B21&REV_01\5&26BE588C&0&600011 Driver: C:\WINDOWS\system32\DRIVERS\pci.sys, 10.00.26100.8328 (English), 4/30/2026 22:36:45, 611824 bytes Name: PCI standard host CPU bridge Device ID: PCI\VEN_1022&DEV_14E6&SUBSYS_00000000&REV_00\3&11583659&0&C6 Driver: n/a Name: AMD USB 3.10 eXtensible Host Controller - 1.20 (Microsoft) Device ID: PCI\VEN_1022&DEV_15B7&SUBSYS_88771043&REV_00\4&1EBE6A9C&0&0441 Driver: C:\WINDOWS\system32\DRIVERS\USBXHCI.SYS, 10.00.26100.8328 (English), 4/30/2026 22:36:45, 787960 bytes Driver: C:\WINDOWS\system32\DRIVERS\UMDF\UsbXhciCompanion.dll, 10.00.26100.8328 (English), 4/30/2026 22:36:45, 183376 bytes Name: PCI Express Downstream Switch Port Device ID: PCI\VEN_1022&DEV_43F5&SUBSYS_33281B21&REV_01\5&26BE588C&0&480011 Driver: C:\WINDOWS\system32\DRIVERS\pci.sys, 10.00.26100.8328 (English), 4/30/2026 22:36:45, 611824 bytes Name: PCI Express Root Port Device ID: PCI\VEN_1022&DEV_14DD&SUBSYS_88771043&REV_00\3&11583659&0&43 Driver: C:\WINDOWS\system32\DRIVERS\pci.sys, 10.00.26100.8328 (English), 4/30/2026 22:36:45, 611824 bytes Name: PCI Express Root Port Device ID: PCI\VEN_1022&DEV_14DD&SUBSYS_88771043&REV_00\3&11583659&0&41 Driver: C:\WINDOWS\system32\DRIVERS\pci.sys, 10.00.26100.8328 (English), 4/30/2026 22:36:45, 611824 bytes Name: PCI Express Downstream Switch Port Device ID: PCI\VEN_1022&DEV_43F5&SUBSYS_33281B21&REV_01\5&26BE588C&0&500011 Driver: C:\WINDOWS\system32\DRIVERS\pci.sys, 10.00.26100.8328 (English), 4/30/2026 22:36:45, 611824 bytes Name: AMD PSP 11.0 Device Device ID: PCI\VEN_1022&DEV_1649&SUBSYS_88771043&REV_00\4&1EBE6A9C&0&0241 Driver: C:\WINDOWS\system32\DRIVERS\amdpsp.sys, 5.39.0000.0000 (English), 3/14/2025 04:30:12, 60224 bytes Driver: C:\WINDOWS\system32\amdtee_api.dll, 5.39.0000.0000 (English), 3/14/2025 04:30:14, 526144 bytes Driver: C:\WINDOWS\SysWOW64\amdtee_api.dll, 5.39.0000.0000 (English), 3/14/2025 04:30:14, 397656 bytes Name: PCI standard host CPU bridge Device ID: PCI\VEN_1022&DEV_14E1&SUBSYS_00000000&REV_00\3&11583659&0&C1 Driver: n/a Name: High Definition Audio Controller Device ID: PCI\VEN_1002&DEV_1640&SUBSYS_88771043&REV_00\4&1EBE6A9C&0&0141 Driver: C:\WINDOWS\system32\DRIVERS\hdaudbus.sys, 10.00.26100.8328 (English), 4/30/2026 22:36:45, 204800 bytes Driver: C:\WINDOWS\system32\DRIVERS\drmk.sys, 10.00.26100.8328 (English), 4/30/2026 22:36:45, 122880 bytes Driver: C:\WINDOWS\system32\DRIVERS\portcls.sys, 10.00.26100.8328 (English), 4/30/2026 22:36:45, 479232 bytes Name: PCI Express Downstream Switch Port Device ID: PCI\VEN_1022&DEV_43F5&SUBSYS_33281B21&REV_01\5&26BE588C&0&400011 Driver: C:\WINDOWS\system32\DRIVERS\pci.sys, 10.00.26100.8328 (English), 4/30/2026 22:36:45, 611824 bytes Name: PCI standard host CPU bridge Device ID: PCI\VEN_1022&DEV_14E4&SUBSYS_00000000&REV_00\3&11583659&0&C4 Driver: n/a ------------------ DirectShow Filters ------------------ DirectShow Filters: WMAudio Decoder DMO,0x00800800,1,1,WMADMOD.DLL,10.00.26100.7019 WMAPro over S/PDIF DMO,0x00600800,1,1,WMADMOD.DLL,10.00.26100.7019 WMSpeech Decoder DMO,0x00600800,1,1,WMSPDMOD.DLL,10.00.26100.7019 MP3 Decoder DMO,0x00600800,1,1,mp3dmod.dll,10.00.26100.4202 Mpeg4s Decoder DMO,0x00800001,1,1,mp4sdecd.dll,10.00.26100.7019 WMV Screen decoder DMO,0x00600800,1,1,wmvsdecd.dll,10.00.26100.7019 WMVideo Decoder DMO,0x00800001,1,1,wmvdecod.dll,10.00.26100.8328 Mpeg43 Decoder DMO,0x00800001,1,1,mp43decd.dll,10.00.26100.1150 Mpeg4 Decoder DMO,0x00800001,1,1,mpg4decd.dll,10.00.26100.2894 DV Muxer,0x00400000,0,0,qdv.dll,10.00.26100.5074 Color Space Converter,0x00400001,1,1,quartz.dll,10.00.26100.8328 WM ASF Reader,0x00400000,0,0,qasf.dll,12.00.26100.8115 AVI Splitter,0x00600000,1,1,quartz.dll,10.00.26100.8328 VGA 16 Color Ditherer,0x00400000,1,1,quartz.dll,10.00.26100.8328 SBE2MediaTypeProfile,0x00200000,0,0,sbe.dll,10.00.26100.8328 Microsoft DTV-DVD Video Decoder,0x005fffff,2,4,msmpeg2vdec.dll,10.00.26100.8328 AC3 Parser Filter,0x00600000,1,1,mpg2splt.ax,10.00.26100.3624 StreamBufferSink,0x00200000,0,0,sbe.dll,10.00.26100.8328 MJPEG Decompressor,0x00600000,1,1,quartz.dll,10.00.26100.8328 MPEG-I Stream Splitter,0x00600000,1,2,quartz.dll,10.00.26100.8328 SAMI (CC) Parser,0x00400000,1,1,quartz.dll,10.00.26100.8328 VBI Codec,0x00600000,1,4,VBICodec.ax,10.00.26100.5074 MPEG-2 Splitter,0x005fffff,1,0,mpg2splt.ax,10.00.26100.3624 Closed Captions Analysis Filter,0x00200000,2,5,cca.dll,10.00.26100.1882 SBE2FileScan,0x00200000,0,0,sbe.dll,10.00.26100.8328 Microsoft MPEG-2 Video Encoder,0x00200000,1,1,msmpeg2enc.dll,10.00.26100.7705 Internal Script Command Renderer,0x00800001,1,0,quartz.dll,10.00.26100.8328 MPEG Audio Decoder,0x03680001,1,1,quartz.dll,10.00.26100.8328 DV Splitter,0x00600000,1,2,qdv.dll,10.00.26100.5074 Video Mixing Renderer 9,0x00200000,1,0,quartz.dll,10.00.26100.8328 Microsoft MPEG-2 Encoder,0x00200000,2,1,msmpeg2enc.dll,10.00.26100.7705 ACM Wrapper,0x00600000,1,1,quartz.dll,10.00.26100.8328 Video Renderer,0x00800001,1,0,quartz.dll,10.00.26100.8328 MPEG-2 Video Stream Analyzer,0x00200000,0,0,sbe.dll,10.00.26100.8328 Line 21 Decoder,0x00600000,1,1,, Video Port Manager,0x00600000,2,1,quartz.dll,10.00.26100.8328 Video Renderer,0x00400000,1,0,quartz.dll,10.00.26100.8328 VPS Decoder,0x00200000,0,0,WSTPager.ax,10.00.26100.1150 WM ASF Writer,0x00400000,0,0,qasf.dll,12.00.26100.8115 VBI Surface Allocator,0x00600000,1,1,vbisurf.ax,10.00.26100.1150 File writer,0x00200000,1,0,qcap.dll,10.00.26100.5074 DVD Navigator,0x00200000,0,3,qdvd.dll,10.00.26100.8328 Overlay Mixer2,0x00200000,1,1,, AVI Draw,0x00600064,9,1,quartz.dll,10.00.26100.8328 Microsoft MPEG-2 Audio Encoder,0x00200000,1,1,msmpeg2enc.dll,10.00.26100.7705 WST Pager,0x00200000,1,1,WSTPager.ax,10.00.26100.1150 MPEG-2 Demultiplexer,0x00600000,1,1,mpg2splt.ax,10.00.26100.3624 DV Video Decoder,0x00800000,1,1,qdv.dll,10.00.26100.5074 SampleGrabber,0x00200000,1,1,qedit.dll,10.00.26100.8115 Null Renderer,0x00200000,1,0,qedit.dll,10.00.26100.8115 MPEG-2 Sections and Tables,0x005fffff,1,0,Mpeg2Data.ax,10.00.26100.4202 StreamBufferSource,0x00200000,0,0,sbe.dll,10.00.26100.8328 Smart Tee,0x00200000,1,2,qcap.dll,10.00.26100.5074 Overlay Mixer,0x00200000,0,0,, AVI Decompressor,0x00600000,1,1,quartz.dll,10.00.26100.8328 AVI/WAV File Source,0x00400000,0,2,quartz.dll,10.00.26100.8328 Wave Parser,0x00400000,1,1,quartz.dll,10.00.26100.8328 MIDI Parser,0x00400000,1,1,quartz.dll,10.00.26100.8328 Multi-file Parser,0x00400000,1,1,quartz.dll,10.00.26100.8328 File stream renderer,0x00400000,1,1,quartz.dll,10.00.26100.8328 Microsoft DTV-DVD Audio Decoder,0x005fffff,1,1,msmpeg2adec.dll,10.00.26100.8115 StreamBufferSink2,0x00200000,0,0,sbe.dll,10.00.26100.8328 AVI Mux,0x00200000,1,0,qcap.dll,10.00.26100.5074 Line 21 Decoder 2,0x00600002,1,1,quartz.dll,10.00.26100.8328 File Source (Async.),0x00400000,0,1,quartz.dll,10.00.26100.8328 File Source (URL),0x00400000,0,1,quartz.dll,10.00.26100.8328 Infinite Pin Tee Filter,0x00200000,1,1,qcap.dll,10.00.26100.5074 Enhanced Video Renderer,0x00200000,1,0,evr.dll,10.00.26100.8328 BDA MPEG2 Transport Information Filter,0x00200000,2,0,psisrndr.ax,10.00.26100.4202 MPEG Video Decoder,0x40000001,1,1,quartz.dll,10.00.26100.8328 WDM Streaming Tee/Splitter Devices: Tee/Sink-to-Sink Converter,0x00200000,1,1,ksproxy.ax,10.00.26100.8115 Video Compressors: WMVideo8 Encoder DMO,0x00600800,1,1,wmvxencd.dll,10.00.26100.8115 WMVideo9 Encoder DMO,0x00600800,1,1,wmvencod.dll,10.00.26100.7309 MSScreen 9 encoder DMO,0x00600800,1,1,wmvsencd.dll,10.00.26100.7019 DV Video Encoder,0x00200000,0,0,qdv.dll,10.00.26100.5074 MJPEG Compressor,0x00200000,0,0,quartz.dll,10.00.26100.8328 Audio Compressors: WM Speech Encoder DMO,0x00600800,1,1,WMSPDMOE.DLL,10.00.26100.7019 WMAudio Encoder DMO,0x00600800,1,1,WMADMOE.DLL,10.00.26100.7019 IMA ADPCM,0x00200000,1,1,quartz.dll,10.00.26100.8328 PCM,0x00200000,1,1,quartz.dll,10.00.26100.8328 Microsoft ADPCM,0x00200000,1,1,quartz.dll,10.00.26100.8328 GSM 6.10,0x00200000,1,1,quartz.dll,10.00.26100.8328 CCITT A-Law,0x00200000,1,1,quartz.dll,10.00.26100.8328 CCITT u-Law,0x00200000,1,1,quartz.dll,10.00.26100.8328 MPEG Layer-3,0x00200000,1,1,quartz.dll,10.00.26100.8328 Audio Capture Sources: Microphone (3- Flight Sounds - SOLO),0x00200000,0,0,qcap.dll,10.00.26100.5074 Headset (Bedroom TV),0x00200000,0,0,qcap.dll,10.00.26100.5074 Microphone (Steam Streaming Microphone),0x00200000,0,0,qcap.dll,10.00.26100.5074 Capture Input terminal (NexiGo N60 FHD Webcam Audio),0x00200000,0,0,qcap.dll,10.00.26100.5074 PBDA CP Filters: PBDA DTFilter,0x00600000,1,1,CPFilters.dll,10.00.26100.8328 PBDA ETFilter,0x00200000,0,0,CPFilters.dll,10.00.26100.8328 PBDA PTFilter,0x00200000,0,0,CPFilters.dll,10.00.26100.8328 Midi Renderers: Default MidiOut Device,0x00800000,1,0,quartz.dll,10.00.26100.8328 Microsoft GS Wavetable Synth,0x00200000,1,0,quartz.dll,10.00.26100.8328 WDM Streaming Capture Devices: Realtek HD Audio Mic input,0x00200000,1,1,ksproxy.ax,10.00.26100.8115 Realtek HD Audio Line input,0x00200000,1,1,ksproxy.ax,10.00.26100.8115 Realtek HD Audio Stereo input,0x00200000,1,1,ksproxy.ax,10.00.26100.8115 Flight Sounds - SOLO,0x00200000,2,2,ksproxy.ax,10.00.26100.8115 ,0x00000000,0,0,, Steam Streaming Microphone Wave,0x00200000,2,2,ksproxy.ax,10.00.26100.8115 NexiGo N60 FHD Webcam,0x00200000,1,1,ksproxy.ax,10.00.26100.8115 Steam Streaming Speakers Wave,0x00200000,2,2,ksproxy.ax,10.00.26100.8115 VDVAD Wave,0x00200000,2,2,ksproxy.ax,10.00.26100.8115 NexiGo N60 FHD Webcam Audio,0x00200000,1,1,ksproxy.ax,10.00.26100.8115 ,0x00000000,0,0,, ,0x00000000,0,0,, WDM Streaming Rendering Devices: ,0x00000000,0,0,, ,0x00000000,0,0,, Flight Sounds - SOLO,0x00200000,2,2,ksproxy.ax,10.00.26100.8115 Steam Streaming Speakers Wave,0x00200000,2,2,ksproxy.ax,10.00.26100.8115 Realtek HD Audio output,0x00200000,1,1,ksproxy.ax,10.00.26100.8115 VDVAD Wave,0x00200000,2,2,ksproxy.ax,10.00.26100.8115 ,0x00200000,1,1,, ButtKicker PRO,0x00200000,1,1,ksproxy.ax,10.00.26100.8115 ,0x00000000,0,0,, Steam Streaming Microphone Wave,0x00200000,2,2,ksproxy.ax,10.00.26100.8115 BDA Network Providers: Microsoft ATSC Network Provider,0x00200000,0,1,MSDvbNP.ax,10.00.26100.4202 Microsoft DVBC Network Provider,0x00200000,0,1,MSDvbNP.ax,10.00.26100.4202 Microsoft DVBS Network Provider,0x00200000,0,1,MSDvbNP.ax,10.00.26100.4202 Microsoft DVBT Network Provider,0x00200000,0,1,MSDvbNP.ax,10.00.26100.4202 Microsoft Network Provider,0x00200000,0,1,MSNP.ax,10.00.26100.5074 Video Capture Sources: NexiGo N60 FHD Webcam,0x00200000,1,1,ksproxy.ax,10.00.26100.8115 OBS Virtual Camera,0x00200000,0,1,obs-virtualcam-module64.dll,32.00.0002.0000 Multi-Instance Capable VBI Codecs: VBI Codec,0x00600000,1,4,VBICodec.ax,10.00.26100.5074 BDA Transport Information Renderers: BDA MPEG2 Transport Information Filter,0x00600000,2,0,psisrndr.ax,10.00.26100.4202 MPEG-2 Sections and Tables,0x00600000,1,0,Mpeg2Data.ax,10.00.26100.4202 WDM Streaming Communication Transforms: Tee/Sink-to-Sink Converter,0x00200000,1,1,ksproxy.ax,10.00.26100.8115 Audio Renderers: Headphones (Bedroom TV),0x00200000,1,0,quartz.dll,10.00.26100.8328 Default DirectSound Device,0x00800000,1,0,quartz.dll,10.00.26100.8328 Default WaveOut Device,0x00200000,1,0,quartz.dll,10.00.26100.8328 DirectSound: Speakers (ButtKicker PRO),0x00200000,1,0,quartz.dll,10.00.26100.8328 DirectSound: VG27AQ3A (NVIDIA High Definition Audio),0x00200000,1,0,quartz.dll,10.00.26100.8328 DirectSound: Speakers (Realtek(R) Audio),0x00200000,1,0,quartz.dll,10.00.26100.8328 DirectSound: LG TV SSCR2 (NVIDIA High Definition Audio),0x00200000,1,0,quartz.dll,10.00.26100.8328 DirectSound: Headphones (Bedroom TV),0x00200000,1,0,quartz.dll,10.00.26100.8328 DirectSound: Speakers (Steam Streaming Microphone),0x00200000,1,0,quartz.dll,10.00.26100.8328 DirectSound: Speakers (Steam Streaming Speakers),0x00200000,1,0,quartz.dll,10.00.26100.8328 DirectSound: Headphones (3- Flight Sounds - SOLO),0x00200000,1,0,quartz.dll,10.00.26100.8328 Speakers (ButtKicker PRO),0x00200000,1,0,quartz.dll,10.00.26100.8328 VG27AQ3A (NVIDIA High Definition Audio),0x00200000,1,0,quartz.dll,10.00.26100.8328 Speakers (Realtek(R) Audio),0x00200000,1,0,quartz.dll,10.00.26100.8328 LG TV SSCR2 (NVIDIA High Definition Audio),0x00200000,1,0,quartz.dll,10.00.26100.8328 Speakers (Steam Streaming Microphone),0x00200000,1,0,quartz.dll,10.00.26100.8328 Speakers (Steam Streaming Speakers),0x00200000,1,0,quartz.dll,10.00.26100.8328 Headphones (3- Flight Sounds - SOLO),0x00200000,1,0,quartz.dll,10.00.26100.8328 ---------------------------- Preferred DirectShow Filters ---------------------------- [HKEY_LOCAL_MACHINE\Software\Microsoft\DirectShow\Preferred] <media subtype GUID>, [<filter friendly name>, ]<filter CLSID> MEDIASUBTYPE_DVD_LPCM_AUDIO, Microsoft DTV-DVD Audio Decoder, CLSID_CMPEG2AudDecoderDS MEDIASUBTYPE_MPEG2_AUDIO, Microsoft DTV-DVD Audio Decoder, CLSID_CMPEG2AudDecoderDS MEDIASUBTYPE_MPEG2_VIDEO, Microsoft DTV-DVD Video Decoder, CLSID_CMPEG2VidDecoderDS {78766964-0000-0010-8000-00AA00389B71}, Mpeg4s Decoder DMO, CLSID_CMpeg4sDecMediaObject {7634706D-0000-0010-8000-00AA00389B71}, Mpeg4s Decoder DMO, CLSID_CMpeg4sDecMediaObject MEDIASUBTYPE_mp4s, Mpeg4s Decoder DMO, CLSID_CMpeg4sDecMediaObject {64697678-0000-0010-8000-00AA00389B71}, Mpeg4s Decoder DMO, CLSID_CMpeg4sDecMediaObject {58564944-0000-0010-8000-00AA00389B71}, Mpeg4s Decoder DMO, CLSID_CMpeg4sDecMediaObject {5634504D-0000-0010-8000-00AA00389B71}, Mpeg4s Decoder DMO, CLSID_CMpeg4sDecMediaObject MEDIASUBTYPE_MP4S, Mpeg4s Decoder DMO, CLSID_CMpeg4sDecMediaObject MEDIASUBTYPE_WMVR, WMVideo Decoder DMO, CLSID_CWMVDecMediaObject MEDIASUBTYPE_WMVP, WMVideo Decoder DMO, CLSID_CWMVDecMediaObject {44495658-0000-0010-8000-00AA00389B71}, Mpeg4s Decoder DMO, CLSID_CMpeg4sDecMediaObject MEDIASUBTYPE_WMVA, WMVideo Decoder DMO, CLSID_CWMVDecMediaObject MEDIASUBTYPE_mpg4, Mpeg4 Decoder DMO, CLSID_CMpeg4DecMediaObject MEDIASUBTYPE_MPG4, Mpeg4 Decoder DMO, CLSID_CMpeg4DecMediaObject MEDIASUBTYPE_h264, Microsoft DTV-DVD Video Decoder, CLSID_CMPEG2VidDecoderDS MEDIASUBTYPE_H264, Microsoft DTV-DVD Video Decoder, CLSID_CMPEG2VidDecoderDS MEDIASUBTYPE_WMV3, WMVideo Decoder DMO, CLSID_CWMVDecMediaObject MEDIASUBTYPE_mp43, Mpeg43 Decoder DMO, CLSID_CMpeg43DecMediaObject MEDIASUBTYPE_MP43, Mpeg43 Decoder DMO, CLSID_CMpeg43DecMediaObject MEDIASUBTYPE_m4s2, Mpeg4s Decoder DMO, CLSID_CMpeg4sDecMediaObject MEDIASUBTYPE_WMV2, WMVideo Decoder DMO, CLSID_CWMVDecMediaObject MEDIASUBTYPE_MSS2, WMV Screen decoder DMO, CLSID_CMSSCDecMediaObject MEDIASUBTYPE_M4S2, Mpeg4s Decoder DMO, CLSID_CMpeg4sDecMediaObject MEDIASUBTYPE_WVP2, WMVideo Decoder DMO, CLSID_CWMVDecMediaObject MEDIASUBTYPE_mp42, Mpeg4 Decoder DMO, CLSID_CMpeg4DecMediaObject MEDIASUBTYPE_MP42, Mpeg4 Decoder DMO, CLSID_CMpeg4DecMediaObject MEDIASUBTYPE_WMV1, WMVideo Decoder DMO, CLSID_CWMVDecMediaObject MEDIASUBTYPE_MSS1, WMV Screen decoder DMO, CLSID_CMSSCDecMediaObject MEDIASUBTYPE_WVC1, WMVideo Decoder DMO, CLSID_CWMVDecMediaObject MEDIASUBTYPE_AVC1, Microsoft DTV-DVD Video Decoder, CLSID_CMPEG2VidDecoderDS MEDIASUBTYPE_MPEG_LOAS, Microsoft DTV-DVD Audio Decoder, CLSID_CMPEG2AudDecoderDS MEDIASUBTYPE_MPEG_ADTS_AAC, Microsoft DTV-DVD Audio Decoder, CLSID_CMPEG2AudDecoderDS MEDIASUBTYPE_WMAUDIO_LOSSLESS, WMAudio Decoder DMO, CLSID_CWMADecMediaObject MEDIASUBTYPE_WMAUDIO3, WMAudio Decoder DMO, CLSID_CWMADecMediaObject WMMEDIASUBTYPE_WMAudioV8, WMAudio Decoder DMO, CLSID_CWMADecMediaObject MEDIASUBTYPE_MSAUDIO1, WMAudio Decoder DMO, CLSID_CWMADecMediaObject MEDIASUBTYPE_RAW_AAC1, Microsoft DTV-DVD Audio Decoder, CLSID_CMPEG2AudDecoderDS WMMEDIASUBTYPE_MP3, MP3 Decoder DMO, CLSID_CMP3DecMediaObject MEDIASUBTYPE_MPEG1Payload, MPEG Video Decoder, CLSID_CMpegVideoCodec MEDIASUBTYPE_MPEG1Packet, MPEG Video Decoder, CLSID_CMpegVideoCodec {6C737664-0000-0010-8000-00AA00389B71}, DV Video Decoder, CLSID_DVVideoCodec {64737664-0000-0010-8000-00AA00389B71}, DV Video Decoder, CLSID_DVVideoCodec {64687664-0000-0010-8000-00AA00389B71}, DV Video Decoder, CLSID_DVVideoCodec MEDIASUBTYPE_MJPG, MJPEG Decompressor, CLSID_MjpegDec {20637664-0000-0010-8000-00AA00389B71}, DV Video Decoder, CLSID_DVVideoCodec MEDIASUBTYPE_MPEG1AudioPayload, MPEG Audio Decoder, CLSID_CMpegAudioCodec WMMEDIASUBTYPE_WMSP2, WMSpeech Decoder DMO, CLSID_CWMSPDecMediaObject WMMEDIASUBTYPE_WMSP1, WMSpeech Decoder DMO, CLSID_CWMSPDecMediaObject --------------------------- Media Foundation File Versions --------------------------- mfcore.dll, 10.00.26100.8328 mfreadwrite.dll, 10.00.26100.8328 mfcaptureengine.dll, 10.00.26100.8328 mfsensorgroup.dll, 10.00.26100.8328 windows.media.dll, 10.00.26100.8328 frameserver.dll, 10.00.26100.8328 frameserverclient.dll, 10.00.26100.8328 frameservercore.dll, 10.00.26100.8328 frameservermonitorclient.dll, 10.00.26100.8328 frameservermonitor.dll, 10.00.26100.8328 --------------------------- Media Foundation Transforms --------------------------- [HKEY_LOCAL_MACHINE\Software\Classes\MediaFoundation\Transforms] <category>: <transform friendly name>, <transform CLSID>, <flags>, [<merit>, ]<file name>, <file version> Video Decoders: AMD D3D11 Hardware MFT Playback Decoder, {17796AEB-0F66-4663-B8FB-99CBEE0224CE}, 0x4, 8, amdhwdecoder_64.dll, 32.00.21043.5001 NVIDIA MJPEG Video Decoder MFT, {70F36578-2741-454F-B494-E8563DDD1CB4}, 0x4, 8, nvDecMFTMjpegx.dll, 32.00.0015.9636 AMD D3D11 Hardware MFT Playback Decoder, {17796AEB-0F66-4663-B8FB-99CBEE0224CE}, 0x4, 8, amdhwdecoder_64.dll, 32.00.21043.5001 Microsoft MPEG Video Decoder MFT, {2D709E52-123F-49B5-9CBC-9AF5CDE28FB9}, 0x1, msmpeg2vdec.dll, 10.00.26100.8328 DV Decoder MFT, {404A6DE5-D4D6-4260-9BC7-5A6CBD882432}, 0x1, mfdvdec.dll, 10.00.26100.5074 Mpeg4s Decoder MFT, CLSID_CMpeg4sDecMFT, 0x1, mp4sdecd.dll, 10.00.26100.7019 Microsoft H264 Video Decoder MFT, CLSID_CMSH264DecoderMFT, 0x1, msmpeg2vdec.dll, 10.00.26100.8328 WMV Screen decoder MFT, CLSID_CMSSCDecMediaObject, 0x1, wmvsdecd.dll, 10.00.26100.7019 WMVideo Decoder MFT, CLSID_CWMVDecMediaObject, 0x1, wmvdecod.dll, 10.00.26100.8328 MJPEG Decoder MFT, {CB17E772-E1CC-4633-8450-5617AF577905}, 0x1, mfmjpegdec.dll, 10.00.26100.8328 Mpeg43 Decoder MFT, CLSID_CMpeg43DecMediaObject, 0x1, mp43decd.dll, 10.00.26100.1150 Mpeg4 Decoder MFT, CLSID_CMpeg4DecMediaObject, 0x1, mpg4decd.dll, 10.00.26100.2894 MPEG2VideoExtension HEIFImageExtension AV1VideoExtension HEVCVideoExtension WebpImageExtension RawImageExtension FFmpegVideoDecoder VP9VideoExtensionDecoder Video Encoders: NVIDIA HEVC Encoder MFT, {362A74CD-E177-4916-A569-C3D4D99CE786}, 0x4, 8, nvEncMFThevcx.dll, 32.00.0015.9636 AMDh265Encoder, {5FD65104-A924-4835-AB71-09A223E3E37B}, 0x4, 8, amdh265enc64.dll, 32.00.21043.5001 NVIDIA H.264 Encoder MFT, {60F44560-5A20-4857-BFEF-D29773CB8040}, 0x4, 8, nvEncMFTH264x.dll, 32.00.0015.9636 NVIDIA AV1 Encoder MFT, {80B80715-8C5A-420D-B346-1A9DC40A5880}, 0x4, 8, nvEncMFTav1x.dll, 32.00.0015.9636 AMDh264Encoder, {ADC9BC80-0F41-46C6-AB75-D693D793597D}, 0x4, 8, amdh264enc64.dll, 32.00.21043.5001 AMDh265Encoder, {5FD65104-A924-4835-AB71-09A223E3E37B}, 0x4, 8, amdh265enc64.dll, 32.00.21043.5001 AMDh264Encoder, {ADC9BC80-0F41-46C6-AB75-D693D793597D}, 0x4, 8, amdh264enc64.dll, 32.00.21043.5001 Microsoft AVC DX12 Encoder H264 Encoder MFT, {6CA50344-051A-4DED-9779-A43305165E35}, 0x1, mfh264enc.dll, 10.00.26100.8328 WMVideo8 Encoder MFT, CLSID_CWMVXEncMediaObject, 0x1, wmvxencd.dll, 10.00.26100.8115 H263 Encoder MFT, {BC47FCFE-98A0-4F27-BB07-698AF24F2B38}, 0x1, mfh263enc.dll, 10.00.26100.3912 WMVideo9 Encoder MFT, CLSID_CWMV9EncMediaObject, 0x1, wmvencod.dll, 10.00.26100.7309 Microsoft MPEG-2 Video Encoder MFT, {E6335F02-80B7-4DC4-ADFA-DFE7210D20D5}, 0x2, msmpeg2enc.dll, 10.00.26100.7705 HEIFImageExtension HEVCVideoExtensionEncoder VP9VideoExtensionEncoder Video Effects: Frame Rate Converter, CLSID_CFrameRateConvertDmo, 0x1, mfvdsp.dll, 10.00.26100.5074 Resizer MFT, CLSID_CResizerDMO, 0x1, vidreszr.dll, 10.00.26100.7019 VideoStabilization MFT, {51571744-7FE4-4FF2-A498-2DC34FF74F1B}, 0x1, MSVideoDSP.dll, 10.00.26100.8328 Color Control, CLSID_CColorControlDmo, 0x1, mfvdsp.dll, 10.00.26100.5074 Color Converter MFT, CLSID_CColorConvertDMO, 0x1, colorcnv.dll, 10.00.26100.8115 Video Processor: Microsoft Video Processor MFT, {88753B26-5B24-49BD-B2E7-0C445C78C982}, 0x1, msvproc.dll, 10.00.26100.8328 Audio Decoders: Microsoft MpegH Decoder MFT, {134DEA6F-C2EB-4FA8-8281-356600A9814E}, 0x1, mfaudiocnv.dll, 10.00.26100.8328 MS AMRNB Decoder MFT, {265011AE-5481-4F77-A295-ABB6FFE8D63E}, 0x1, MSAMRNBDecoder.dll, 10.00.26100.1150 WMAudio Decoder MFT, CLSID_CWMADecMediaObject, 0x1, WMADMOD.DLL, 10.00.26100.7019 Microsoft AAC Audio Decoder MFT, CLSID_CMSAACDecMFT, 0x1, MSAudDecMFT.dll, 10.00.26100.8328 A-law Wrapper MFT, {36CB6E0C-78C1-42B2-9943-846262F31786}, 0x1, mfcore.dll, 10.00.26100.8328 GSM ACM Wrapper MFT, {4A76B469-7B66-4DD4-BA2D-DDF244C766DC}, 0x1, mfcore.dll, 10.00.26100.8328 WMAPro over S/PDIF MFT, CLSID_CWMAudioSpdTxDMO, 0x1, WMADMOD.DLL, 10.00.26100.7019 Microsoft Opus Audio Decoder MFT, {63E17C10-2D43-4C42-8FE3-8D8B63E46A6A}, 0x1, MSOpusDecoder.dll, 10.00.26100.1150 Microsoft FLAC Audio Decoder MFT, {6B0B3E6B-A2C5-4514-8055-AFE8A95242D9}, 0x1, MSFlacDecoder.dll, 10.00.26100.8328 Microsoft MPEG Audio Decoder MFT, {70707B39-B2CA-4015-ABEA-F8447D22D88B}, 0x1, MSAudDecMFT.dll, 10.00.26100.8328 WMSpeech Decoder DMO, CLSID_CWMSPDecMediaObject, 0x1, WMSPDMOD.DLL, 10.00.26100.7019 G711 Wrapper MFT, {92B66080-5E2D-449E-90C4-C41F268E5514}, 0x1, mfcore.dll, 10.00.26100.8328 IMA ADPCM ACM Wrapper MFT, {A16E1BFF-A80D-48AD-AECD-A35C005685FE}, 0x1, mfcore.dll, 10.00.26100.8328 Dolby AC-3 and E-AC-3 IEC-61937 converter MFT, {A7E6022F-F78F-4AA9-A49A-567A60332635}, 0x1, mfaudiocnv.dll, 10.00.26100.8328 MP3 Decoder MFT, CLSID_CMP3DecMediaObject, 0x1, mp3dmod.dll, 10.00.26100.4202 Microsoft ALAC Audio Decoder MFT, {C0CD7D12-31FC-4BBC-B363-7322EE3E1879}, 0x1, MSAlacDecoder.dll, 10.00.26100.1150 ADPCM ACM Wrapper MFT, {CA34FE0A-5722-43AD-AF23-05F7650257DD}, 0x1, mfcore.dll, 10.00.26100.8328 Dolby TrueHD IEC-61937 converter MFT, {CF5EEEDF-0E92-4B3B-A161-BD0FFE545E4B}, 0x1, mfaudiocnv.dll, 10.00.26100.8328 DTS IEC-61937 converter MFT, {D035E24C-C877-42D7-A795-2A8A339B472F}, 0x1, mfaudiocnv.dll, 10.00.26100.8328 FFmpegAudioDecoder Audio Encoders: LPCM DVD-Audio MFT, {068A8476-9229-4CC0-9D49-2FC699DCD30A}, 0x1, mfaudiocnv.dll, 10.00.26100.8328 MP3 Encoder ACM Wrapper MFT, {11103421-354C-4CCA-A7A3-1AFF9A5B6701}, 0x1, mfcore.dll, 10.00.26100.8328 Microsoft FLAC Audio Encoder MFT, {128509E9-C44E-45DC-95E9-C255B8F466A6}, 0x1, MSFlacEncoder.dll, 10.00.26100.8115 WM Speech Encoder DMO, CLSID_CWMSPEncMediaObject2, 0x1, WMSPDMOE.DLL, 10.00.26100.7019 MS AMRNB Encoder MFT, {2FAE8AFE-04A3-423A-A814-85DB454712B0}, 0x1, MSAMRNBEncoder.dll, 10.00.26100.1150 Microsoft MPEG-2 Audio Encoder MFT, {46A4DD5C-73F8-4304-94DF-308F760974F4}, 0x1, msmpeg2enc.dll, 10.00.26100.7705 WMAudio Encoder MFT, CLSID_CWMAEncMediaObject, 0x1, WMADMOE.DLL, 10.00.26100.7019 Microsoft AAC Audio Encoder MFT, {93AF0C51-2275-45D2-A35B-F2BA21CAED00}, 0x1, mfAACEnc.dll, 10.00.26100.8115 Microsoft ALAC Audio Encoder MFT, {9AB6A28C-748E-4B6A-BFFF-CC443B8E8FB4}, 0x1, MSAlacEncoder.dll, 10.00.26100.1150 Audio Effects: AEC, CLSID_CWMAudioAEC, 0x1, mfwmaaec.dll, 10.00.26100.1882 Resampler MFT, CLSID_CResamplerMediaObject, 0x1, resampledmo.dll, 10.00.26100.7019 Multiplexers: Microsoft MPEG2 Multiplexer MFT, {AB300F71-01AB-46D2-AB6C-64906CB03258}, 0x2, mfmpeg2srcsnk.dll, 10.00.26100.8328 Others: Microsoft H264 Video Remux (MPEG2TSToMP4) MFT, {05A47EBB-8BF0-4CBF-AD2F-3B71D75866F5}, 0x1, msmpeg2vdec.dll, 10.00.26100.8328 -------------------------------------------- Media Foundation Enabled Hardware Categories -------------------------------------------- [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows Media Foundation\HardwareMFT] EnableDecoders = 1 EnableEncoders = 1 ------------------------------------- Media Foundation Byte Stream Handlers ------------------------------------- [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows Media Foundation\ByteStreamHandlers] [HKEY_LOCAL_MACHINE\Software\Classes\MediaFoundation\MediaSources\Preferred] <file ext. or MIME type>, <handler CLSID>, <brief description>[, Preferred] .3g2, {271C3902-6095-4C45-A22F-20091816EE9E}, MPEG4 Byte Stream Handler, Preferred .3gp, {271C3902-6095-4C45-A22F-20091816EE9E}, MPEG4 Byte Stream Handler, Preferred .3gp2, {271C3902-6095-4C45-A22F-20091816EE9E}, MPEG4 Byte Stream Handler, Preferred .3gpp, {271C3902-6095-4C45-A22F-20091816EE9E}, MPEG4 Byte Stream Handler, Preferred .aac, {926F41F7-003E-4382-9E84-9E953BE10562}, ADTS Byte Stream Handler, Preferred .ac3, {46031BA1-083F-47D9-8369-23C92BDAB2FF}, AC-3 Byte Stream Handler, Preferred .adt, {926F41F7-003E-4382-9E84-9E953BE10562}, ADTS Byte Stream Handler, Preferred .adts, {926F41F7-003E-4382-9E84-9E953BE10562}, ADTS Byte Stream Handler, Preferred .am?, {EFE6208A-0A2C-49FA-8A01-3768B559B6DA}, MF AMRNB Media Source ByteStreamHandler .amr, {EFE6208A-0A2C-49FA-8A01-3768B559B6DA}, MF AMRNB Media Source ByteStreamHandler, Preferred .asf, {41457294-644C-4298-A28A-BD69F2C0CF3B}, ASF Byte Stream Handler, Preferred .avi, {7AFA253E-F823-42F6-A5D9-714BDE467412}, AVI Byte Stream Handler, Preferred .dvr-ms, {A8721937-E2FB-4D7A-A9EE-4EB08C890B6E}, MF SBE Source ByteStreamHandler .dvr-ms, {65964407-A5D8-4060-85B0-1CCD63F768E2}, dvr-ms Byte Stream Handler, Preferred .ec3, {46031BA1-083F-47D9-8369-23C92BDAB2FF}, AC-3 Byte Stream Handler, Preferred .flac, {0E41CFB8-0506-40F4-A516-77CC23642D91}, MF FLAC Media Source ByteStreamHandler, Preferred .m2t, {40871C59-AB40-471F-8DC3-1F259D862479}, MPEG2 Byte Stream Handler, Preferred .m2ts, {40871C59-AB40-471F-8DC3-1F259D862479}, MPEG2 Byte Stream Handler, Preferred .m4a, {271C3902-6095-4C45-A22F-20091816EE9E}, MPEG4 Byte Stream Handler, Preferred .m4v, {271C3902-6095-4C45-A22F-20091816EE9E}, MPEG4 Byte Stream Handler, Preferred .mk3d, {1F9A2C18-D89E-463E-B4F4-BB90152ACC64}, MKV Byte Stream Handler, Preferred .mka, {1F9A2C18-D89E-463E-B4F4-BB90152ACC64}, MKV Byte Stream Handler, Preferred .mks, {1F9A2C18-D89E-463E-B4F4-BB90152ACC64}, MKV Byte Stream Handler, Preferred .mkv, {1F9A2C18-D89E-463E-B4F4-BB90152ACC64}, MKV Byte Stream Handler, Preferred .mod, {40871C59-AB40-471F-8DC3-1F259D862479}, MPEG2 Byte Stream Handler, Preferred .mov, {271C3902-6095-4C45-A22F-20091816EE9E}, MPEG4 Byte Stream Handler, Preferred .mp2v, {40871C59-AB40-471F-8DC3-1F259D862479}, MPEG2 Byte Stream Handler, Preferred .mp3, {A82E50BA-8E92-41EB-9DF2-433F50EC2993}, MP3 Byte Stream Handler, Preferred .mp4, {271C3902-6095-4C45-A22F-20091816EE9E}, MPEG4 Byte Stream Handler, Preferred .mp4v, {271C3902-6095-4C45-A22F-20091816EE9E}, MPEG4 Byte Stream Handler, Preferred .mpa, {A82E50BA-8E92-41EB-9DF2-433F50EC2993}, MP3 Byte Stream Handler, Preferred .mpeg, {40871C59-AB40-471F-8DC3-1F259D862479}, MPEG2 Byte Stream Handler, Preferred .mpg, {40871C59-AB40-471F-8DC3-1F259D862479}, MPEG2 Byte Stream Handler, Preferred .mts, {40871C59-AB40-471F-8DC3-1F259D862479}, MPEG2 Byte Stream Handler, Preferred .nsc, {B084785C-DDE0-4D30-8CA8-05A373E185BE}, NSC Byte Stream Handler, Preferred .sami, {7A56C4CB-D678-4188-85A8-BA2EF68FA10D}, SAMI Byte Stream Handler, Preferred .smi, {7A56C4CB-D678-4188-85A8-BA2EF68FA10D}, SAMI Byte Stream Handler, Preferred .tod, {40871C59-AB40-471F-8DC3-1F259D862479}, MPEG2 Byte Stream Handler, Preferred .ts, {40871C59-AB40-471F-8DC3-1F259D862479}, MPEG2 Byte Stream Handler, Preferred .tts, {40871C59-AB40-471F-8DC3-1F259D862479}, MPEG2 Byte Stream Handler, Preferred .uvu, {271C3902-6095-4C45-A22F-20091816EE9E}, MPEG4 Byte Stream Handler, Preferred .vob, {40871C59-AB40-471F-8DC3-1F259D862479}, MPEG2 Byte Stream Handler, Preferred .wav, {42C9B9F5-16FC-47EF-AF22-DA05F7C842E3}, WAV Byte Stream Handler, Preferred .weba, {1F9A2C18-D89E-463E-B4F4-BB90152ACC64}, WEBM Byte Stream Handler, Preferred .webm, {1F9A2C18-D89E-463E-B4F4-BB90152ACC64}, WEBM Byte Stream Handler, Preferred .wm, {41457294-644C-4298-A28A-BD69F2C0CF3B}, ASF Byte Stream Handler, Preferred .wma, {41457294-644C-4298-A28A-BD69F2C0CF3B}, ASF Byte Stream Handler, Preferred .wmv, {41457294-644C-4298-A28A-BD69F2C0CF3B}, ASF Byte Stream Handler, Preferred .wtv, {65964407-A5D8-4060-85B0-1CCD63F768E2}, WTV Byte Stream Handler, Preferred audio/3gpp, {271C3902-6095-4C45-A22F-20091816EE9E}, MPEG4 Byte Stream Handler, Preferred audio/3gpp2, {271C3902-6095-4C45-A22F-20091816EE9E}, MPEG4 Byte Stream Handler, Preferred audio/aac, {926F41F7-003E-4382-9E84-9E953BE10562}, ADTS Byte Stream Handler, Preferred audio/aacp, {926F41F7-003E-4382-9E84-9E953BE10562}, ADTS Byte Stream Handler, Preferred audio/eac3, {46031BA1-083F-47D9-8369-23C92BDAB2FF}, AC-3 Byte Stream Handler, Preferred audio/flac, {0E41CFB8-0506-40F4-A516-77CC23642D91}, MF FLAC Media Source ByteStreamHandler, Preferred audio/L16, {3FFB3B8C-EB99-472B-8902-E1C1B05F07CF}, LPCM Byte Stream Handler, Preferred audio/mp3, {A82E50BA-8E92-41EB-9DF2-433F50EC2993}, MP3 Byte Stream Handler, Preferred audio/mp4, {271C3902-6095-4C45-A22F-20091816EE9E}, MPEG4 Byte Stream Handler, Preferred audio/MP4A-LATM, {271C3902-6095-4C45-A22F-20091816EE9E}, MPEG4 Byte Stream Handler, Preferred audio/mpa, {A82E50BA-8E92-41EB-9DF2-433F50EC2993}, MP3 Byte Stream Handler, Preferred audio/mpeg, {A82E50BA-8E92-41EB-9DF2-433F50EC2993}, MP3 Byte Stream Handler, Preferred audio/mpeg3, {A82E50BA-8E92-41EB-9DF2-433F50EC2993}, MP3 Byte Stream Handler, Preferred audio/vnd.dlna.adts, {926F41F7-003E-4382-9E84-9E953BE10562}, ADTS Byte Stream Handler, Preferred audio/vnd.dolby.dd-raw, {46031BA1-083F-47D9-8369-23C92BDAB2FF}, AC-3 Byte Stream Handler, Preferred audio/wav, {42C9B9F5-16FC-47EF-AF22-DA05F7C842E3}, WAV Byte Stream Handler, Preferred audio/webm, {1F9A2C18-D89E-463E-B4F4-BB90152ACC64}, WEBM Byte Stream Handler, Preferred audio/x-aac, {926F41F7-003E-4382-9E84-9E953BE10562}, ADTS Byte Stream Handler, Preferred audio/x-flac, {0E41CFB8-0506-40F4-A516-77CC23642D91}, MF FLAC Media Source ByteStreamHandler, Preferred audio/x-m4a, {271C3902-6095-4C45-A22F-20091816EE9E}, MPEG4 Byte Stream Handler, Preferred audio/x-matroska, {1F9A2C18-D89E-463E-B4F4-BB90152ACC64}, MKV Byte Stream Handler, Preferred audio/x-mp3, {A82E50BA-8E92-41EB-9DF2-433F50EC2993}, MP3 Byte Stream Handler, Preferred audio/x-mpeg, {A82E50BA-8E92-41EB-9DF2-433F50EC2993}, MP3 Byte Stream Handler, Preferred audio/x-ms-wma, {41457294-644C-4298-A28A-BD69F2C0CF3B}, ASF Byte Stream Handler, Preferred audio/x-wav, {42C9B9F5-16FC-47EF-AF22-DA05F7C842E3}, WAV Byte Stream Handler, Preferred video/3gpp, {271C3902-6095-4C45-A22F-20091816EE9E}, MPEG4 Byte Stream Handler, Preferred video/3gpp2, {271C3902-6095-4C45-A22F-20091816EE9E}, MPEG4 Byte Stream Handler, Preferred video/avi, {7AFA253E-F823-42F6-A5D9-714BDE467412}, AVI Byte Stream Handler, Preferred video/mp4, {271C3902-6095-4C45-A22F-20091816EE9E}, MPEG4 Byte Stream Handler, Preferred video/mpeg, {40871C59-AB40-471F-8DC3-1F259D862479}, MPEG2 Byte Stream Handler, Preferred video/msvideo, {7AFA253E-F823-42F6-A5D9-714BDE467412}, AVI Byte Stream Handler, Preferred video/vnd.dece.mp4, {271C3902-6095-4C45-A22F-20091816EE9E}, MPEG4 Byte Stream Handler, Preferred video/vnd.dlna.mpeg-tts, {40871C59-AB40-471F-8DC3-1F259D862479}, MPEG2 Byte Stream Handler, Preferred video/webm, {1F9A2C18-D89E-463E-B4F4-BB90152ACC64}, WEBM Byte Stream Handler, Preferred video/x-m4v, {271C3902-6095-4C45-A22F-20091816EE9E}, MPEG4 Byte Stream Handler, Preferred video/x-matroska, {1F9A2C18-D89E-463E-B4F4-BB90152ACC64}, MKV Byte Stream Handler, Preferred video/x-ms-asf, {41457294-644C-4298-A28A-BD69F2C0CF3B}, ASF Byte Stream Handler, Preferred video/x-ms-wm, {41457294-644C-4298-A28A-BD69F2C0CF3B}, ASF Byte Stream Handler, Preferred video/x-ms-wmv, {41457294-644C-4298-A28A-BD69F2C0CF3B}, ASF Byte Stream Handler, Preferred video/x-msvideo, {7AFA253E-F823-42F6-A5D9-714BDE467412}, AVI Byte Stream Handler, Preferred -------------------------------- Media Foundation Scheme Handlers -------------------------------- [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows Media Foundation\SchemeHandlers] [HKEY_LOCAL_MACHINE\Software\Classes\MediaFoundation\MediaSources\Preferred] <URL type>, <handler CLSID>, <brief description>[, Preferred] file:, {477EC299-1421-4BDD-971F-7CCB933F21AD}, File Scheme Handler, Preferred http:, {44CB442B-9DA9-49DF-B3FD-023777B16E50}, Http Scheme Handler http:, {9EC4B4F9-3029-45AD-947B-344DE2A249E2}, Urlmon Scheme Handler http:, {E9F4EBAB-D97B-463E-A2B1-C54EE3F9414D}, Net Scheme Handler, Preferred httpd:, {44CB442B-9DA9-49DF-B3FD-023777B16E50}, Http Scheme Handler, Preferred https:, {37A61C8B-7F8E-4D08-B12B-248D73E9AB4F}, Secure Http Scheme Handler, Preferred httpsd:, {37A61C8B-7F8E-4D08-B12B-248D73E9AB4F}, Secure Http Scheme Handler, Preferred httpt:, {E9F4EBAB-D97B-463E-A2B1-C54EE3F9414D}, Net Scheme Handler, Preferred httpu:, {E9F4EBAB-D97B-463E-A2B1-C54EE3F9414D}, Net Scheme Handler, Preferred mcast:, {E9F4EBAB-D97B-463E-A2B1-C54EE3F9414D}, Net Scheme Handler, Preferred mcrecv:, {FA6D33D4-9405-4BA5-9983-12604AC8E77A}, Miracast Sink Scheme Handler, Preferred mms:, {E9F4EBAB-D97B-463E-A2B1-C54EE3F9414D}, Net Scheme Handler, Preferred ms-appdata:, {CFC81939-3886-4ACF-9692-DA58037AE716}, MsAppData Scheme Handler, Preferred ms-appx-web:, {8DB0224B-3D65-4F6F-8E12-BEB4B78B8974}, MsAppxWeb Scheme Handler, Preferred ms-appx:, {8DB0224B-3D65-4F6F-8E12-BEB4B78B8974}, MsAppx Scheme Handler, Preferred ms-winsoundevent:, {F79A6BF9-7415-4CF3-AE10-4559509ABC3C}, Sound Event Scheme Handler, Preferred rtsp:, {E9F4EBAB-D97B-463E-A2B1-C54EE3F9414D}, Net Scheme Handler, Preferred rtsps:, {E9F4EBAB-D97B-463E-A2B1-C54EE3F9414D}, Net Scheme Handler, Preferred rtspt:, {E9F4EBAB-D97B-463E-A2B1-C54EE3F9414D}, Net Scheme Handler, Preferred rtspu:, {E9F4EBAB-D97B-463E-A2B1-C54EE3F9414D}, Net Scheme Handler, Preferred sdp:, {E9F4EBAB-D97B-463E-A2B1-C54EE3F9414D}, Net Scheme Handler, Preferred ------------------------------------- Preferred Media Foundation Transforms ------------------------------------- [HKEY_LOCAL_MACHINE\Software\Classes\MediaFoundation\Transforms\Preferred] <media subtype GUID>, [<transform friendly name>, ]<transform CLSID> {EB27CEC4-163E-4CA3-8B74-8E25F91B517E}, Dolby TrueHD IEC-61937 converter MFT, {CF5EEEDF-0E92-4B3B-A161-BD0FFE545E4B} {E06D8033-DB46-11CF-B4D1-00805F6CBBEA}, DTS IEC-61937 converter MFT, {D035E24C-C877-42D7-A795-2A8A339B472F} MFVideoFormat_MPEG2, Microsoft MPEG Video Decoder MFT, {2D709E52-123F-49B5-9CBC-9AF5CDE28FB9} {C2FE6F0A-4E3C-4DF1-9B60-50863091E4B9}, DTS IEC-61937 converter MFT, {D035E24C-C877-42D7-A795-2A8A339B472F} {A61AC364-AD0E-4744-89FF-213CE0DF8804}, DTS IEC-61937 converter MFT, {D035E24C-C877-42D7-A795-2A8A339B472F} {A2E58EB7-0FA9-48BB-A40C-FA0E156D0645}, DTS IEC-61937 converter MFT, {D035E24C-C877-42D7-A795-2A8A339B472F} {7C13C441-EBF8-4931-B678-800B19242236}, Microsoft MpegH Decoder MFT, {134DEA6F-C2EB-4FA8-8281-356600A9814E} {7634706D-0000-0010-8000-00AA00389B71}, Mpeg4s Decoder MFT, CLSID_CMpeg4sDecMFT {73616D72-767A-494D-B478-F29D25DC9037}, MS AMRNB Decoder MFT, {265011AE-5481-4F77-A295-ABB6FFE8D63E} MEDIASUBTYPE_mp4s, Mpeg4s Decoder MFT, CLSID_CMpeg4sDecMFT MFVideoFormat_DVSL, DV Decoder MFT, {404A6DE5-D4D6-4260-9BC7-5A6CBD882432} MFVideoFormat_DVSD, DV Decoder MFT, {404A6DE5-D4D6-4260-9BC7-5A6CBD882432} MFVideoFormat_DVHD, DV Decoder MFT, {404A6DE5-D4D6-4260-9BC7-5A6CBD882432} {63616C61-0000-0010-8000-00AA00389B71}, Microsoft ALAC Audio Decoder MFT, {C0CD7D12-31FC-4BBC-B363-7322EE3E1879} MFVideoFormat_MP4V, Mpeg4s Decoder MFT, CLSID_CMpeg4sDecMFT MFVideoFormat_MP4S, Mpeg4s Decoder MFT, CLSID_CMpeg4sDecMFT {53314356-0000-0010-8000-00AA00389B71}, WMVideo Decoder MFT, CLSID_CWMVDecMediaObject MEDIASUBTYPE_WMVR, WMVideo Decoder MFT, CLSID_CWMVDecMediaObject MEDIASUBTYPE_WMVP, WMVideo Decoder MFT, CLSID_CWMVDecMediaObject MFVideoFormat_MJPG, MJPEG Decoder MFT, {CB17E772-E1CC-4633-8450-5617AF577905} MEDIASUBTYPE_WMVA, WMVideo Decoder MFT, CLSID_CWMVDecMediaObject {3F40F4F0-5622-4FF8-B6D8-A17A584BEE5E}, Microsoft H264 Video Decoder MFT, CLSID_CMSH264DecoderMFT MEDIASUBTYPE_mpg4, Mpeg4 Decoder MFT, CLSID_CMpeg4DecMediaObject MEDIASUBTYPE_MPG4, Mpeg4 Decoder MFT, CLSID_CMpeg4DecMediaObject MFVideoFormat_H264, Microsoft H264 Video Decoder MFT, CLSID_CMSH264DecoderMFT MFVideoFormat_WMV3, WMVideo Decoder MFT, CLSID_CWMVDecMediaObject {33363248-0000-0010-8000-00AA00389B71}, Mpeg4s Decoder MFT, CLSID_CMpeg4sDecMFT MEDIASUBTYPE_mp43, Mpeg43 Decoder MFT, CLSID_CMpeg43DecMediaObject MFVideoFormat_MP43, Mpeg43 Decoder MFT, CLSID_CMpeg43DecMediaObject MEDIASUBTYPE_m4s2, Mpeg4s Decoder MFT, CLSID_CMpeg4sDecMFT MFVideoFormat_WMV2, WMVideo Decoder MFT, CLSID_CWMVDecMediaObject MFVideoFormat_MSS2, WMV Screen decoder MFT, CLSID_CMSSCDecMediaObject MFVideoFormat_M4S2, Mpeg4s Decoder MFT, CLSID_CMpeg4sDecMFT MEDIASUBTYPE_WVP2, WMVideo Decoder MFT, CLSID_CWMVDecMediaObject MEDIASUBTYPE_mp42, Mpeg4 Decoder MFT, CLSID_CMpeg4DecMediaObject MEDIASUBTYPE_MP42, Mpeg4 Decoder MFT, CLSID_CMpeg4DecMediaObject MFVideoFormat_WMV1, WMVideo Decoder MFT, CLSID_CWMVDecMediaObject MFVideoFormat_MSS1, WMV Screen decoder MFT, CLSID_CMSSCDecMediaObject MFVideoFormat_MPG1, Microsoft MPEG Video Decoder MFT, {2D709E52-123F-49B5-9CBC-9AF5CDE28FB9} MFVideoFormat_WVC1, WMVideo Decoder MFT, CLSID_CWMVDecMediaObject MFVideoFormat_DVC, DV Decoder MFT, {404A6DE5-D4D6-4260-9BC7-5A6CBD882432} {19EE97FE-1BE0-4255-A876-E99F53A42AE3}, Microsoft MpegH Decoder MFT, {134DEA6F-C2EB-4FA8-8281-356600A9814E} {0000F1AC-0000-0010-8000-00AA00389B71}, Microsoft FLAC Audio Decoder MFT, {6B0B3E6B-A2C5-4514-8055-AFE8A95242D9} {00007361-0000-0010-8000-00AA00389B71}, MS AMRNB Decoder MFT, {265011AE-5481-4F77-A295-ABB6FFE8D63E} {0000704F-0000-0010-8000-00AA00389B71}, Microsoft Opus Audio Decoder MFT, {63E17C10-2D43-4C42-8FE3-8D8B63E46A6A} {00006C61-0000-0010-8000-00AA00389B71}, Microsoft ALAC Audio Decoder MFT, {C0CD7D12-31FC-4BBC-B363-7322EE3E1879} {00002001-0000-0010-8000-00AA00389B71}, DTS IEC-61937 converter MFT, {D035E24C-C877-42D7-A795-2A8A339B472F} MFAudioFormat_AAC, Microsoft AAC Audio Decoder MFT, CLSID_CMSAACDecMFT MFAudioFormat_ADTS, Microsoft AAC Audio Decoder MFT, CLSID_CMSAACDecMFT MFAudioFormat_WMAudio_Lossless, WMAudio Decoder MFT, CLSID_CWMADecMediaObject MFAudioFormat_WMAudioV9, WMAudio Decoder MFT, CLSID_CWMADecMediaObject MFAudioFormat_WMAudioV8, WMAudio Decoder MFT, CLSID_CWMADecMediaObject MEDIASUBTYPE_MSAUDIO1, WMAudio Decoder MFT, CLSID_CWMADecMediaObject MEDIASUBTYPE_RAW_AAC1, Microsoft AAC Audio Decoder MFT, CLSID_CMSAACDecMFT MFAudioFormat_MP3, MP3 Decoder MFT, CLSID_CMP3DecMediaObject MFAudioFormat_MPEG, Microsoft MPEG Audio Decoder MFT, {70707B39-B2CA-4015-ABEA-F8447D22D88B} {00000031-0000-0010-8000-00AA00389B71}, GSM ACM Wrapper MFT, {4A76B469-7B66-4DD4-BA2D-DDF244C766DC} {00000011-0000-0010-8000-00AA00389B71}, IMA ADPCM ACM Wrapper MFT, {A16E1BFF-A80D-48AD-AECD-A35C005685FE} KSDATAFORMAT_SUBTYPE_MULAW, G711 Wrapper MFT, {92B66080-5E2D-449E-90C4-C41F268E5514} {00000006-0000-0010-8000-00AA00389B71}, A-law Wrapper MFT, {36CB6E0C-78C1-42B2-9943-846262F31786} KSDATAFORMAT_SUBTYPE_ADPCM, ADPCM ACM Wrapper MFT, {CA34FE0A-5722-43AD-AF23-05F7650257DD} WMMEDIASUBTYPE_WMSP2, WMSpeech Decoder DMO, CLSID_CWMSPDecMediaObject MFAudioFormat_MSP1, WMSpeech Decoder DMO, CLSID_CWMSPDecMediaObject ------------------------------------- Disabled Media Foundation Transforms ------------------------------------- [HKEY_LOCAL_MACHINE\Software\Classes\MediaFoundation\Transforms\DoNotUse] <transform CLSID> ------------------------ Disabled Media Sources ------------------------ [HKEY_LOCAL_MACHINE\Software\Classes\MediaFoundation\MediaSources\DoNotUse] <media source CLSID> --------------- EVR Power Information --------------- Current Setting: {5C67A112-A4C9-483F-B4A7-1D473BECAFDC} (Quality) Quality Flags: 2576 Enabled: Force throttling Allow half deinterlace Allow scaling Decode Power Usage: 100 Balanced Flags: 1424 Enabled: Force throttling Allow batching Force half deinterlace Force scaling Decode Power Usage: 50 PowerFlags: 1424 Enabled: Force throttling Allow batching Force half deinterlace Force scaling Decode Power Usage: 0 --------------- Diagnostics --------------- Windows Error Reporting: +++ WER0 +++: Fault bucket , type 0 Event Name: LiveKernelEvent Response: Not available Cab Id: 0 Problem signature: P1: 193 P2: 80e P3: ffff9208b4430140 P4: ffffbf0b248a4d60 P5: 0 P6: 10_0_26200 P7: 0_0 P8: 768_1 P9: P10: +++ WER1 +++: Fault bucket , type 0 Event Name: LiveKernelEvent Response: Not available Cab Id: 0 Problem signature: P1: 193 P2: 80e P3: ffffc18d3542a140 P4: ffffe5028dad28a0 P5: 0 P6: 10_0_26200 P7: 0_0 P8: 768_1 P9: P10: +++ WER2 +++: Fault bucket , type 0 Event Name: LiveKernelEvent Response: Not available Cab Id: 0 Problem signature: P1: 1b8 P2: a P3: 0 P4: 0 P5: 0 P6: 10_0_26200 P7: 0_0 P8: 768_1 P9: P10: +++ WER3 +++: Fault bucket , type 0 Event Name: LiveKernelEvent Response: Not available Cab Id: 0 Problem signature: P1: 1a8 P2: a P3: 0 P4: 0 P5: 0 P6: 10_0_26200 P7: 0_0 P8: 768_1 P9: P10: +++ WER4 +++: Fault bucket , type 0 Event Name: LiveKernelEvent Response: Not available Cab Id: 0 Problem signature: P1: 193 P2: 80e P3: ffffbd0b2e96e080 P4: ffff808a336a2010 P5: 0 P6: 10_0_26200 P7: 0_0 P8: 768_1 P9: P10: +++ WER5 +++: Fault bucket , type 0 Event Name: LiveKernelEvent Response: Not available Cab Id: 0 Problem signature: P1: 193 P2: 80e P3: ffff8e03bc3770c0 P4: ffffd7057d090730 P5: 0 P6: 10_0_26200 P7: 0_0 P8: 768_1 P9: P10: +++ WER6 +++: Fault bucket , type 0 Event Name: LiveKernelEvent Response: Not available Cab Id: 0 Problem signature: P1: 1a8 P2: a P3: 0 P4: 0 P5: 0 P6: 10_0_26200 P7: 0_0 P8: 768_1 P9: P10: +++ WER7 +++: Fault bucket , type 0 Event Name: LiveKernelEvent Response: Not available Cab Id: 0 Problem signature: P1: 1b8 P2: a P3: 0 P4: 0 P5: 0 P6: 10_0_26200 P7: 0_0 P8: 768_1 P9: P10: +++ WER8 +++: Fault bucket , type 0 Event Name: LiveKernelEvent Response: Not available Cab Id: 0 Problem signature: P1: 1b8 P2: a P3: 0 P4: 0 P5: 0 P6: 10_0_26200 P7: 0_0 P8: 768_1 P9: P10: +++ WER9 +++: Fault bucket , type 0 Event Name: BlueScreen Response: Not available Cab Id: 0 Problem signature: P1: 50 P2: ffff808a3cc030a0 P3: 0 P4: fffff80688efff09 P5: 2 P6: 10_0_26200 P7: 0_0 P8: 768_1 P9: P10:
Comments
No comments yet.
Loading comments...
Loading comments...
0 comments loaded
You need to join this project to comment on issues.
Join Project