├── .gitignore ├── DumpSMBIOS.sln ├── DumpSMBIOS ├── DumpSMBIOS.cpp ├── DumpSMBIOS.vcxproj ├── DumpSMBIOS.vcxproj.filters ├── ReadMe.txt ├── smbios.cpp ├── smbios.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── LICENSE ├── LegacyMethod ├── Debug │ ├── SysInfo.dll │ ├── SysInfo.sys │ ├── SysInfo.txt │ ├── SysInfo.vxd │ ├── SysInfoNT4.sys │ └── SysInfoX64.sys ├── DumpSMBIOS-Mem.vcproj ├── DumpSMBIOS-Mem.vcxproj ├── DumpSMBIOS-Mem.vcxproj.filters ├── DumpSMBIOS.cpp ├── ReadMe.txt ├── Release │ ├── SysInfo.dll │ ├── SysInfo.sys │ ├── SysInfo.txt │ ├── SysInfo.vxd │ ├── SysInfoNT4.sys │ └── SysInfoX64.sys ├── SysInfo │ ├── CpuInfo.cpp │ ├── CpuInfo.h │ ├── CpuInfoID.h │ ├── CpuModelNumber.cpp │ ├── DmiInfo.cpp │ ├── DmiInfo.h │ ├── Driverload.c │ ├── Driverload.h │ ├── DxDiag.h │ ├── ISysInfo.h │ ├── InstDrv.h │ ├── Instdrv.cpp │ ├── Interrupt.c │ ├── Iofunc.c │ ├── ItemID.h │ ├── Memfunc.c │ ├── MultiplierTable.h │ ├── PciInfo.cpp │ ├── PciInfo.h │ ├── Pcidebug.h │ ├── Pcidef.h │ ├── Pcidll.c │ ├── Pcifunc.c │ ├── Pcifunc.h │ ├── Pciioctl.h │ ├── Port32.h │ ├── SysInfo.cpp │ ├── SysInfo.dsp │ ├── SysInfo.dsw │ ├── SysInfo.h │ ├── SysInfo.rc │ ├── cpuid.asm │ ├── getdxver.cpp │ ├── msr9x.cpp │ ├── msr9x.h │ ├── msrnt.cpp │ ├── msrnt.h │ ├── resource.h │ └── resource1.h ├── biosinfo.h ├── boardinfo.h ├── smheader.h ├── stdafx.cpp ├── stdafx.h ├── sysenclosure.h └── sysinfo.h └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/.gitignore -------------------------------------------------------------------------------- /DumpSMBIOS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/DumpSMBIOS.sln -------------------------------------------------------------------------------- /DumpSMBIOS/DumpSMBIOS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/DumpSMBIOS/DumpSMBIOS.cpp -------------------------------------------------------------------------------- /DumpSMBIOS/DumpSMBIOS.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/DumpSMBIOS/DumpSMBIOS.vcxproj -------------------------------------------------------------------------------- /DumpSMBIOS/DumpSMBIOS.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/DumpSMBIOS/DumpSMBIOS.vcxproj.filters -------------------------------------------------------------------------------- /DumpSMBIOS/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/DumpSMBIOS/ReadMe.txt -------------------------------------------------------------------------------- /DumpSMBIOS/smbios.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/DumpSMBIOS/smbios.cpp -------------------------------------------------------------------------------- /DumpSMBIOS/smbios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/DumpSMBIOS/smbios.h -------------------------------------------------------------------------------- /DumpSMBIOS/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/DumpSMBIOS/stdafx.cpp -------------------------------------------------------------------------------- /DumpSMBIOS/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/DumpSMBIOS/stdafx.h -------------------------------------------------------------------------------- /DumpSMBIOS/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/DumpSMBIOS/targetver.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LICENSE -------------------------------------------------------------------------------- /LegacyMethod/Debug/SysInfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/Debug/SysInfo.dll -------------------------------------------------------------------------------- /LegacyMethod/Debug/SysInfo.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/Debug/SysInfo.sys -------------------------------------------------------------------------------- /LegacyMethod/Debug/SysInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/Debug/SysInfo.txt -------------------------------------------------------------------------------- /LegacyMethod/Debug/SysInfo.vxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/Debug/SysInfo.vxd -------------------------------------------------------------------------------- /LegacyMethod/Debug/SysInfoNT4.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/Debug/SysInfoNT4.sys -------------------------------------------------------------------------------- /LegacyMethod/Debug/SysInfoX64.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/Debug/SysInfoX64.sys -------------------------------------------------------------------------------- /LegacyMethod/DumpSMBIOS-Mem.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/DumpSMBIOS-Mem.vcproj -------------------------------------------------------------------------------- /LegacyMethod/DumpSMBIOS-Mem.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/DumpSMBIOS-Mem.vcxproj -------------------------------------------------------------------------------- /LegacyMethod/DumpSMBIOS-Mem.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/DumpSMBIOS-Mem.vcxproj.filters -------------------------------------------------------------------------------- /LegacyMethod/DumpSMBIOS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/DumpSMBIOS.cpp -------------------------------------------------------------------------------- /LegacyMethod/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/ReadMe.txt -------------------------------------------------------------------------------- /LegacyMethod/Release/SysInfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/Release/SysInfo.dll -------------------------------------------------------------------------------- /LegacyMethod/Release/SysInfo.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/Release/SysInfo.sys -------------------------------------------------------------------------------- /LegacyMethod/Release/SysInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/Release/SysInfo.txt -------------------------------------------------------------------------------- /LegacyMethod/Release/SysInfo.vxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/Release/SysInfo.vxd -------------------------------------------------------------------------------- /LegacyMethod/Release/SysInfoNT4.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/Release/SysInfoNT4.sys -------------------------------------------------------------------------------- /LegacyMethod/Release/SysInfoX64.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/Release/SysInfoX64.sys -------------------------------------------------------------------------------- /LegacyMethod/SysInfo/CpuInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/SysInfo/CpuInfo.cpp -------------------------------------------------------------------------------- /LegacyMethod/SysInfo/CpuInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/SysInfo/CpuInfo.h -------------------------------------------------------------------------------- /LegacyMethod/SysInfo/CpuInfoID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/SysInfo/CpuInfoID.h -------------------------------------------------------------------------------- /LegacyMethod/SysInfo/CpuModelNumber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/SysInfo/CpuModelNumber.cpp -------------------------------------------------------------------------------- /LegacyMethod/SysInfo/DmiInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/SysInfo/DmiInfo.cpp -------------------------------------------------------------------------------- /LegacyMethod/SysInfo/DmiInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/SysInfo/DmiInfo.h -------------------------------------------------------------------------------- /LegacyMethod/SysInfo/Driverload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/SysInfo/Driverload.c -------------------------------------------------------------------------------- /LegacyMethod/SysInfo/Driverload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/SysInfo/Driverload.h -------------------------------------------------------------------------------- /LegacyMethod/SysInfo/DxDiag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/SysInfo/DxDiag.h -------------------------------------------------------------------------------- /LegacyMethod/SysInfo/ISysInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/SysInfo/ISysInfo.h -------------------------------------------------------------------------------- /LegacyMethod/SysInfo/InstDrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/SysInfo/InstDrv.h -------------------------------------------------------------------------------- /LegacyMethod/SysInfo/Instdrv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/SysInfo/Instdrv.cpp -------------------------------------------------------------------------------- /LegacyMethod/SysInfo/Interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/SysInfo/Interrupt.c -------------------------------------------------------------------------------- /LegacyMethod/SysInfo/Iofunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/SysInfo/Iofunc.c -------------------------------------------------------------------------------- /LegacyMethod/SysInfo/ItemID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/SysInfo/ItemID.h -------------------------------------------------------------------------------- /LegacyMethod/SysInfo/Memfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/SysInfo/Memfunc.c -------------------------------------------------------------------------------- /LegacyMethod/SysInfo/MultiplierTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/SysInfo/MultiplierTable.h -------------------------------------------------------------------------------- /LegacyMethod/SysInfo/PciInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/SysInfo/PciInfo.cpp -------------------------------------------------------------------------------- /LegacyMethod/SysInfo/PciInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/SysInfo/PciInfo.h -------------------------------------------------------------------------------- /LegacyMethod/SysInfo/Pcidebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/SysInfo/Pcidebug.h -------------------------------------------------------------------------------- /LegacyMethod/SysInfo/Pcidef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/SysInfo/Pcidef.h -------------------------------------------------------------------------------- /LegacyMethod/SysInfo/Pcidll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/SysInfo/Pcidll.c -------------------------------------------------------------------------------- /LegacyMethod/SysInfo/Pcifunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/SysInfo/Pcifunc.c -------------------------------------------------------------------------------- /LegacyMethod/SysInfo/Pcifunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/SysInfo/Pcifunc.h -------------------------------------------------------------------------------- /LegacyMethod/SysInfo/Pciioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/SysInfo/Pciioctl.h -------------------------------------------------------------------------------- /LegacyMethod/SysInfo/Port32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/SysInfo/Port32.h -------------------------------------------------------------------------------- /LegacyMethod/SysInfo/SysInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/SysInfo/SysInfo.cpp -------------------------------------------------------------------------------- /LegacyMethod/SysInfo/SysInfo.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/SysInfo/SysInfo.dsp -------------------------------------------------------------------------------- /LegacyMethod/SysInfo/SysInfo.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/SysInfo/SysInfo.dsw -------------------------------------------------------------------------------- /LegacyMethod/SysInfo/SysInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/SysInfo/SysInfo.h -------------------------------------------------------------------------------- /LegacyMethod/SysInfo/SysInfo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/SysInfo/SysInfo.rc -------------------------------------------------------------------------------- /LegacyMethod/SysInfo/cpuid.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/SysInfo/cpuid.asm -------------------------------------------------------------------------------- /LegacyMethod/SysInfo/getdxver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/SysInfo/getdxver.cpp -------------------------------------------------------------------------------- /LegacyMethod/SysInfo/msr9x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/SysInfo/msr9x.cpp -------------------------------------------------------------------------------- /LegacyMethod/SysInfo/msr9x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/SysInfo/msr9x.h -------------------------------------------------------------------------------- /LegacyMethod/SysInfo/msrnt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/SysInfo/msrnt.cpp -------------------------------------------------------------------------------- /LegacyMethod/SysInfo/msrnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/SysInfo/msrnt.h -------------------------------------------------------------------------------- /LegacyMethod/SysInfo/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/SysInfo/resource.h -------------------------------------------------------------------------------- /LegacyMethod/SysInfo/resource1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/SysInfo/resource1.h -------------------------------------------------------------------------------- /LegacyMethod/biosinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/biosinfo.h -------------------------------------------------------------------------------- /LegacyMethod/boardinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/boardinfo.h -------------------------------------------------------------------------------- /LegacyMethod/smheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/smheader.h -------------------------------------------------------------------------------- /LegacyMethod/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/stdafx.cpp -------------------------------------------------------------------------------- /LegacyMethod/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/stdafx.h -------------------------------------------------------------------------------- /LegacyMethod/sysenclosure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/sysenclosure.h -------------------------------------------------------------------------------- /LegacyMethod/sysinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/LegacyMethod/sysinfo.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KunYi/DumpSMBIOS/HEAD/README.md --------------------------------------------------------------------------------