明輝手游網(wǎng)中心:是一個(gè)免費(fèi)提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺(tái)!

得到Windows用戶名與序列號(hào)

[摘要]如何得到Windows的用戶名稱(chēng)和產(chǎn)品序列號(hào)呢?1. 可以用 WNetGetUser() 這個(gè)函數(shù)來(lái)得到 user name;2. Windows 95 的產(chǎn)品序號(hào)可以用 TRegistry 到 Registry Database 中找出來(lái);// 取得用戶名稱(chēng)function GetUserNam...
如何得到Windows的用戶名稱(chēng)和產(chǎn)品序列號(hào)呢?
1. 可以用 WNetGetUser() 這個(gè)函數(shù)來(lái)得到 user name;
2. Windows 95 的產(chǎn)品序號(hào)可以用 TRegistry 到 Registry Database 中找出來(lái);
// 取得用戶名稱(chēng)
function GetUserName: AnsiString;
var
lpName: PAnsiChar;
lpUserName: PAnsiChar;
lpnLength: DWORD;
begin
Result := '';
lpnLength := 0;
WNetGetUser(nil, nil, lpnLength); // 取得字串長(zhǎng)度
if lpnLength > 0 then
begin
GetMem(lpUserName, lpnLength);
if WNetGetUser(lpName, lpUserName, lpnLength) = NO_ERROR then
Result := lpUserName;
FreeMem(lpUserName, lpnLength);
end;
end; { GetUserName }
// 取得 Windows 產(chǎn)品序號(hào)
function GetWindowsProductID: string;
var
reg: TRegistry;
begin
Result := '';
reg := TRegistry.Create;
with reg do
begin
RootKey := HKEY_LOCAL_MACHINE;
OpenKey('Software\Microsoft\Windows\CurrentVersion', False);
Result := ReadString('ProductID');
end;
reg.Free;
end;