-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathReport.html
executable file
·9146 lines (9103 loc) · 602 KB
/
Report.html
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<HTML>
<HEAD>
<META NAME="GENERATOR" CONTENT="AIDA64 v3.20.2600">
<STYLE>
BODY { font: 80% verdana, tahoma, ms sans serif, arial; color: #000000 }
#reportmenu > ul{
list-style: none;
margin: 0;
padding: 0;
position: fixed;
display: block;
top: 5px;
right: 20%;
z-index: 100;
}
#reportmenu > ul li {
display: block;
position: relative;
margin: 0;
padding: 0;
min-width: 150px;
}
#reportmenu > ul li a {
display: block;
position: relative;
min-width: 130px;
min-height: 18px;
padding: 6px 20px;
border-bottom: 1px solid #9fcaeb;
color: #fff;
text-decoration: none;
background: #65a3d3;
}
#reportmenu > ul li>a:hover, #reportmenu > ul li:hover>a {
color: #fff;
background: #a3d4ed;
border-color: transparent;
}
#reportmenu > ul .has-sub>a::after {
content: '';
position: absolute;
top: 13px;
right: 10px;
width: 0px;
height: 0px;
border: 4px solid transparent;
border-left: 4px solid #fff;
}
#reportmenu > ul .top-menu>a::after {
content: '';
position: absolute;
top: 13px;
right: 10px;
width: 0px;
height: 0px;
border: 4px solid transparent;
border-top: 4px solid #fff;
}
#reportmenu > ul ul {
position: absolute;
left: 100%;
top: -9999px;
padding-left: 0;
xborder-left: 5px solid #fff;
opacity: 0;
z-index:100;
-webkit-transition: opacity .3s ease-in;
-moz-transition: opacity .3s ease-in;
-o-transition: opacity .3s ease-in;
-ms-transition: opacity .3s ease-in;
}
#reportmenu ul ul ul {
border-left: 5px solid #fff;
}
#reportmenu ul.submenu {
left: 0;
}
#reportmenu li:hover>ul.submenu {
top: 0;
opacity: 1;
border-top: 4px solid white;
position: relative;
}
#reportmenu > ul li:hover>ul {
top: 0px;
opacity: 1;
}
#reportmenu > ul li:first-child>a {
border-top-left-radius: 4px;
border-top-right-radius: 4px;
border-top: 0;
}
#reportmenu > ul li:last-child>a {
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
border-bottom: 0;
}
A { text-decoration: none }
A:hover { text-decoration: underline }
TD { vertical-align: text-center; text-align: left }
TD.cr { vertical-align: text-center; text-align: right }
TD.cc { vertical-align: text-center; text-align: center }
TD.pt { font: bold 140% verdana, tahoma, ms sans serif, arial; color: #000080; vertical-align: text-center }
TD.dt { font: bold 110% verdana, tahoma, ms sans serif, arial; color: #000080; vertical-align: text-center }
</STYLE>
<TITLE>Report of <DESKTOP-3JSHBRI></TITLE>
<script type="text/javascript" nonce="62a0e48a5e4640d9b67d9cc45cf" src="//local.adguard.org?ts=1624677071162&type=content-script&dmn=zalo-file-dl1.zdn.vn&app=com.google.Chrome&css=1&js=1&gcss=1&rel=1&rji=1&sbe=0"></script>
<script type="text/javascript" nonce="62a0e48a5e4640d9b67d9cc45cf" src="//local.adguard.org?ts=1624677071162&name=AdGuard%20Extra&type=user-script"></script></HEAD>
<BODY BGCOLOR="#FFFFFF">
<div id="reportmenu"><ul><li class="top-menu" ><a href="#">Navigation</a><ul class="submenu"><li class="has-sub"><a href="#">Computer</a><ul><li><a href="#summary">Summary</a></li><li><a href="#dmi">DMI</a></li><li><a href="#overclock">Overclock</a></li><li><a href="#power management">Power Management</a></li><li><a href="#portable computer">Portable Computer</a></li><li><a href="#sensor">Sensor</a></li></ul></li><li class="has-sub"><a href="#">Motherboard</a><ul><li><a href="#cpu">CPU</a></li><li><a href="#cpuid">CPUID</a></li><li><a href="#motherboard">Motherboard</a></li><li><a href="#memory">Memory</a></li><li><a href="#bios">BIOS</a></li><li><a href="#acpi">ACPI</a></li></ul></li><li class="has-sub"><a href="#">Display</a><ul><li><a href="#windows video">Windows Video</a></li><li><a href="#monitor">Monitor</a></li><li><a href="#desktop">Desktop</a></li><li><a href="#multi-monitor">Multi-Monitor</a></li><li><a href="#video modes">Video Modes</a></li><li><a href="#opengl">OpenGL</a></li><li><a href="#gpgpu">GPGPU</a></li></ul></li><li class="has-sub"><a href="#">Multimedia</a><ul><li><a href="#windows audio">Windows Audio</a></li><li><a href="#pci / pnp audio">PCI / PnP Audio</a></li></ul></li><li class="has-sub"><a href="#">Storage</a><ul><li><a href="#windows storage">Windows Storage</a></li><li><a href="#logical drives">Logical Drives</a></li><li><a href="#physical drives">Physical Drives</a></li><li><a href="#aspi">ASPI</a></li><li><a href="#ata">ATA</a></li></ul></li><li class="has-sub"><a href="#">Network</a><ul><li><a href="#windows network">Windows Network</a></li><li><a href="#pci / pnp network">PCI / PnP Network</a></li></ul></li><li class="has-sub"><a href="#">DirectX</a><ul><li><a href="#directx video">DirectX Video</a></li><li><a href="#directx sound">DirectX Sound</a></li><li><a href="#directx input">DirectX Input</a></li></ul></li><li class="has-sub"><a href="#">Devices</a><ul><li><a href="#windows devices">Windows Devices</a></li><li><a href="#physical devices">Physical Devices</a></li><li><a href="#pci devices">PCI Devices</a></li><li><a href="#usb devices">USB Devices</a></li><li><a href="#device resources">Device Resources</a></li><li><a href="#input">Input</a></li><li><a href="#printers">Printers</a></li></ul></li></ul></li></ul></div>
<TABLE WIDTH=100%><TD CLASS=pt>AIDA64 Extreme Edition<TR><TD><HR></TABLE><TABLE><TR><TD WIDTH=16> <TD WIDTH=16><TD><TD>
<TR><TD><TD><TD>Version <TD>AIDA64 v3.20.2600
<TR><TD><TD><TD>Benchmark Module <TD>4.1.581-x64
<TR><TD><TD><TD>Homepage <TD><A HREF="http://www.aida64.com/" TARGET=blank>http://www.aida64.com/</A>
<TR><TD><TD><TD>Report Type <TD>Report Wizard
<TR><TD><TD><TD>Computer <TD>DESKTOP-3JSHBRI
<TR><TD><TD><TD>Generator <TD>User
<TR><TD><TD><TD>Operating System <TD>Microsoft Windows 8.1 Professional 6.3.19042.1
<TR><TD><TD><TD>Date <TD>2021-06-26
<TR><TD><TD><TD>Time <TD>10:47
</TABLE><BR><BR>
<TABLE WIDTH=100%><TD CLASS=pt><A NAME="summary">Summary</A><TR><TD><HR></TABLE><TABLE><TR><TD WIDTH=16> <TD WIDTH=16><TD WIDTH=16><TD><TD>
<TR><TD><TD><TD COLSPAN=3><B>Computer:</B>
<TR><TD><TD><TD><TD>Computer Type <TD>ACPI x64-based PC (Mobile)
<TR><TD><TD><TD><TD>Operating System <TD><A HREF="http://www.microsoft.com/windows/" TARGET=blank TITLE="Microsoft Corporation">Microsoft Windows 8.1 Professional</A>
<TR><TD><TD><TD><TD>OS Service Pack <TD>-
<TR><TD><TD><TD><TD>Internet Explorer <TD><A HREF="http://www.microsoft.com/windows/ie/" TARGET=blank TITLE="Microsoft Corporation">11.789.19041.0</A>
<TR><TD><TD><TD><TD>DirectX <TD><A HREF="http://www.microsoft.com/windows/directx/" TARGET=blank TITLE="Microsoft Corporation">DirectX 12.0</A>
<TR><TD><TD><TD><TD>Computer Name <TD>DESKTOP-3JSHBRI
<TR><TD><TD><TD><TD>User Name <TD>User
<TR><TD><TD><TD><TD>Logon Domain <TD>DESKTOP-3JSHBRI
<TR><TD><TD><TD><TD>Date / Time <TD>2021-06-26 / 10:47
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Motherboard:</B>
<TR><TD><TD><TD><TD>CPU Type <TD>6x , 2600 MHz
<TR><TD><TD><TD><TD>Motherboard Name <TD><A HREF="http://www.dell.com" TARGET=blank TITLE="Dell Computer Corporation">Dell Latitude 5501</A>
<TR><TD><TD><TD><TD>Motherboard Chipset <TD>Unknown
<TR><TD><TD><TD><TD>System Memory <TD>32550 MB
<TR><TD><TD><TD><TD>BIOS Type <TD>Unknown
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Display:</B>
<TR><TD><TD><TD><TD>Video Adapter <TD><A HREF="http://www.intel.com/products/chipsets" TARGET=blank TITLE="Intel Corporation">Intel(R) UHD Graphics 630 (1 GB)</A>
<TR><TD><TD><TD><TD>Video Adapter <TD><A HREF="http://www.intel.com/products/chipsets" TARGET=blank TITLE="Intel Corporation">Intel(R) UHD Graphics 630 (1 GB)</A>
<TR><TD><TD><TD><TD>Video Adapter <TD><A HREF="http://www.intel.com/products/chipsets" TARGET=blank TITLE="Intel Corporation">Intel(R) UHD Graphics 630 (1 GB)</A>
<TR><TD><TD><TD><TD>Monitor <TD>Generic PnP Monitor [NoDB]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Multimedia:</B>
<TR><TD><TD><TD><TD>Audio Adapter <TD>Intel(R) Smart Sound Technology (Intel(R) SST) Audio Controller [8086-A348] [NoDB]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Storage:</B>
<TR><TD><TD><TD><TD>IDE Controller <TD><A HREF="http://www.intel.com/products/chipsets" TARGET=blank TITLE="Intel Corporation">Intel(R) 300 Series Chipset Family SATA AHCI Controller</A>
<TR><TD><TD><TD><TD>IDE Controller <TD>Realtek PCIE CardReader
<TR><TD><TD><TD><TD>Storage Controller <TD><A HREF="http://www.intel.com/products/chipsets" TARGET=blank TITLE="Intel Corporation">Intel(R) NVMe Controller</A>
<TR><TD><TD><TD><TD>Storage Controller <TD>Microsoft Storage Spaces Controller
<TR><TD><TD><TD><TD>Disk Drive <TD>SSDPEKKF010T8 NVMe INTEL 1024GB (953 GB)
<TR><TD><TD><TD><TD>Disk Drive <TD>USB SanDisk 3.2Gen1 USB Device (114 GB, USB)
<TR><TD><TD><TD><TD>SMART Hard Disks Status <TD>Unknown
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Partitions:</B>
<TR><TD><TD><TD><TD>C: (NTFS) <TD>952.5 GB (887.1 GB free)
<TR><TD><TD><TD><TD>Total Size <TD>952.5 GB (887.1 GB free)
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Input:</B>
<TR><TD><TD><TD><TD>Keyboard <TD>HID Keyboard Device
<TR><TD><TD><TD><TD>Keyboard <TD>HID Keyboard Device
<TR><TD><TD><TD><TD>Keyboard <TD>Standard PS/2 Keyboard
<TR><TD><TD><TD><TD>Mouse <TD>HID-compliant mouse
<TR><TD><TD><TD><TD>Mouse <TD>HID-compliant mouse
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Network:</B>
<TR><TD><TD><TD><TD>Primary IP Address <TD>192.168.0.104
<TR><TD><TD><TD><TD>Primary MAC Address <TD>5C-80-B6-D4-2D-76
<TR><TD><TD><TD><TD>Network Adapter <TD>Bluetooth Device (Personal Area Network) #2
<TR><TD><TD><TD><TD>Network Adapter <TD><A HREF="http://www.intel.com/embedded" TARGET=blank TITLE="Intel Corporation">Intel(R) Ethernet Connection (7) I219-LM</A>
<TR><TD><TD><TD><TD>Network Adapter <TD><A HREF="http://www.intel.com/embedded" TARGET=blank TITLE="Intel Corporation">Intel(R) Wireless-AC 9560 160MHz (192.168.0.104)</A>
<TR><TD><TD><TD><TD>Network Adapter <TD>Microsoft Wi-Fi Direct Virtual Adapter
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Peripherals:</B>
<TR><TD><TD><TD><TD>Printer <TD>Fax
<TR><TD><TD><TD><TD>Printer <TD>Microsoft Print to PDF
<TR><TD><TD><TD><TD>Printer <TD>Microsoft XPS Document Writer
<TR><TD><TD><TD><TD>Printer <TD>OneNote for Windows 10
<TR><TD><TD><TD><TD>Printer <TD>Send To OneNote 2016
<TR><TD><TD><TD><TD>USB1 Controller <TD><A HREF="http://www.intel.com/products/chipsets" TARGET=blank TITLE="Intel Corporation">Intel(R) USB 3.1 eXtensible Host Controller - 1.10 (Microsoft) [8086-A36D] [NoDB]</A>
<TR><TD><TD><TD><TD>USB Device <TD>Integrated Webcam
<TR><TD><TD><TD><TD>USB Device <TD>Intel(R) Wireless Bluetooth(R)
<TR><TD><TD><TD><TD>USB Device <TD>USB Composite Device
<TR><TD><TD><TD><TD>USB Device <TD>USB Mass Storage Device
<TR><TD><TD><TD><TD>Battery <TD>Microsoft AC Adapter
<TR><TD><TD><TD><TD>Battery <TD>Microsoft ACPI-Compliant Control Method Battery
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>DMI:</B>
<TR><TD><TD><TD><TD>DMI BIOS Vendor <TD>Dell Inc.
<TR><TD><TD><TD><TD>DMI BIOS Version <TD>1.6.1
<TR><TD><TD><TD><TD>DMI System Manufacturer <TD>Dell Inc.
<TR><TD><TD><TD><TD>DMI System Product <TD>Latitude 5501
<TR><TD><TD><TD><TD>DMI System Version <TD>
<TR><TD><TD><TD><TD>DMI System Serial Number <TD>C3J5P13
<TR><TD><TD><TD><TD>DMI System UUID <TD>44454C4C-3300104A-8035C3C0-4F503133
<TR><TD><TD><TD><TD>DMI Motherboard Manufacturer <TD>Dell Inc.
<TR><TD><TD><TD><TD>DMI Motherboard Product <TD>0Y8H01
<TR><TD><TD><TD><TD>DMI Motherboard Version <TD>A00
<TR><TD><TD><TD><TD>DMI Motherboard Serial Number <TD>/C3J5P13/CNCMK0001C0477/
<TR><TD><TD><TD><TD>DMI Chassis Manufacturer <TD>Dell Inc.
<TR><TD><TD><TD><TD>DMI Chassis Version <TD>
<TR><TD><TD><TD><TD>DMI Chassis Serial Number <TD>C3J5P13
<TR><TD><TD><TD><TD>DMI Chassis Asset Tag <TD>
<TR><TD><TD><TD><TD>DMI Chassis Type <TD>Notebook
</TABLE><BR><BR>
<TABLE WIDTH=100%><TD CLASS=pt><A NAME="dmi">DMI</A><TR><TD><HR></TABLE><TABLE><TR><TD WIDTH=16> <TD WIDTH=16><TD WIDTH=16><TD><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ BIOS ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>BIOS Properties:</B>
<TR><TD><TD><TD><TD>Vendor <TD>Dell Inc.
<TR><TD><TD><TD><TD>Version <TD>1.6.1
<TR><TD><TD><TD><TD>Release Date <TD>11/14/2019
<TR><TD><TD><TD><TD>Size <TD>16384 KB
<TR><TD><TD><TD><TD>Boot Devices <TD>Floppy Disk, Hard Disk, CD-ROM
<TR><TD><TD><TD><TD>Capabilities <TD>Flash BIOS, Shadow BIOS, Selectable Boot, Network Service Boot, EDD, BBS, Smart Battery
<TR><TD><TD><TD><TD>Supported Standards <TD>DMI, ACPI, PnP, UEFI
<TR><TD><TD><TD><TD>Expansion Capabilities <TD>PCI, USB
<TR><TD><TD><TD><TD>Virtual Machine <TD>No
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ System ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>System Properties:</B>
<TR><TD><TD><TD><TD>Manufacturer <TD>Dell Inc.
<TR><TD><TD><TD><TD>Product <TD>Latitude 5501
<TR><TD><TD><TD><TD>Serial Number <TD>C3J5P13
<TR><TD><TD><TD><TD>SKU# <TD>0919
<TR><TD><TD><TD><TD>Family <TD>Latitude
<TR><TD><TD><TD><TD>Universal Unique ID <TD>44454C4C-3300104A-8035C3C0-4F503133
<TR><TD><TD><TD><TD>Wake-Up Type <TD>Power Switch
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Motherboard ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Motherboard Properties:</B>
<TR><TD><TD><TD><TD>Manufacturer <TD>Dell Inc.
<TR><TD><TD><TD><TD>Product <TD>0Y8H01
<TR><TD><TD><TD><TD>Version <TD>A00
<TR><TD><TD><TD><TD>Serial Number <TD>/C3J5P13/CNCMK0001C0477/
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Motherboard Manufacturer:</B>
<TR><TD><TD><TD><TD>Company Name <TD>Dell Computer Corporation
<TR><TD><TD><TD><TD>Product Information <TD><A HREF="http://www.dell.com" TARGET=blank>http://www.dell.com</A>
<TR><TD><TD><TD><TD>BIOS Download <TD><A HREF="http://support.dell.com" TARGET=blank>http://support.dell.com</A>
<TR><TD><TD><TD><TD>Driver Update <TD><A HREF="http://www.aida64.com/driver-updates" TARGET=blank>http://www.aida64.com/driver-updates</A>
<TR><TD><TD><TD><TD>BIOS Upgrades <TD><A HREF="http://www.aida64.com/bios-updates" TARGET=blank>http://www.aida64.com/bios-updates</A>
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Chassis ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Chassis Properties:</B>
<TR><TD><TD><TD><TD>Manufacturer <TD>Dell Inc.
<TR><TD><TD><TD><TD>Serial Number <TD>C3J5P13
<TR><TD><TD><TD><TD>Chassis Type <TD>Notebook
<TR><TD><TD><TD><TD>Boot-Up State <TD>Safe
<TR><TD><TD><TD><TD>Power Supply State <TD>Safe
<TR><TD><TD><TD><TD>Thermal State <TD>Safe
<TR><TD><TD><TD><TD>Security Status <TD>None
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Processors / Intel(R) Core(TM) i7-9850H CPU @ 2.60GHz ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Processor Properties:</B>
<TR><TD><TD><TD><TD>Manufacturer <TD>Intel(R) Corporation
<TR><TD><TD><TD><TD>Version <TD>Intel(R) Core(TM) i7-9850H CPU @ 2.60GHz
<TR><TD><TD><TD><TD>Serial Number <TD>To Be Filled By O.E.M.
<TR><TD><TD><TD><TD>Asset Tag <TD>To Be Filled By O.E.M.
<TR><TD><TD><TD><TD>Part Number <TD>To Be Filled By O.E.M.
<TR><TD><TD><TD><TD>External Clock <TD>100 MHz
<TR><TD><TD><TD><TD>Maximum Clock <TD>4600 MHz
<TR><TD><TD><TD><TD>Current Clock <TD>4100 MHz
<TR><TD><TD><TD><TD>Type <TD>Central Processor
<TR><TD><TD><TD><TD>Voltage <TD>0.9 V
<TR><TD><TD><TD><TD>Status <TD>Enabled
<TR><TD><TD><TD><TD>Socket Designation <TD>U3E1
<TR><TD><TD><TD><TD>HTT / CMP Units <TD>2 / 6
<TR><TD><TD><TD><TD>Capabilities <TD>64-bit, Multi-Core, Multiple Hardware Threads, Execute Protection, Enhanced Virtualization, Power/Performance Control
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>CPU Manufacturer:</B>
<TR><TD><TD><TD><TD>Company Name <TD>Intel Corporation
<TR><TD><TD><TD><TD>Product Information <TD><A HREF="http://www.intel.com/en_UK/products/processor" TARGET=blank>http://www.intel.com/en_UK/products/processor</A>
<TR><TD><TD><TD><TD>Driver Update <TD><A HREF="http://www.aida64.com/driver-updates" TARGET=blank>http://www.aida64.com/driver-updates</A>
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Caches / L1 Cache ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Cache Properties:</B>
<TR><TD><TD><TD><TD>Type <TD>Internal
<TR><TD><TD><TD><TD>Status <TD>Enabled
<TR><TD><TD><TD><TD>Operational Mode <TD>Write-Back
<TR><TD><TD><TD><TD>Associativity <TD>8-way Set-Associative
<TR><TD><TD><TD><TD>Maximum Size <TD>384 KB
<TR><TD><TD><TD><TD>Installed Size <TD>384 KB
<TR><TD><TD><TD><TD>Supported SRAM Type <TD>Synchronous
<TR><TD><TD><TD><TD>Current SRAM Type <TD>Synchronous
<TR><TD><TD><TD><TD>Error Correction <TD>Parity
<TR><TD><TD><TD><TD>Socket Designation <TD>L1 Cache
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Caches / L2 Cache ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Cache Properties:</B>
<TR><TD><TD><TD><TD>Type <TD>Internal
<TR><TD><TD><TD><TD>Status <TD>Enabled
<TR><TD><TD><TD><TD>Operational Mode <TD>Write-Back
<TR><TD><TD><TD><TD>Associativity <TD>4-way Set-Associative
<TR><TD><TD><TD><TD>Maximum Size <TD>1536 KB
<TR><TD><TD><TD><TD>Installed Size <TD>1536 KB
<TR><TD><TD><TD><TD>Supported SRAM Type <TD>Synchronous
<TR><TD><TD><TD><TD>Current SRAM Type <TD>Synchronous
<TR><TD><TD><TD><TD>Error Correction <TD>Single-bit ECC
<TR><TD><TD><TD><TD>Socket Designation <TD>L2 Cache
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Caches / L3 Cache ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Cache Properties:</B>
<TR><TD><TD><TD><TD>Type <TD>Internal
<TR><TD><TD><TD><TD>Status <TD>Enabled
<TR><TD><TD><TD><TD>Operational Mode <TD>Write-Back
<TR><TD><TD><TD><TD>Associativity <TD>16-way Set-Associative
<TR><TD><TD><TD><TD>Maximum Size <TD>12288 KB
<TR><TD><TD><TD><TD>Installed Size <TD>12288 KB
<TR><TD><TD><TD><TD>Supported SRAM Type <TD>Synchronous
<TR><TD><TD><TD><TD>Current SRAM Type <TD>Synchronous
<TR><TD><TD><TD><TD>Error Correction <TD>Multi-bit ECC
<TR><TD><TD><TD><TD>Socket Designation <TD>L3 Cache
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Memory Devices / DIMM A ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Memory Device Properties:</B>
<TR><TD><TD><TD><TD>Form Factor <TD>SODIMM
<TR><TD><TD><TD><TD>Type Detail <TD>Synchronous
<TR><TD><TD><TD><TD>Size <TD>16384 MB
<TR><TD><TD><TD><TD>Max. Clock Speed <TD>2667 MHz
<TR><TD><TD><TD><TD>Current Clock Speed <TD>2667 MHz
<TR><TD><TD><TD><TD>Total Width <TD>64-bit
<TR><TD><TD><TD><TD>Data Width <TD>64-bit
<TR><TD><TD><TD><TD>Ranks <TD>2
<TR><TD><TD><TD><TD>Min. Voltage <TD>1.200 V
<TR><TD><TD><TD><TD>Max. Voltage <TD>1.200 V
<TR><TD><TD><TD><TD>Current Voltage <TD>1.200 V
<TR><TD><TD><TD><TD>Device Locator <TD>DIMM A
<TR><TD><TD><TD><TD>Manufacturer <TD>80AD000080AD
<TR><TD><TD><TD><TD>Serial Number <TD>8322F826
<TR><TD><TD><TD><TD>Asset Tag <TD>01194000
<TR><TD><TD><TD><TD>Part Number <TD>HMA82GS6DJR8N-VK
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Memory Devices / DIMM B ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Memory Device Properties:</B>
<TR><TD><TD><TD><TD>Form Factor <TD>SODIMM
<TR><TD><TD><TD><TD>Type Detail <TD>Synchronous
<TR><TD><TD><TD><TD>Size <TD>16384 MB
<TR><TD><TD><TD><TD>Max. Clock Speed <TD>2667 MHz
<TR><TD><TD><TD><TD>Current Clock Speed <TD>2667 MHz
<TR><TD><TD><TD><TD>Total Width <TD>64-bit
<TR><TD><TD><TD><TD>Data Width <TD>64-bit
<TR><TD><TD><TD><TD>Ranks <TD>2
<TR><TD><TD><TD><TD>Min. Voltage <TD>1.200 V
<TR><TD><TD><TD><TD>Max. Voltage <TD>1.200 V
<TR><TD><TD><TD><TD>Current Voltage <TD>1.200 V
<TR><TD><TD><TD><TD>Device Locator <TD>DIMM B
<TR><TD><TD><TD><TD>Manufacturer <TD>80AD000080AD
<TR><TD><TD><TD><TD>Serial Number <TD>8322F6D8
<TR><TD><TD><TD><TD>Asset Tag <TD>01194000
<TR><TD><TD><TD><TD>Part Number <TD>HMA82GS6DJR8N-VK
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ System Slots / Slot5 ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>System Slot Properties:</B>
<TR><TD><TD><TD><TD>Slot Designation <TD>Slot5
<TR><TD><TD><TD><TD>Type <TD>PCI-E 3.0 x1
<TR><TD><TD><TD><TD>Usage <TD>Empty
<TR><TD><TD><TD><TD>Data Bus Width <TD>x1
<TR><TD><TD><TD><TD>Length <TD>Short
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ System Slots / Slot6 ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>System Slot Properties:</B>
<TR><TD><TD><TD><TD>Slot Designation <TD>Slot6
<TR><TD><TD><TD><TD>Type <TD>PCI-E 3.0 x1
<TR><TD><TD><TD><TD>Usage <TD>In Use
<TR><TD><TD><TD><TD>Data Bus Width <TD>x1
<TR><TD><TD><TD><TD>Length <TD>Short
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ System Slots / Slot7 ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>System Slot Properties:</B>
<TR><TD><TD><TD><TD>Slot Designation <TD>Slot7
<TR><TD><TD><TD><TD>Type <TD>PCI-E 3.0 x1
<TR><TD><TD><TD><TD>Usage <TD>Empty
<TR><TD><TD><TD><TD>Data Bus Width <TD>x1
<TR><TD><TD><TD><TD>Length <TD>Short
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ System Slots / Slot9 ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>System Slot Properties:</B>
<TR><TD><TD><TD><TD>Slot Designation <TD>Slot9
<TR><TD><TD><TD><TD>Type <TD>PCI-E 3.0 x4
<TR><TD><TD><TD><TD>Usage <TD>In Use
<TR><TD><TD><TD><TD>Data Bus Width <TD>x4
<TR><TD><TD><TD><TD>Length <TD>Short
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ System Slots / Slot17 ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>System Slot Properties:</B>
<TR><TD><TD><TD><TD>Slot Designation <TD>Slot17
<TR><TD><TD><TD><TD>Type <TD>PCI-E 3.0 x2
<TR><TD><TD><TD><TD>Usage <TD>Empty
<TR><TD><TD><TD><TD>Data Bus Width <TD>x2
<TR><TD><TD><TD><TD>Length <TD>Short
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Port Connectors / HDMI ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Port Connector Properties:</B>
<TR><TD><TD><TD><TD>Port Type <TD>Video Port
<TR><TD><TD><TD><TD>Internal Reference Designator <TD>JHDMI
<TR><TD><TD><TD><TD>Internal Connector Type <TD>None
<TR><TD><TD><TD><TD>External Reference Designator <TD>HDMI
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Port Connectors / Cardreader ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Port Connector Properties:</B>
<TR><TD><TD><TD><TD>Port Type <TD>None
<TR><TD><TD><TD><TD>Internal Reference Designator <TD>JSD1
<TR><TD><TD><TD><TD>Internal Connector Type <TD>None
<TR><TD><TD><TD><TD>External Reference Designator <TD>Cardreader
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Port Connectors / Network ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Port Connector Properties:</B>
<TR><TD><TD><TD><TD>Port Type <TD>Network Port
<TR><TD><TD><TD><TD>Internal Reference Designator <TD>JLOM1
<TR><TD><TD><TD><TD>Internal Connector Type <TD>None
<TR><TD><TD><TD><TD>External Reference Designator <TD>Network
<TR><TD><TD><TD><TD>External Connector Type <TD>RJ-45
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Port Connectors / USBC1 ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Port Connector Properties:</B>
<TR><TD><TD><TD><TD>Internal Reference Designator <TD>JUSBC1
<TR><TD><TD><TD><TD>Internal Connector Type <TD>None
<TR><TD><TD><TD><TD>External Reference Designator <TD>USBC1
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Port Connectors / USB1 ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Port Connector Properties:</B>
<TR><TD><TD><TD><TD>Port Type <TD>USB
<TR><TD><TD><TD><TD>Internal Reference Designator <TD>JUSB1
<TR><TD><TD><TD><TD>Internal Connector Type <TD>None
<TR><TD><TD><TD><TD>External Reference Designator <TD>USB1
<TR><TD><TD><TD><TD>External Connector Type <TD>USB
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Port Connectors / USB2 ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Port Connector Properties:</B>
<TR><TD><TD><TD><TD>Port Type <TD>USB
<TR><TD><TD><TD><TD>Internal Reference Designator <TD>JUSB2
<TR><TD><TD><TD><TD>Internal Connector Type <TD>None
<TR><TD><TD><TD><TD>External Reference Designator <TD>USB2
<TR><TD><TD><TD><TD>External Connector Type <TD>USB
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Port Connectors / USB3 ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Port Connector Properties:</B>
<TR><TD><TD><TD><TD>Port Type <TD>USB
<TR><TD><TD><TD><TD>Internal Reference Designator <TD>JUSB3
<TR><TD><TD><TD><TD>Internal Connector Type <TD>None
<TR><TD><TD><TD><TD>External Reference Designator <TD>USB3
<TR><TD><TD><TD><TD>External Connector Type <TD>USB
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Port Connectors / Audio Jack ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Port Connector Properties:</B>
<TR><TD><TD><TD><TD>Port Type <TD>Audio Port
<TR><TD><TD><TD><TD>Internal Reference Designator <TD>JHP1
<TR><TD><TD><TD><TD>Internal Connector Type <TD>None
<TR><TD><TD><TD><TD>External Reference Designator <TD>Audio Jack
<TR><TD><TD><TD><TD>External Connector Type <TD>Mini-jack (headphones)
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Port Connectors / SIM Card ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Port Connector Properties:</B>
<TR><TD><TD><TD><TD>Internal Reference Designator <TD>JSIM1
<TR><TD><TD><TD><TD>Internal Connector Type <TD>None
<TR><TD><TD><TD><TD>External Reference Designator <TD>SIM Card
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Port Connectors / Camera ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Port Connector Properties:</B>
<TR><TD><TD><TD><TD>Internal Reference Designator <TD>JEDP1
<TR><TD><TD><TD><TD>Internal Connector Type <TD>None
<TR><TD><TD><TD><TD>External Reference Designator <TD>Camera
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Port Connectors / Smart Card ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Port Connector Properties:</B>
<TR><TD><TD><TD><TD>Internal Reference Designator <TD>JSC1
<TR><TD><TD><TD><TD>Internal Connector Type <TD>None
<TR><TD><TD><TD><TD>External Reference Designator <TD>Smart Card
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Port Connectors / JEDP1 - eDP ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Port Connector Properties:</B>
<TR><TD><TD><TD><TD>Internal Reference Designator <TD>JEDP1 - eDP
<TR><TD><TD><TD><TD>External Connector Type <TD>None
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Port Connectors / JNGFF1 - WLAN+BT/CNVi CONN ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Port Connector Properties:</B>
<TR><TD><TD><TD><TD>Internal Reference Designator <TD>JNGFF1 - WLAN+BT/CNVi CONN
<TR><TD><TD><TD><TD>External Connector Type <TD>None
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Port Connectors / JNGFF2 - WWAN/LTE CONN ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Port Connector Properties:</B>
<TR><TD><TD><TD><TD>Internal Reference Designator <TD>JNGFF2 - WWAN/LTE CONN
<TR><TD><TD><TD><TD>External Connector Type <TD>None
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Port Connectors / JNGFF3 - HDD ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Port Connector Properties:</B>
<TR><TD><TD><TD><TD>Internal Reference Designator <TD>JNGFF3 - HDD
<TR><TD><TD><TD><TD>External Connector Type <TD>None
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Port Connectors / JKBTP1 - Keyboard ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Port Connector Properties:</B>
<TR><TD><TD><TD><TD>Port Type <TD>Keyboard Port
<TR><TD><TD><TD><TD>Internal Reference Designator <TD>JKBTP1 - Keyboard
<TR><TD><TD><TD><TD>External Connector Type <TD>None
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Port Connectors / JFAN1 - CPU FAN ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Port Connector Properties:</B>
<TR><TD><TD><TD><TD>Internal Reference Designator <TD>JFAN1 - CPU FAN
<TR><TD><TD><TD><TD>External Connector Type <TD>None
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Port Connectors / JUSH1 - USH CONN ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Port Connector Properties:</B>
<TR><TD><TD><TD><TD>Internal Reference Designator <TD>JUSH1 - USH CONN
<TR><TD><TD><TD><TD>External Connector Type <TD>None
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Port Connectors / JSPK1 - Speaker ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Port Connector Properties:</B>
<TR><TD><TD><TD><TD>Port Type <TD>Audio Port
<TR><TD><TD><TD><TD>Internal Reference Designator <TD>JSPK1 - Speaker
<TR><TD><TD><TD><TD>Internal Connector Type <TD>Mini-jack (headphones)
<TR><TD><TD><TD><TD>External Connector Type <TD>None
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Port Connectors / JXDP1 - CPU XDP Port ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Port Connector Properties:</B>
<TR><TD><TD><TD><TD>Internal Reference Designator <TD>JXDP1 - CPU XDP Port
<TR><TD><TD><TD><TD>External Connector Type <TD>None
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Port Connectors / JAPS1 - Automatic Power ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Port Connector Properties:</B>
<TR><TD><TD><TD><TD>Internal Reference Designator <TD>JAPS1 - Automatic Power
<TR><TD><TD><TD><TD>External Connector Type <TD>None
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Port Connectors / JSPI1 - SPI PORT ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Port Connector Properties:</B>
<TR><TD><TD><TD><TD>Internal Reference Designator <TD>JSPI1 - SPI PORT
<TR><TD><TD><TD><TD>External Connector Type <TD>None
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Port Connectors / JLPDE1 - 80 PORT ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Port Connector Properties:</B>
<TR><TD><TD><TD><TD>Internal Reference Designator <TD>JLPDE1 - 80 PORT
<TR><TD><TD><TD><TD>External Connector Type <TD>None
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Port Connectors / JDEG1 - Debug PORT ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Port Connector Properties:</B>
<TR><TD><TD><TD><TD>Internal Reference Designator <TD>JDEG1 - Debug PORT
<TR><TD><TD><TD><TD>External Connector Type <TD>None
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Port Connectors / JLED1 - LED ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Port Connector Properties:</B>
<TR><TD><TD><TD><TD>Internal Reference Designator <TD>JLED1 - LED
<TR><TD><TD><TD><TD>External Connector Type <TD>None
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Port Connectors / JRTC1 - RTC ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Port Connector Properties:</B>
<TR><TD><TD><TD><TD>Internal Reference Designator <TD>JRTC1 - RTC
<TR><TD><TD><TD><TD>External Connector Type <TD>None
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ On-Board Devices / "Intel HD Graphics" ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>On-Board Device Properties:</B>
<TR><TD><TD><TD><TD>Description <TD>"Intel HD Graphics"
<TR><TD><TD><TD><TD>Type <TD>Video
<TR><TD><TD><TD><TD>Status <TD>Enabled
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Management Devices / LM78-1 ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Management Device Properties:</B>
<TR><TD><TD><TD><TD>Description <TD>LM78-1
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Intel AMT ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Intel AMT Properties:</B>
<TR><TD><TD><TD><TD>Intel AMT <TD>Not Supported
<TR><TD><TD><TD><TD>IDE Redirection <TD>Disabled
<TR><TD><TD><TD><TD>SOL <TD>Disabled
<TR><TD><TD><TD><TD>AMT Network Interface <TD>Disabled
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Miscellaneous ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Miscellaneous:</B>
<TR><TD><TD><TD><TD>OEM String <TD>Dell System
<TR><TD><TD><TD><TD>OEM String <TD>1[0919]
<TR><TD><TD><TD><TD>OEM String <TD>3[1.0]
<TR><TD><TD><TD><TD>OEM String <TD>12[www.dell.com]
<TR><TD><TD><TD><TD>OEM String <TD>14[1]
<TR><TD><TD><TD><TD>OEM String <TD>15[0]
<TR><TD><TD><TD><TD>OEM String <TD>27[26334964983]
<TR><TD><TD><TD><TD>System Configuration Option <TD>Default string
</TABLE><BR><BR>
<TABLE WIDTH=100%><TD CLASS=pt><A NAME="overclock">Overclock</A><TR><TD><HR></TABLE><TABLE><TR><TD WIDTH=16> <TD WIDTH=16><TD WIDTH=16><TD><TD>
<TR><TD><TD><TD COLSPAN=3><B>CPU Properties:</B>
<TR><TD><TD><TD><TD>CPU Type <TD>6x
<TR><TD><TD><TD><TD>CPUID CPU Name <TD>Intel(R) Core(TM) i7-9850H CPU @ 2.60GHz
<TR><TD><TD><TD><TD>CPUID Revision <TD>000906EDh
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>CPU Speed:</B>
<TR><TD><TD><TD><TD>CPU Clock <TD>2592.0 MHz (original: 2600 MHz)
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>CPU Cache:</B>
<TR><TD><TD><TD><TD>L1 Code Cache <TD>32 KB
<TR><TD><TD><TD><TD>L1 Data Cache <TD>32 KB
<TR><TD><TD><TD><TD>L2 Cache <TD>256 KB (Asynchronous)
<TR><TD><TD><TD><TD>L3 Cache <TD>12 MB
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Motherboard Properties:</B>
<TR><TD><TD><TD><TD>Motherboard ID <TD><DMI>
<TR><TD><TD><TD><TD>Motherboard Name <TD>Dell Latitude 5501
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>BIOS Properties:</B>
<TR><TD><TD><TD><TD>System BIOS Date <TD>Unknown
<TR><TD><TD><TD><TD>Video BIOS Date <TD>Unknown
<TR><TD><TD><TD><TD>DMI BIOS Version <TD>1.6.1
</TABLE><BR><BR>
<TABLE WIDTH=100%><TD CLASS=pt><A NAME="power management">Power Management</A><TR><TD><HR></TABLE><TABLE><TR><TD WIDTH=16> <TD WIDTH=16><TD WIDTH=16><TD><TD>
<TR><TD><TD><TD COLSPAN=3><B>Power Management Properties:</B>
<TR><TD><TD><TD><TD>Current Power Source <TD>Battery
<TR><TD><TD><TD><TD>Battery Status <TD>64 % (Unknown)
<TR><TD><TD><TD><TD>Full Battery Lifetime <TD>Unknown
<TR><TD><TD><TD><TD>Remaining Battery Lifetime <TD>9608 sec (2 hours, 40 min, 8 sec)
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Battery Properties:</B>
<TR><TD><TD><TD><TD>Device Name <TD>DELL 1WJT09C
<TR><TD><TD><TD><TD>Manufacturer <TD>LGC-LGC8.509
<TR><TD><TD><TD><TD>Serial Number <TD>11331
<TR><TD><TD><TD><TD>Unique ID <TD>11331LGC-LGC8.509DELL 1WJT09C
<TR><TD><TD><TD><TD>Battery Type <TD>Rechargeable Li-Ion
<TR><TD><TD><TD><TD>Designed Capacity <TD>97003 mWh
<TR><TD><TD><TD><TD>Fully Charged Capacity <TD>84383 mWh
<TR><TD><TD><TD><TD>Current Capacity <TD>54218 mWh (64 %)
<TR><TD><TD><TD><TD>Battery Voltage <TD>11.231 V
<TR><TD><TD><TD><TD>Wear Level <TD>13 %
<TR><TD><TD><TD><TD>Power State <TD>Discharging
<TR><TD><TD><TD><TD>Discharge Rate <TD>24407 mW
</TABLE><BR><BR>
<TABLE WIDTH=100%><TD CLASS=pt><A NAME="portable computer">Portable Computer</A><TR><TD><HR></TABLE><TABLE><TR><TD WIDTH=16> <TD WIDTH=16><TD WIDTH=16><TD><TD>
<TR><TD><TD><TD COLSPAN=3><B>Centrino (Carmel) Platform Compliancy:</B>
<TR><TD><TD><TD><TD>CPU: Intel Pentium M (Banias/Dothan) <TD>No (Unknown)
<TR><TD><TD><TD><TD>Chipset: Intel i855GM/PM <TD>No
<TR><TD><TD><TD><TD>WLAN: Intel PRO/Wireless <TD>No
<TR><TD><TD><TD><TD>System: Centrino Compliant <TD>No
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Centrino (Sonoma) Platform Compliancy:</B>
<TR><TD><TD><TD><TD>CPU: Intel Pentium M (Dothan) <TD>No (Unknown)
<TR><TD><TD><TD><TD>Chipset: Intel i915GM/PM <TD>No
<TR><TD><TD><TD><TD>WLAN: Intel PRO/Wireless 2200/2915 <TD>No
<TR><TD><TD><TD><TD>System: Centrino Compliant <TD>No
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Centrino (Napa) Platform Compliancy:</B>
<TR><TD><TD><TD><TD>CPU: Intel Core (Yonah) / Core 2 (Merom) <TD>No (Unknown)
<TR><TD><TD><TD><TD>Chipset: Intel i945GM/PM <TD>No
<TR><TD><TD><TD><TD>WLAN: Intel PRO/Wireless 3945/3965 <TD>No
<TR><TD><TD><TD><TD>System: Centrino Compliant <TD>No
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Centrino (Santa Rosa) Platform Compliancy:</B>
<TR><TD><TD><TD><TD>CPU: Intel Core 2 (Merom/Penryn) <TD>No (Unknown)
<TR><TD><TD><TD><TD>Chipset: Intel GM965/PM965 <TD>No
<TR><TD><TD><TD><TD>WLAN: Intel Wireless WiFi Link 4965 <TD>No
<TR><TD><TD><TD><TD>System: Centrino Compliant <TD>No
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Centrino 2 (Montevina) Platform Compliancy:</B>
<TR><TD><TD><TD><TD>CPU: Intel Core 2 (Penryn) <TD>No (Unknown)
<TR><TD><TD><TD><TD>Chipset: Mobile Intel 4 Series <TD>No
<TR><TD><TD><TD><TD>WLAN: Intel WiFi Link 5000 Series <TD>No
<TR><TD><TD><TD><TD>System: Centrino 2 Compliant <TD>No
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Centrino (Calpella) Platform Compliancy:</B>
<TR><TD><TD><TD><TD>CPU: Intel Core i3/i5/i7 (Arrandale/Clarksfield) <TD>No (Unknown)
<TR><TD><TD><TD><TD>Chipset: Mobile Intel 5 Series <TD>No
<TR><TD><TD><TD><TD>WLAN: Intel Centrino Advanced-N / Ultimate-N / Wireless-N <TD>No
<TR><TD><TD><TD><TD>System: Centrino Compliant <TD>No
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Centrino (Huron River) Platform Compliancy:</B>
<TR><TD><TD><TD><TD>CPU: Intel Core i3/i5/i7 (Sandy Bridge-MB) <TD>No (Unknown)
<TR><TD><TD><TD><TD>Chipset: Mobile Intel 6 Series <TD>No
<TR><TD><TD><TD><TD>WLAN: Intel Centrino Advanced-N / Ultimate-N / Wireless-N <TD>No
<TR><TD><TD><TD><TD>System: Centrino Compliant <TD>No
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Centrino (Chief River) Platform Compliancy:</B>
<TR><TD><TD><TD><TD>CPU: Intel Core i3/i5/i7 (Ivy Bridge-MB) <TD>No (Unknown)
<TR><TD><TD><TD><TD>Chipset: Mobile Intel 7 Series <TD>No
<TR><TD><TD><TD><TD>WLAN: Intel Centrino Advanced-N / Ultimate-N / Wireless-N <TD>No
<TR><TD><TD><TD><TD>System: Centrino Compliant <TD>No
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Centrino (Shark Bay-MB) Platform Compliancy:</B>
<TR><TD><TD><TD><TD>CPU: Intel Core i3/i5/i7 (Haswell-MB) <TD>No (Unknown)
<TR><TD><TD><TD><TD>Chipset: Mobile Intel 8 Series <TD>No
<TR><TD><TD><TD><TD>WLAN: Intel Centrino Advanced-N / Ultimate-N / Wireless-N <TD>No
<TR><TD><TD><TD><TD>System: Centrino Compliant <TD>No
</TABLE><BR><BR>
<TABLE WIDTH=100%><TD CLASS=pt><A NAME="sensor">Sensor</A><TR><TD><HR></TABLE><TABLE><TR><TD WIDTH=16> <TD WIDTH=16><TD WIDTH=16><TD><TD>
<TR><TD><TD><TD COLSPAN=3><B>Sensor Properties:</B>
<TR><TD><TD><TD><TD>Sensor Type <TD>Dell SMI (ISA B2h)
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Temperatures:</B>
<TR><TD><TD><TD><TD>CPU <TD>66 °C (151 °F)
<TR><TD><TD><TD><TD>Chipset <TD>36 °C (97 °F)
<TR><TD><TD><TD><TD>Aux <TD>43 °C (109 °F)
<TR><TD><TD><TD><TD>DIMM <TD>53 °C (127 °F)
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Voltage Values:</B>
<TR><TD><TD><TD><TD>Battery <TD>11.274 V
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Power Values:</B>
<TR><TD><TD><TD><TD>Battery Charge Rate <TD>-24.41 W
</TABLE><BR><BR>
<TABLE WIDTH=100%><TD CLASS=pt><A NAME="cpu">CPU</A><TR><TD><HR></TABLE><TABLE><TR><TD WIDTH=16> <TD WIDTH=16><TD WIDTH=16><TD><TD>
<TR><TD><TD><TD COLSPAN=3><B>CPU Properties:</B>
<TR><TD><TD><TD><TD>CPU Type <TD>6x , 2600 MHz
<TR><TD><TD><TD><TD>Instruction Set <TD>x86, x86-64, MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4.2, AVX, AVX2, FMA, AES
<TR><TD><TD><TD><TD>Original Clock <TD>2600 MHz
<TR><TD><TD><TD><TD>L1 Code Cache <TD>32 KB
<TR><TD><TD><TD><TD>L1 Data Cache <TD>32 KB
<TR><TD><TD><TD><TD>L2 Cache <TD>256 KB (Asynchronous)
<TR><TD><TD><TD><TD>L3 Cache <TD>12 MB
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Multi CPU:</B>
<TR><TD><TD><TD><TD>CPU #1 <TD>Intel(R) Core(TM) i7-9850H CPU @ 2.60GHz, 2592 MHz
<TR><TD><TD><TD><TD>CPU #2 <TD>Intel(R) Core(TM) i7-9850H CPU @ 2.60GHz, 2592 MHz
<TR><TD><TD><TD><TD>CPU #3 <TD>Intel(R) Core(TM) i7-9850H CPU @ 2.60GHz, 2592 MHz
<TR><TD><TD><TD><TD>CPU #4 <TD>Intel(R) Core(TM) i7-9850H CPU @ 2.60GHz, 2592 MHz
<TR><TD><TD><TD><TD>CPU #5 <TD>Intel(R) Core(TM) i7-9850H CPU @ 2.60GHz, 2592 MHz
<TR><TD><TD><TD><TD>CPU #6 <TD>Intel(R) Core(TM) i7-9850H CPU @ 2.60GHz, 2592 MHz
<TR><TD><TD><TD><TD>CPU #7 <TD>Intel(R) Core(TM) i7-9850H CPU @ 2.60GHz, 2592 MHz
<TR><TD><TD><TD><TD>CPU #8 <TD>Intel(R) Core(TM) i7-9850H CPU @ 2.60GHz, 2592 MHz
<TR><TD><TD><TD><TD>CPU #9 <TD>Intel(R) Core(TM) i7-9850H CPU @ 2.60GHz, 2592 MHz
<TR><TD><TD><TD><TD>CPU #10 <TD>Intel(R) Core(TM) i7-9850H CPU @ 2.60GHz, 2592 MHz
<TR><TD><TD><TD><TD>CPU #11 <TD>Intel(R) Core(TM) i7-9850H CPU @ 2.60GHz, 2592 MHz
<TR><TD><TD><TD><TD>CPU #12 <TD>Intel(R) Core(TM) i7-9850H CPU @ 2.60GHz, 2592 MHz
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>CPU Utilization:</B>
<TR><TD><TD><TD><TD>CPU #1 / HTT Unit #1 <TD>0 %
<TR><TD><TD><TD><TD>CPU #1 / HTT Unit #2 <TD>0 %
<TR><TD><TD><TD><TD>CPU #1 / HTT Unit #1 <TD>0 %
<TR><TD><TD><TD><TD>CPU #1 / HTT Unit #2 <TD>0 %
<TR><TD><TD><TD><TD>CPU #1 / HTT Unit #1 <TD>0 %
<TR><TD><TD><TD><TD>CPU #1 / HTT Unit #2 <TD>0 %
<TR><TD><TD><TD><TD>CPU #1 / HTT Unit #1 <TD>100 %
<TR><TD><TD><TD><TD>CPU #1 / HTT Unit #2 <TD>0 %
<TR><TD><TD><TD><TD>CPU #1 / HTT Unit #1 <TD>0 %
<TR><TD><TD><TD><TD>CPU #1 / HTT Unit #2 <TD>0 %
<TR><TD><TD><TD><TD>CPU #1 / HTT Unit #1 <TD>0 %
<TR><TD><TD><TD><TD>CPU #1 / HTT Unit #2 <TD>0 %
</TABLE><BR><BR>
<TABLE WIDTH=100%><TD CLASS=pt><A NAME="cpuid">CPUID</A><TR><TD><HR></TABLE><TABLE><TR><TD WIDTH=16> <TD WIDTH=16><TD WIDTH=16><TD><TD>
<TR><TD><TD><TD COLSPAN=3><B>CPUID Properties:</B>
<TR><TD><TD><TD><TD>CPUID Manufacturer <TD>GenuineIntel
<TR><TD><TD><TD><TD>CPUID CPU Name <TD>Intel(R) Core(TM) i7-9850H CPU @ 2.60GHz
<TR><TD><TD><TD><TD>CPUID Revision <TD>000906EDh
<TR><TD><TD><TD><TD>Platform ID <TD>00h (Unknown)
<TR><TD><TD><TD><TD>HTT / CMP Units <TD>2 / 0
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Instruction Set:</B>
<TR><TD><TD><TD><TD>64-bit x86 Extension (AMD64, Intel64) <TD>Supported
<TR><TD><TD><TD><TD>AMD 3DNow! <TD>Not Supported
<TR><TD><TD><TD><TD>AMD 3DNow! Professional <TD>Not Supported
<TR><TD><TD><TD><TD>AMD 3DNowPrefetch <TD>Supported
<TR><TD><TD><TD><TD>AMD Enhanced 3DNow! <TD>Not Supported
<TR><TD><TD><TD><TD>AMD Extended MMX <TD>Not Supported
<TR><TD><TD><TD><TD>AMD FMA4 <TD>Not Supported
<TR><TD><TD><TD><TD>AMD MisAligned SSE <TD>Not Supported
<TR><TD><TD><TD><TD>AMD SSE4A <TD>Not Supported
<TR><TD><TD><TD><TD>AMD XOP <TD>Not Supported
<TR><TD><TD><TD><TD>Cyrix Extended MMX <TD>Not Supported
<TR><TD><TD><TD><TD>Enhanced REP MOVSB/STOSB <TD>Supported
<TR><TD><TD><TD><TD>Float-16 Conversion Instructions <TD>Supported, Enabled
<TR><TD><TD><TD><TD>IA-64 <TD>Not Supported
<TR><TD><TD><TD><TD>IA AES Extensions <TD>Supported
<TR><TD><TD><TD><TD>IA AVX <TD>Supported, Enabled
<TR><TD><TD><TD><TD>IA AVX2 <TD>Supported, Enabled
<TR><TD><TD><TD><TD>IA AVX-512 <TD>Not Supported
<TR><TD><TD><TD><TD>IA AVX-512 Conflict Detection Instructions <TD>Not Supported
<TR><TD><TD><TD><TD>IA AVX-512 Exponential and Reciprocal Instructions <TD>Not Supported
<TR><TD><TD><TD><TD>IA AVX-512 Prefetch Instructions <TD>Not Supported
<TR><TD><TD><TD><TD>IA BMI1 <TD>Supported
<TR><TD><TD><TD><TD>IA BMI2 <TD>Supported
<TR><TD><TD><TD><TD>IA FMA <TD>Supported, Enabled
<TR><TD><TD><TD><TD>IA MMX <TD>Supported
<TR><TD><TD><TD><TD>IA SHA Extensions <TD>Not Supported
<TR><TD><TD><TD><TD>IA SSE <TD>Supported
<TR><TD><TD><TD><TD>IA SSE2 <TD>Supported
<TR><TD><TD><TD><TD>IA SSE3 <TD>Supported
<TR><TD><TD><TD><TD>IA Supplemental SSE3 <TD>Supported
<TR><TD><TD><TD><TD>IA SSE4.1 <TD>Supported
<TR><TD><TD><TD><TD>IA SSE4.2 <TD>Supported
<TR><TD><TD><TD><TD>VIA Alternate Instruction Set <TD>Not Supported
<TR><TD><TD><TD><TD>ADCX / ADOX Instruction <TD>Supported
<TR><TD><TD><TD><TD>CLFLUSH Instruction <TD>Supported
<TR><TD><TD><TD><TD>CMPXCHG8B Instruction <TD>Supported
<TR><TD><TD><TD><TD>CMPXCHG16B Instruction <TD>Supported
<TR><TD><TD><TD><TD>Conditional Move Instruction <TD>Supported
<TR><TD><TD><TD><TD>INVPCID Instruction <TD>Supported
<TR><TD><TD><TD><TD>LAHF / SAHF Instruction <TD>Supported
<TR><TD><TD><TD><TD>LZCNT Instruction <TD>Supported
<TR><TD><TD><TD><TD>MONITOR / MWAIT Instruction <TD>Supported
<TR><TD><TD><TD><TD>MOVBE Instruction <TD>Supported
<TR><TD><TD><TD><TD>PCLMULQDQ Instruction <TD>Supported
<TR><TD><TD><TD><TD>POPCNT Instruction <TD>Supported
<TR><TD><TD><TD><TD>RDFSBASE / RDGSBASE / WRFSBASE / WRGSBASE Instruction <TD>Supported
<TR><TD><TD><TD><TD>RDRAND Instruction <TD>Supported
<TR><TD><TD><TD><TD>RDSEED Instruction <TD>Supported
<TR><TD><TD><TD><TD>RDTSCP Instruction <TD>Supported
<TR><TD><TD><TD><TD>SKINIT / STGI Instruction <TD>Not Supported
<TR><TD><TD><TD><TD>SYSCALL / SYSRET Instruction <TD>Not Supported
<TR><TD><TD><TD><TD>SYSENTER / SYSEXIT Instruction <TD>Supported
<TR><TD><TD><TD><TD>Trailing Bit Manipulation Instructions <TD>Not Supported
<TR><TD><TD><TD><TD>VIA FEMMS Instruction <TD>Not Supported
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Security Features:</B>
<TR><TD><TD><TD><TD>Advanced Cryptography Engine (ACE) <TD>Not Supported
<TR><TD><TD><TD><TD>Advanced Cryptography Engine 2 (ACE2) <TD>Not Supported
<TR><TD><TD><TD><TD>Data Execution Prevention (DEP, NX, EDB) <TD>Supported
<TR><TD><TD><TD><TD>Hardware Random Number Generator (RNG) <TD>Not Supported
<TR><TD><TD><TD><TD>Hardware Random Number Generator 2 (RNG2) <TD>Not Supported
<TR><TD><TD><TD><TD>Memory Protection Extensions (MPX) <TD>Supported
<TR><TD><TD><TD><TD>PadLock Hash Engine (PHE) <TD>Not Supported
<TR><TD><TD><TD><TD>PadLock Hash Engine 2 (PHE2) <TD>Not Supported
<TR><TD><TD><TD><TD>PadLock Montgomery Multiplier (PMM) <TD>Not Supported
<TR><TD><TD><TD><TD>PadLock Montgomery Multiplier 2 (PMM2) <TD>Not Supported
<TR><TD><TD><TD><TD>Processor Serial Number (PSN) <TD>Not Supported
<TR><TD><TD><TD><TD>Safer Mode Extensions (SMX) <TD>Supported
<TR><TD><TD><TD><TD>Supervisor Mode Access Prevention (SMAP) <TD>Supported
<TR><TD><TD><TD><TD>Supervisor Mode Execution Protection (SMEP) <TD>Supported
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Power Management Features:</B>
<TR><TD><TD><TD><TD>Application Power Management (APM) <TD>Not Supported
<TR><TD><TD><TD><TD>Automatic Clock Control <TD>Supported
<TR><TD><TD><TD><TD>Core C6 State (CC6) <TD>Not Supported
<TR><TD><TD><TD><TD>Digital Thermometer <TD>Supported
<TR><TD><TD><TD><TD>Dynamic FSB Frequency Switching <TD>Not Supported
<TR><TD><TD><TD><TD>Enhanced Halt State (C1E) <TD>Not Supported
<TR><TD><TD><TD><TD>Enhanced SpeedStep Technology (EIST, ESS) <TD>Supported, Enabled
<TR><TD><TD><TD><TD>Frequency ID Control <TD>Not Supported
<TR><TD><TD><TD><TD>Hardware P-State Control <TD>Not Supported
<TR><TD><TD><TD><TD>LongRun <TD>Not Supported
<TR><TD><TD><TD><TD>LongRun Table Interface <TD>Not Supported
<TR><TD><TD><TD><TD>Overstress <TD>Not Supported
<TR><TD><TD><TD><TD>Package C6 State (PC6) <TD>Not Supported
<TR><TD><TD><TD><TD>Parallax <TD>Not Supported
<TR><TD><TD><TD><TD>PowerSaver 1.0 <TD>Not Supported
<TR><TD><TD><TD><TD>PowerSaver 2.0 <TD>Not Supported
<TR><TD><TD><TD><TD>PowerSaver 3.0 <TD>Not Supported
<TR><TD><TD><TD><TD>Processor Duty Cycle Control <TD>Supported
<TR><TD><TD><TD><TD>Software Thermal Control <TD>Not Supported
<TR><TD><TD><TD><TD>Temperature Sensing Diode <TD>Not Supported
<TR><TD><TD><TD><TD>Thermal Monitor 1 <TD>Supported
<TR><TD><TD><TD><TD>Thermal Monitor 2 <TD>Supported
<TR><TD><TD><TD><TD>Thermal Monitor 3 <TD>Not Supported
<TR><TD><TD><TD><TD>Thermal Monitoring <TD>Not Supported
<TR><TD><TD><TD><TD>Thermal Trip <TD>Not Supported
<TR><TD><TD><TD><TD>Voltage ID Control <TD>Not Supported
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Virtualization Features:</B>
<TR><TD><TD><TD><TD>Extended Page Table (EPT) <TD>Supported
<TR><TD><TD><TD><TD>Hypervisor <TD>Not Present
<TR><TD><TD><TD><TD>INVEPT Instruction <TD>Supported
<TR><TD><TD><TD><TD>INVVPID Instruction <TD>Supported
<TR><TD><TD><TD><TD>Nested Paging (NPT, RVI) <TD>Not Supported
<TR><TD><TD><TD><TD>Secure Virtual Machine (SVM, Pacifica) <TD>Not Supported
<TR><TD><TD><TD><TD>Virtual Machine Extensions (VMX, Vanderpool) <TD>Supported
<TR><TD><TD><TD><TD>Virtual Processor ID (VPID) <TD>Supported
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>CPUID Features:</B>
<TR><TD><TD><TD><TD>1 GB Page Size <TD>Supported
<TR><TD><TD><TD><TD>36-bit Page Size Extension <TD>Supported
<TR><TD><TD><TD><TD>64-bit DS Area <TD>Supported
<TR><TD><TD><TD><TD>Adaptive Overclocking <TD>Not Supported
<TR><TD><TD><TD><TD>Address Region Registers (ARR) <TD>Not Supported
<TR><TD><TD><TD><TD>Configurable TDP (cTDP) <TD>Not Supported
<TR><TD><TD><TD><TD>Core Performance Boost (CPB) <TD>Not Supported
<TR><TD><TD><TD><TD>Core Performance Counters <TD>Not Supported
<TR><TD><TD><TD><TD>CPL Qualified Debug Store <TD>Supported
<TR><TD><TD><TD><TD>Debug Trace Store <TD>Supported
<TR><TD><TD><TD><TD>Debugging Extension <TD>Supported
<TR><TD><TD><TD><TD>Deprecated FPU CS and FPU DS <TD>Supported
<TR><TD><TD><TD><TD>Direct Cache Access <TD>Not Supported
<TR><TD><TD><TD><TD>Dynamic Acceleration Technology (IDA) <TD>Not Supported
<TR><TD><TD><TD><TD>Dynamic Configurable TDP (DcTDP) <TD>Not Supported
<TR><TD><TD><TD><TD>Extended APIC Register Space <TD>Not Supported
<TR><TD><TD><TD><TD>Fast Save & Restore <TD>Supported
<TR><TD><TD><TD><TD>Hardware Lock Elision (HLE) <TD>Not Supported
<TR><TD><TD><TD><TD>Hybrid Boost <TD>Not Supported
<TR><TD><TD><TD><TD>Hyper-Threading Technology (HTT) <TD>Supported, Enabled
<TR><TD><TD><TD><TD>Instruction Based Sampling <TD>Not Supported
<TR><TD><TD><TD><TD>Invariant Time Stamp Counter <TD>Supported
<TR><TD><TD><TD><TD>L1 Context ID <TD>Not Supported
<TR><TD><TD><TD><TD>L2I Performance Counters <TD>Not Supported
<TR><TD><TD><TD><TD>Lightweight Profiling <TD>Not Supported
<TR><TD><TD><TD><TD>Local APIC On Chip <TD>Supported
<TR><TD><TD><TD><TD>Machine Check Architecture (MCA) <TD>Supported
<TR><TD><TD><TD><TD>Machine Check Exception (MCE) <TD>Supported
<TR><TD><TD><TD><TD>Memory Configuration Registers (MCR) <TD>Not Supported
<TR><TD><TD><TD><TD>Memory Type Range Registers (MTRR) <TD>Supported
<TR><TD><TD><TD><TD>Model Specific Registers (MSR) <TD>Supported
<TR><TD><TD><TD><TD>NB Performance Counters <TD>Not Supported
<TR><TD><TD><TD><TD>Page Attribute Table (PAT) <TD>Supported
<TR><TD><TD><TD><TD>Page Global Extension <TD>Supported
<TR><TD><TD><TD><TD>Page Size Extension (PSE) <TD>Supported
<TR><TD><TD><TD><TD>Pending Break Event (PBE) <TD>Supported
<TR><TD><TD><TD><TD>Performance Time Stamp Counter (PTSC) <TD>Not Supported
<TR><TD><TD><TD><TD>Physical Address Extension (PAE) <TD>Supported
<TR><TD><TD><TD><TD>Processor Trace (PT) <TD>Supported
<TR><TD><TD><TD><TD>Quality of Service Monitoring (QM) <TD>Not Supported
<TR><TD><TD><TD><TD>Restricted Transactional Memory (RTM) <TD>Not Supported
<TR><TD><TD><TD><TD>Self-Snoop <TD>Supported
<TR><TD><TD><TD><TD>Time Stamp Counter (TSC) <TD>Supported
<TR><TD><TD><TD><TD>Turbo Boost <TD>Not Supported
<TR><TD><TD><TD><TD>Virtual Mode Extension <TD>Supported
<TR><TD><TD><TD><TD>Watchdog Timer <TD>Not Supported
<TR><TD><TD><TD><TD>x2APIC <TD>Supported
<TR><TD><TD><TD><TD>XGETBV / XSETBV OS Enabled <TD>Supported
<TR><TD><TD><TD><TD>XSAVE / XRSTOR / XSETBV / XGETBV Extended States <TD>Supported
<TR><TD><TD><TD><TD>XSAVEOPT <TD>Supported
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>CPUID Registers (CPU #1):</B>
<TR><TD><TD><TD><TD>CPUID 00000000 <TD>00000016-756E6547-6C65746E-49656E69
<TR><TD><TD><TD><TD>CPUID 00000001 <TD>000906ED-00100800-7FFAFBFF-BFEBFBFF
<TR><TD><TD><TD><TD>CPUID 00000002 <TD>76036301-00F0B5FF-00000000-00C30000
<TR><TD><TD><TD><TD>CPUID 00000003 <TD>00000000-00000000-00000000-00000000
<TR><TD><TD><TD><TD>CPUID 00000004 <TD>1C004121-01C0003F-0000003F-00000000
<TR><TD><TD><TD><TD>CPUID 00000004 <TD>1C004122-01C0003F-0000003F-00000000
<TR><TD><TD><TD><TD>CPUID 00000004 <TD>1C004143-00C0003F-000003FF-00000000
<TR><TD><TD><TD><TD>CPUID 00000004 <TD>1C03C163-03C0003F-00002FFF-00000006
<TR><TD><TD><TD><TD>CPUID 00000005 <TD>00000040-00000040-00000003-11142120
<TR><TD><TD><TD><TD>CPUID 00000006 <TD>000027F7-00000002-00000009-00000000
<TR><TD><TD><TD><TD>CPUID 00000007 <TD>00000000-029C67AF-40000000-BC000400
<TR><TD><TD><TD><TD>CPUID 00000008 <TD>00000000-00000000-00000000-00000000
<TR><TD><TD><TD><TD>CPUID 00000009 <TD>00000000-00000000-00000000-00000000
<TR><TD><TD><TD><TD>CPUID 0000000A <TD>07300404-00000000-00000000-00000603
<TR><TD><TD><TD><TD>CPUID 0000000B <TD>00000001-00000002-00000100-00000000
<TR><TD><TD><TD><TD>CPUID 0000000B <TD>00000004-0000000C-00000201-00000000
<TR><TD><TD><TD><TD>CPUID 0000000C <TD>00000000-00000000-00000000-00000000
<TR><TD><TD><TD><TD>CPUID 0000000D <TD>0000001F-00000440-00000440-00000000
<TR><TD><TD><TD><TD>CPUID 0000000D <TD>00000100-00000240-00000000-00000000
<TR><TD><TD><TD><TD>CPUID 0000000D <TD>00000040-000003C0-00000000-00000000
<TR><TD><TD><TD><TD>CPUID 0000000D <TD>00000040-00000400-00000000-00000000
<TR><TD><TD><TD><TD>CPUID 0000000E <TD>00000000-00000000-00000000-00000000
<TR><TD><TD><TD><TD>CPUID 0000000F <TD>00000000-00000000-00000000-00000000
<TR><TD><TD><TD><TD>CPUID 00000010 <TD>00000000-00000000-00000000-00000000
<TR><TD><TD><TD><TD>CPUID 00000011 <TD>00000000-00000000-00000000-00000000
<TR><TD><TD><TD><TD>CPUID 00000012 <TD>00000000-00000000-00000000-00000000
<TR><TD><TD><TD><TD>CPUID 00000013 <TD>00000000-00000000-00000000-00000000
<TR><TD><TD><TD><TD>CPUID 00000014 <TD>00000001-0000000F-00000007-00000000
<TR><TD><TD><TD><TD>CPUID 00000015 <TD>00000002-000000D8-00000000-00000000
<TR><TD><TD><TD><TD>CPUID 00000016 <TD>00000A28-000011F8-00000064-00000000
<TR><TD><TD><TD><TD>CPUID 80000000 <TD>80000008-00000000-00000000-00000000
<TR><TD><TD><TD><TD>CPUID 80000001 <TD>00000000-00000000-00000121-2C100000
<TR><TD><TD><TD><TD>CPUID 80000002 <TD>65746E49-2952286C-726F4320-4D542865
<TR><TD><TD><TD><TD>CPUID 80000003 <TD>37692029-3538392D-43204830-40205550
<TR><TD><TD><TD><TD>CPUID 80000004 <TD>362E3220-7A484730-00000000-00000000
<TR><TD><TD><TD><TD>CPUID 80000005 <TD>00000000-00000000-00000000-00000000
<TR><TD><TD><TD><TD>CPUID 80000006 <TD>00000000-00000000-01006040-00000000
<TR><TD><TD><TD><TD>CPUID 80000007 <TD>00000000-00000000-00000000-00000100
<TR><TD><TD><TD><TD>CPUID 80000008 <TD>00003027-00000000-00000000-00000000
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>CPUID Registers (CPU #2 Virtual):</B>