How do I get the motherboard ID or serial number from Delphi code?
Is there any example code or articles that I can look at?
How do I get the motherboard ID or serial number from Delphi code?
Is there any example code or articles that I can look at?
If you want show the MainBoard Serial, use this stuff.
To show the Mainboard Number in Windows 10 query the following in the WMI Service:
wmic baseboard get product,Manufacturer,version,serialnumber
//USES: Winapi.ActiveX, System.Win.ComObj
function TForm2.GetMotherBoardSerial: string;
var
objWMIService: OLEVariant;
colItems: OLEVariant;
colItem: OLEVariant;
oEnum: IEnumvariant;
iValue: Longword;
function GetWMIObject(const objectName: string): IDispatch;
var
chEaten: Integer;
BindCtx: IBindCtx;
Moniker: IMoniker;
begin
OleCheck(CreateBindCtx(0, bindCtx));
OleCheck(MkParseDisplayName(BindCtx, StringToOleStr(objectName),
chEaten, Moniker));
OleCheck(Moniker.BindToObject(BindCtx, nil, IDispatch, Result));
end;
begin
Result := '';
objWMIService := GetWMIObject('winmgmts:\\localhost\root\cimv2');
colItems :=
objWMIService.ExecQuery('SELECT SerialNumber FROM Win32_BaseBoard', 'WQL', 0);
oEnum := IUnknown(colItems._NewEnum) as IEnumVariant;
if oEnum.Next(1, colItem,
iValue) = 0 then
Result := VarToStr(colItem.SerialNumber);
end;
I got another solution:
function TForm1.GetSerialMotherBoard: String;
var
a, b, c, d: LongWord;
begin
asm
push EAX
push EBX
push ECX
push EDX
mov eax, 1
db $0F, $A2
mov a, EAX
mov b, EBX
mov c, ECX
mov d, EDX
pop EDX
pop ECX
pop EBX
pop EAX
end;
result := inttohex(a, 8) + '-' +
inttohex(b, 8) + '-' +
inttohex(c, 8) + '-' +
inttohex(d, 8);
end;
try using the WMI Win32_BaseBoard Class .
see theses samples:
Option 1) before execute you need import the
Microsoft WMIScripting Library
fromComponent
->Import Component
and then selectImport type library
Option 2) using
OLEVariant
, IBindCtx Interface and IMoniker Interface