function TsecretFrm.GetDiskSerial(): string;
var
SerialNum : pdword;
a, b : dword;
Buffer : array [0..255] of char;
begin
result :='';
if GetVolumeInformation('c:\', Buffer, SizeOf(Buffer), SerialNum,a, b, nil, 0) then
Result := IntToStr(SerialNum^);
end;为什么这样读不出来啊??
各位大虾指点啊,急!!!

解决方案 »

  1.   

    //取硬盘系列号:
    function GetIdeSerialNumber: pchar;  //获取硬盘的出厂系列号;
      const IDENTIFY_BUFFER_SIZE = 512;
    type
       TIDERegs = packed record
         bFeaturesReg: BYTE;
         bSectorCountReg: BYTE;
         bSectorNumberReg: BYTE;
         bCylLowReg: BYTE;
         bCylHighReg: BYTE;
         bDriveHeadReg: BYTE;
         bCommandReg: BYTE;
         bReserved: BYTE;
      end;
      TSendCmdInParams = packed record
        cBufferSize: DWORD;
        irDriveRegs: TIDERegs;
        bDriveNumber: BYTE;
        bReserved: array[0..2] of Byte;
        dwReserved: array[0..3] of DWORD;
        bBuffer: array[0..0] of Byte;
      end;
      TIdSector = packed record
        wGenConfig: Word;
        wNumCyls: Word;
        wReserved: Word;
        wNumHeads: Word;
        wBytesPerTrack: Word;
        wBytesPerSector: Word;
        wSectorsPerTrack: Word;
        wVendorUnique: array[0..2] of Word;
        sSerialNumber: array[0..19] of CHAR;
        wBufferType: Word;
        wBufferSize: Word;
        wECCSize: Word;
        sFirmwareRev: array[0..7] of Char;
        sModelNumber: array[0..39] of Char;
        wMoreVendorUnique: Word;
        wDoubleWordIO: Word;
        wCapabilities: Word;
        wReserved1: Word;
        wPIOTiming: Word;
        wDMATiming: Word;
        wBS: Word;
        wNumCurrentCyls: Word;
        wNumCurrentHeads: Word;
        wNumCurrentSectorsPerTrack: Word;
        ulCurrentSectorCapacity: DWORD;
        wMultSectorStuff: Word;
        ulTotalAddressableSectors: DWORD;
        wSingleWordDMA: Word;
        wMultiWordDMA: Word;
        bReserved: array[0..127] of BYTE;
      end;
      PIdSector = ^TIdSector;
      TDriverStatus = packed record
        bDriverError: Byte;
        bIDEStatus: Byte;
        bReserved: array[0..1] of Byte;
        dwReserved: array[0..1] of DWORD;
      end;
      TSendCmdOutParams = packed record
        cBufferSize: DWORD;
        DriverStatus: TDriverStatus;
        bBuffer: array[0..0] of BYTE;
      end;
    var
      hDevice: Thandle;
      cbBytesReturned: DWORD;
      SCIP: TSendCmdInParams;
      aIdOutCmd: array[0..(SizeOf(TSendCmdOutParams) + IDENTIFY_BUFFER_SIZE-1)-1] of Byte;
      IdOutCmd: TSendCmdOutParams absolute aIdOutCmd;
    procedure ChangeByteOrder(var Data; Size: Integer);
    var
      ptr: Pchar;
      i: Integer;
      c: Char;
    begin
      ptr := @Data;
      for I := 0 to (Size shr 1) - 1 do begin
        c := ptr^;
        ptr^ := (ptr + 1)^;
        (ptr + 1)^ := c;
        Inc(ptr, 2);
      end;
    end;
    begin
    Result := '';
    if SysUtils.Win32Platform = VER_PLATFORM_WIN32_NT then begin // Windows NT, Windows 2000
    hDevice := CreateFile('\\.\PhysicalDrive0', GENERIC_READ or GENERIC_WRITE,
    FILE_SHARE_READ or FILE_SHARE_WRITE, nil, OPEN_EXISTING, 0, 0);
    end else // Version Windows 95 OSR2, Windows 98
    hDevice := CreateFile('\\.\SMARTVSD', 0, 0, nil, CREATE_NEW, 0, 0);
    if hDevice = INVALID_HANDLE_VALUE then Exit;
    try
    FillChar(SCIP, SizeOf(TSendCmdInParams) - 1, #0);
    FillChar(aIdOutCmd, SizeOf(aIdOutCmd), #0);
    cbBytesReturned := 0;
    with SCIP do begin
    cBufferSize := IDENTIFY_BUFFER_SIZE;
    with irDriveRegs do begin
    bSectorCountReg := 1;
    bSectorNumberReg := 1;
    bDriveHeadReg := $A0;
    bCommandReg := $EC;
    end;
    end;
    if not DeviceIoControl(hDevice, $0007C088, @SCIP, SizeOf(TSendCmdInParams) - 1,
    @aIdOutCmd, SizeOf(aIdOutCmd), cbBytesReturned, nil) then Exit;
    finally
    CloseHandle(hDevice);
    end;
    with PIdSector(@IdOutCmd.bBuffer)^ do begin
    ChangeByteOrder(sSerialNumber, SizeOf(sSerialNumber));
    (Pchar(@sSerialNumber) + SizeOf(sSerialNumber))^:= #0;
    Result := Pchar(@sSerialNumber);
    end;
    end;Edit1.Text:=strpas(GetIdeSerialNumber); //调用
      

  2.   

    ???????????????
    GetIdeSerialNumber函数呢?
      

  3.   

    回复人: sjlvhj(吻星揽月) ( ) 信誉:100  2005-10-05 13:26:00  得分: 0  
     
     
       ???????????????
    GetIdeSerialNumber函数呢?
    =====================================================================-_-#!  
     
      

  4.   

    把 jackie168(三箭齐发)的代码考下来,然后在你的程序里调用GetIdeSerialNumber函数
      

  5.   

    procedure ChangeByteOrder(var Data; Size: Integer);
    var
      ptr: Pchar;
      i: Integer;
      c: Char;
    begin
      ptr := @Data;
      for I := 0 to (Size shr 1) - 1 do begin
        c := ptr^;
        ptr^ := (ptr + 1)^;
        (ptr + 1)^ := c;
        Inc(ptr, 2);
      end;
    end;
    begin//这里明显不对啊!!!!!!!!!!!!!!!!!
    Result := '';
    if SysUtils.Win32Platform = VER_PLATFORM_WIN32_NT then begin // Windows NT, Windows 2000
    hDevice := CreateFile('\\.\PhysicalDrive0', GENERIC_READ or GENERIC_WRITE,
    FILE_SHARE_READ or FILE_SHARE_WRITE, nil, OPEN_EXISTING, 0, 0);
    end else // Version Windows 95 OSR2, Windows 98
    hDevice := CreateFile('\\.\SMARTVSD', 0, 0, nil, CREATE_NEW, 0, 0);
    if hDevice = INVALID_HANDLE_VALUE then Exit;
    try
    ^^^^^^^^^可是我标注的地方明显不对啊!!!
      

  6.   

    代码是没有错误的,我已经运行成功了。
    你只需要把函数考过去,然后调用即可。
    procedure TForm1.Button1Click(Sender: TObject);
    begin
      Edit1.Text:=strpas(GetIdeSerialNumber);
    end;至于你说的错误,Delphi是允许的,Delphi不像C++或Java等,它是允许过程或函数嵌套的。
      

  7.   

    可以运行通过,结果:WD-WMAJ94438468
      

  8.   

    我的运行结果怎么这样的啊
    5JV8EL6Q
    对不对啊???
      

  9.   

    我的运行结果怎么这样的啊  
    5JV8EL6Q  
    这样对不对啊??? 好象不对吧?!!
      

  10.   

    sci呢?有解决办法么?而且硬盘序列号有重复呀!?
      

  11.   

    大家注意!
    我用这段代码在WIN2000下取硬盘序号,如果不是管理员权限好像取不出来
    还以,在WIN98下也取不出来
    你们遇到这个问题没有?