22 lines
909 B
Markdown
22 lines
909 B
Markdown
# SMBIOS
|
|
|
|
SMBIOS(System Management BIOS)는 [SMBIOS](http://www.dmtf.org/standards/smbios) DMTF에서 개발한 표준입니다.
|
|
|
|
 [tsmbios](https://github.com/RRUZ/tsmbios) 델파이 라이브러리를 쉽게 사용하기 위해 델파이 언어로 개발되었습니다.
|
|
|
|
## Features
|
|
|
|
* 2024.12.19 버전 1.0으로 샘플을 개발되었습니다.
|
|
* 불법 KMS 인증 OS는 CPU가 똑 같은 시리얼을 제공하는것을 발견하였습니다.
|
|
|
|
## Sample source code
|
|
제공되는 함수는 아래와 같습니다.
|
|
네트워크는 MAC Address로 제공되며 기본은 유선LAN이며 True면 무선LAN 제공합니다.
|
|
|
|
``` delphi
|
|
function GetCPUSerialNumber: string;
|
|
function GetMainboardSerialNumber: string;
|
|
function GetHDDSerialNumber: string;
|
|
function GetNetworkAdapterSerialNumber(IncludeWireless: Boolean = False): string;
|
|
function GetHardwareInformation: string;
|
|
``` |