关于获得硬盘物理序列号的程序很多,但是在2003系统下都不好用,取不出任何东西。csdn上的程序我几乎都试过了,那位大哥懂行,帮我解释一下。代码如下,或者谁有好用的代码,能分享吗?
function GetIdeDiskSerialNumber: string;
type
  TSrbIoControl = packed record
    HeaderLength: ULONG;
    Signature: array[0..7] of Char;
    Timeout: ULONG;
    ControlCode: ULONG;
    ReturnCode: ULONG;
    Length: ULONG;
  end;
  SRB_IO_CONTROL = TSrbIoControl;
  PSrbIoControl = ^TSrbIoControl;  TIDERegs = packed record
    bFeaturesReg: Byte; // Used for specifying SMART "commands".
    bSectorCountReg: Byte; // IDE sector count register
    bSectorNumberReg: Byte; // IDE sector number register
    bCylLowReg: Byte; // IDE low order cylinder value
    bCylHighReg: Byte; // IDE high order cylinder value
    bDriveHeadReg: Byte; // IDE drive/head register
    bCommandReg: Byte; // Actual IDE command.
    bReserved: Byte; // reserved for future use.  Must be zero.
  end;
  IDEREGS = TIDERegs;
  PIDERegs = ^TIDERegs;
TSendCmdInParams = packed record
    cBufferSize: DWORD; // Buffer size in bytes
    irDriveRegs: TIDERegs; // Structure with drive register values.
    bDriveNumber: Byte; // Physical drive number to send command to (0,1,2,3).
    bReserved: array[0..2] of Byte; // Reserved for future expansion.
    dwReserved: array[0..3] of DWORD; // For future use.
    bBuffer: array[0..0] of Byte; // Input buffer.
  end;
  SENDCMDINPARAMS = TSendCmdInParams;
  PSendCmdInParams = ^TSendCmdInParams;  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: ULONG;
    wMultSectorStuff: Word;
    ulTotalAddressableSectors: ULONG;
    wSingleWordDMA: Word;
    wMultiWordDMA: Word;
    bReserved: array[0..127] of Byte;
  end;
  PIdSector = ^TIdSector;const
  IDE_ID_FUNCTION = $EC;
  IDENTIFY_BUFFER_SIZE = 512;
  DFP_RECEIVE_DRIVE_DATA = $0007C088;
  IOCTL_SCSI_MINIPORT = $0004D008;
  IOCTL_SCSI_MINIPORT_IDENTIFY = $001B0501;
  DataSize = sizeof(TSendCmdInParams) - 1 + IDENTIFY_BUFFER_SIZE;
  BufferSize = SizeOf(SRB_IO_CONTROL) + DataSize;
  W9xBufferSize = IDENTIFY_BUFFER_SIZE + 16;
var
  hDevice: THandle;
  cbBytesReturned: DWORD;
  pInData: PSendCmdInParams;
  pOutData: Pointer; // PSendCmdInParams;
  Buffer: array[0..BufferSize - 1] of Byte;
  srbControl: TSrbIoControl absolute Buffer;  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 := '';
  FillChar(Buffer, BufferSize, #0);
  if Win32Platform = VER_PLATFORM_WIN32_NT then
  begin { Windows NT, Windows 2000 Get SCSI port handle}    hDevice := CreateFile('\\.\Scsi0:', GENERIC_READ or GENERIC_WRITE,
      FILE_SHARE_READ or FILE_SHARE_WRITE, nil, OPEN_EXISTING, 0, 0);
    if hDevice = INVALID_HANDLE_VALUE then Exit;    try
      srbControl.HeaderLength := SizeOf(SRB_IO_CONTROL);
      System.Move('SCSIDISK', srbControl.Signature, 8);
      srbControl.Timeout := 2;
      srbControl.Length := DataSize;
      srbControl.ControlCode := IOCTL_SCSI_MINIPORT_IDENTIFY;
      pInData := PSendCmdInParams(PChar(@Buffer) + SizeOf(SRB_IO_CONTROL));
      pOutData := pInData;
      with pInData^ do
      begin
        cBufferSize := IDENTIFY_BUFFER_SIZE;
        bDriveNumber := 0;
        with irDriveRegs do
        begin
          bFeaturesReg := 0;
          bSectorCountReg := 1;
          bSectorNumberReg := 1;
          bCylLowReg := 0;
          bCylHighReg := 0;
          bDriveHeadReg := $A0;
          bCommandReg := IDE_ID_FUNCTION;
        end;      end;
      //DeviceIoControl(hDevice, IOCTL_SCSI_MINIPORT, @Buffer, BufferSize, @Buffer, BufferSize, cbBytesReturned, nil)
     if not DeviceIoControl(hDevice, IOCTL_SCSI_MINIPORT, @Buffer, BufferSize, @Buffer, BufferSize, cbBytesReturned, nil) then
     begin
             MessageDlg('wrong', mtInformation, [mbOk], 0);
      //Exit;
      end;    finally
       CloseHandle(hDevice);
    end;  end
  else
  begin { Windows 95 OSR2, Windows 98}
    hDevice := CreateFile('\\.\SMARTVSD', 0, 0, nil, CREATE_NEW, 0, 0);
    if hDevice = INVALID_HANDLE_VALUE then Exit;
    try
      pInData := PSendCmdInParams(@Buffer);
      pOutData := PChar(@pInData^.bBuffer);
      with pInData^ do
      begin
        cBufferSize := IDENTIFY_BUFFER_SIZE;
        bDriveNumber := 0;
        with irDriveRegs do
        begin
          bFeaturesReg := 0;
          bSectorCountReg := 1;
          bSectorNumberReg := 1;
          bCylLowReg := 0;
          bCylHighReg := 0;
          bDriveHeadReg := $A0;
          bCommandReg := IDE_ID_FUNCTION;        end;
      end;
      if not DeviceIoControl(hDevice, DFP_RECEIVE_DRIVE_DATA, pInData, SizeOf(TSendCmdInParams) - 1, pOutData, W9xBufferSize, cbBytesReturned, nil) then
        Exit;
    finally
      CloseHandle(hDevice);
    end;
  end;  with PIdSector(PChar(pOutData) + 16)^ do
  begin
    ChangeByteOrder(sSerialNumber, SizeOf(sSerialNumber));
    SetString(Result, sSerialNumber, SizeOf(sSerialNumber));
  end;
end;
以上代码,在2000,XP下都好用,但是98,2003不行,那位高手指点一下,实在很急!

解决方案 »

  1.   

    DeviceIoControl(hDevice, IOCTL_SCSI_MINIPORT, @Buffer, BufferSize, @Buffer, BufferSize, cbBytesReturned, nil)
    上函数在2003下不能运行,谁知道应该怎样修改吗?
      

  2.   

    试试这个:
    function GetDiskSerial(sDisk: string): string;
    var
      dNum, dTmp: dword;
    begin
      Result := '';
      if GetVolumeInformation(PChar(sDisk + '\'), nil, 0, Addr(dNum), dTmp, dTmp,
        nil, 0) then
        Result := IntToStr(dNum);
    end;
      

  3.   

    function tform1.GetHDSerialNumber: LongInt;    
      var    
       pdw : pDWord;   
        mc, fl : dword;      
      begin     
         New(pdw);  
         GetVolumeInformation('c:\',nil,0,pdw,mc,fl,nil,0);    
       Result := pdw^;    
      dispose(pdw);  
         
      Result := GetWinFlags;        
    end;  
      procedure TForm1.Button1Click(Sender: TObject);   
     begin     
     edit1.Text:=inttostr(gethdserialnumber); 
       end;我用过了,你放心使用吧
      

  4.   

    function GetIdeSerialNumber:string;
    const IDENTIFY_BUFFER_SIZE = 512;
    type
      TIDERegs = packed record
            bFeaturesReg : BYTE; // Used for specifying SMART "commands".
        bSectorCountReg : BYTE; // IDE sector count register
        bSectorNumberReg : BYTE; // IDE sector number register
        bCylLowReg : BYTE; // IDE low order cylinder value
        bCylHighReg : BYTE; // IDE high order cylinder value
        bDriveHeadReg : BYTE; // IDE drive/head register
        bCommandReg : BYTE; // Actual IDE command.
        bReserved : BYTE; // reserved for future use. Must be zero.
      end;
      
      TSendCmdInParams = packed record
            // Buffer size in bytes
            cBufferSize : DWORD;
        // Structure with drive register values.
        irDriveRegs : TIDERegs;
        // Physical drive number to send command to (0,1,2,3).
        bDriveNumber : BYTE;
        bReserved : Array[0..2] of Byte;
        dwReserved : Array[0..3] of DWORD;
        bBuffer : Array[0..0] of Byte; // Input buffer.
      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
            // 驱动器返回的错误代码,无错则返回0
            bDriverError : Byte;
        // IDE出错寄存器的内容,只有当bDriverError 为 SMART_IDE_ERROR 时有效
        bIDEStatus : Byte;
        bReserved : Array[0..1] of Byte;
        dwReserved : Array[0..1] of DWORD;
      end;
      
      TSendCmdOutParams = packed record
            // bBuffer的大小
            cBufferSize : DWORD;
        // 驱动器状态
        DriverStatus : TDriverStatus;
        // 用于保存从驱动器读出的数据的缓冲区,实际长度由cBufferSize决定
        bBuffer : Array[0..0] of BYTE;
      end;
      
      var
        hDevice : THandle;
        cbBytesReturned : DWORD;
        // ptr : PChar;
        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 // Windows NT, Windows 2000
      begin
        // 提示! 改变名称可适用于其它驱动器,如第二个驱动器: '\\.\PhysicalDrive1\'
        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
      begin
        hDevice := CreateFile( '\\.\SMARTVSD', 0, 0, nil, CREATE_NEW, 0, 0 );
      end;
      
      if hDevice=INVALID_HANDLE_VALUE then Exit;
      
      try
        FillChar(SCIP,SizeOf(TSendCmdInParams)-1,#0);
        FillChar(aIdOutCmd,SizeOf(aIdOutCmd),#0);
        cbBytesReturned := 0;
        // Set up data structures for IDENTIFY command.
        with SCIP do
        begin
          cBufferSize := IDENTIFY_BUFFER_SIZE;
          // bDriveNumber := 0;
          with irDriveRegs do
          begin
            bSectorCountReg := 1;
            bSectorNumberReg := 1;
            // if Win32Platform=VER_PLATFORM_WIN32_NT then bDriveHeadReg := $A0
            // else bDriveHeadReg := $A0 or ((bDriveNum and 1) shl 4);
            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;delphi7 + 2003下通过。
      

  5.   

    呵呵
    Win98的就不回答了,已经放弃Win9X上的项目Win98读HDD的SN需要Smart支持,CMOS也要Enable SMART才行,通用性太差
    如在Win9X通过Ring0直接读当然OK,复杂呀,对于Win9X这些淘汰的系统,不值得再去开发了至于Win2003,上面的代码不行都是正常的!
    因为现在已经有不是IDE是通过MiniPort模拟SCSI硬盘运作了,什么IDE的IO请求是不能获得结果的!你需要做的是:先检查IDE是否可行,就是PhysicalDrive0这样的,不行的就通过SCSI0的MiniPort获得;例如使用了VIA的最新驱动包就要这样了具体代码为商业代码,涉及到我所开发的商业软件注册保护机制,只能是有偿服务,Open Source是不可能的
      

  6.   

    和和,本人有BCB的代码,原理为通过MS的S.M.A.R.T.接口来做的。
    等本人有空把它改成Delphi的叭。
      

  7.   

    我用DELPHI做了一个读取硬盘系列号,主板BOIS 日期版本,CPU ID 等硬件信息的小工具,当然还有很多BUG,我想把它公开,因为有很多东西我做不来,我希望有更多的OPEN CODE 的朋友和我一起把他做完整,有要的请加我的QQ:58519107,说明来意,我给他源程序,有什么心得请和我交流,如果你们在网上找到关于读取硬件信息的方法,请别忘了告诉我,不管是DELPHI的还是VC的例子,希望有更多人多这方面有兴趣
      

  8.   

    取序列号(CPU,硬盘,网卡)控件下载:
    Http://www.datcn.com/downloads/hardwareinfo.exe
      

  9.   

    function GetIdeSerialNumber: pchar;
      const IDENTIFY_BUFFER_SIZE = 512;
    type
       TIDERegs = packed record
         bFeaturesReg: BYTE; // Used for specifying SMART "commands".
         bSectorCountReg: BYTE; // IDE sector count register
         bSectorNumberReg: BYTE; // IDE sector number register
         bCylLowReg: BYTE; // IDE low order cylinder value
         bCylHighReg: BYTE; // IDE high order cylinder value
         bDriveHeadReg: BYTE; // IDE drive/head register
         bCommandReg: BYTE; // Actual IDE command.
         bReserved: BYTE; // reserved for future use. Must be zero.
      end;
      TSendCmdInParams = packed record
        // Buffer size in bytes
        cBufferSize: DWORD;
        // Structure with drive register values.
        irDriveRegs: TIDERegs;
        // Physical drive number to send command to (0,1,2,3).
        bDriveNumber: BYTE;
        bReserved: array[0..2] of Byte;
        dwReserved: array[0..3] of DWORD;
        bBuffer: array[0..0] of Byte; // Input buffer.
      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
        // 驱动器返回的错误代码,无错则返回0
        bDriverError: Byte;
        // IDE出错寄存器的内容,只有当bDriverError 为 SMART_IDE_ERROR 时有效
        bIDEStatus: Byte;
        bReserved: array[0..1] of Byte;
        dwReserved: array[0..1] of DWORD;
      end;
      TSendCmdOutParams = packed record
        // bBuffer的大小
        cBufferSize: DWORD;
        // 驱动器状态
        DriverStatus: TDriverStatus;
        // 用于保存从驱动器读出的数据的缓冲区,实际长度由cBufferSize决定
        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
    // 提示! 改变名称可适用于其它驱动器,如第二个驱动器: '\\.\PhysicalDrive1\'
    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;
    // Set up data structures for IDENTIFY command.
    with SCIP do begin
    cBufferSize := IDENTIFY_BUFFER_SIZE;
    // bDriveNumber := 0;
    with irDriveRegs do begin
    bSectorCountReg := 1;
    bSectorNumberReg := 1;
    // if Win32Platform=VER_PLATFORM_WIN32_NT then bDriveHeadReg := $A0
    // else bDriveHeadReg := $A0 or ((bDriveNum and 1) shl 4);
    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;//调用方法
    procedure TForm1.Button1Click(Sender: TObject);
    begin
      Edit1.Text:=strpas(GetIdeSerialNumber);
    end;
      

  10.   

    type
      TCPUID= array[1..4] of Longint;FUNCTION GetCPUID : TCPUID; assembler; register;
    asm
      PUSH    EBX         {Save affected register}
      PUSH    EDI
      MOV     EDI,EAX     {@Resukt}
      MOV     EAX,1
      DW      $A20F       {CPUID Command}
      STOSD       {CPUID[1]}
      MOV     EAX,EBX
      STOSD               {CPUID[2]}
      MOV     EAX,ECX
      STOSD               {CPUID[3]}
      MOV     EAX,EDX
      STOSD               {CPUID[4]}
      POP     EDI       {Restore registers}
      POP     EBX
    END;function GetCPUIDStr:String;
    var
      CPUID:TCPUID;
    begin
      CPUID:=GetCPUID;
      Result:=IntToHex(CPUID[1],8)+IntToHex(CPUID[2],8)+IntToHex(CPUID[3],8)+IntToHex(CPUID[4],8);
    end;下面的程序是把CPU和硬盘系列号一起生成系列号(我只是给你一个例子你要用其它的也行):
    function GetID:String;
    var
      Str:String;
      LenIDNmuber,i:Integer;
      a,sum:LongWord;
    begin
    sum:=0;
    Str:=strpas(GetIdeSerialNumber)+GetCPUIDStr;
    LenIDNmuber:=Length(Str);
    if LenIDNmuber>0 then
      begin
        for i:=1 to LenIDNmuber do
          begin
            a:=ord(Str[i]) shl $11;
            sum:=sum+a;
          end;
        result:=IntToStr(sum);
      end;  
    end;
      

  11.   

    上面我贴出来的那段取硬盘出场系列号的代码取不出DELL计算机的系列号.不知道为什么?
    建议你在使用的时候取CUPID一起使用.
    同一型号的硬盘系列号和同一信号的CPUID相同.使用的时候你可以增加一个随机值来进行控制.这个值你可以写到一个文件或者是写到EXE文件的间隙里去。但不管写到什么地方.都要对这个值进行加密.
      

  12.   

    function tform1.GethdserialNumber:longint;
    var
    pdw:pDword;
    mc,fl:dword;
    begin
    New(pdw);
    getvolumeinformation('c:\'nil,0,pdw,mc,fl,nil,0);
    result:=pdw^;
    dispose(pdw);
    Result:=Getwinflags;
    end;
         procedure  Tform1.button1click(sender:tobject);
    begin
    edit1.text:=inttostr(gethdserialnumber);
    end;
    这个我也是在2003系统 上运行,可以得到硬盘的Id
      

  13.   

    2003系统的内核是NT,可是好像和2000,XP不一样,用同样的方法取不出硬盘的物理序列号,98系统下的序列号我是通过汇编取得的。