Delphi Motherboard Serial Number < TRENDING ✓ >

function GetMBSerialViaSMBIOS: string; var BufSize, i: Cardinal; RawData: PByte; P: PByte; Header: ^SMBIOS_HEADER; Baseboard: ^SMBIOS_BASEBOARD; TableOffset: NativeUInt; Strings: array of string; function ReadString(Offset: Byte): string; var StrStart: PByte; begin Result := ''; if Offset = 0 then Exit; StrStart := P + TableOffset + Baseboard.Header.Length + (Offset - 1); Result := PAnsiChar(StrStart); end; begin Result := ''; BufSize := GetSystemFirmwareTable('RSMB', 0, nil, 0); if BufSize = 0 then Exit;

function GetMBSerialViaWMI: string; var Locator, Service, Items, Item: OleVariant; begin Result := ''; CoInitialize(nil); try Locator := CreateOleObject('WbemScripting.SWbemLocator'); Service := Locator.ConnectServer('.', 'root\CIMV2'); Items := Service.ExecQuery('SELECT SerialNumber FROM Win32_BaseBoard'); for var i := 0 to Items.Count - 1 do begin Item := Items.ItemIndex(i); Result := VarToStrDef(Item.SerialNumber, ''); if (Result <> '') and (Result <> 'To be filled by O.E.M.') then Break; end; finally CoUninitialize; end; end; Delphi Motherboard Serial Number

P := RawData + TableOffset; while True do begin Header := Pointer(P); if Header.TypeId = 127 then Break; // End-of-table marker if Header.TypeId = 2 then begin Baseboard := Pointer(P); Result := ReadString(Baseboard.SerialNumber); if (Result <> '') and (Result <> 'To be filled by O.E.M.') then Break; end; Inc(P, Header.Length); // skip strings area while (P^ <> 0) or ((P+1)^ <> 0) do Inc(P); Inc(P, 2); end; finally FreeMem(RawData); end; end; function GetMBSerialViaSMBIOS: string

uses System.SysUtils, System.Win.ComObj, Winapi.Windows, ActiveX; Strings: array of string

GetMem(RawData, BufSize); try if GetSystemFirmwareTable('RSMB', 0, RawData, BufSize) = 0 then Exit;