gyhhi 发表于 2015-10-26 20:13:11

【已解决】请问如何识别不同的电脑?我想让我的软件只能在我的电脑上运行,怎么办

本帖最后由 gyhhi 于 2015-10-28 18:59 编辑

软件启动的时候检测机器码,如果不是我的机器,那么就退出。
关键是这个机器码从哪能读到?能够唯一识别我的电脑?

chzj589 发表于 2015-10-26 21:01:33

回复 1# gyhhi

硬盘ID,每个硬盘ID都不一样 

FluxayX 发表于 2015-10-27 10:16:55

#include <WINAPI.au3>
MsgBox (0,"硬盘序列号",_DiskSeriNum(0))

Func _DiskSeriNum($msg)
Const $IOCTL_STORAGE_BASE = 0x2D
Const $IOCTL_STORAGE_QUERY_PROPERTY = _MakeCtrlCode($IOCTL_STORAGE_BASE, 0x500)
Const $DFP_RECEIVE_DRIVE_DATA = 0x7C088

Const $tagSTORAGEPROPERTYQUERY = "int PropertyId;int QueryType;byte AdditionalParams"
Const $tagSTORAGEDEVICEDESCRIPTOR = "ulong Version;ulong Size;byte DeviceType;" & _
                        "byte DeviceTypeModifier;byte RemovableMedia;" & _
                        "byte CommandQueueing;ulong VendorIdOffset;" & _
                        "ulong ProductIdOffset;ulong ProductRevisionOffset;" & _
                        "ulong SerialNumberOffset;int BusType;" & _
                        "ulong RawPropertiesLength;byte RawDeviceProperties"
Const $tagDRIVERSTATUS = "byte DriverError;byte IDEStatus;byte Reserved1;dword Reserved2"
Const $tagIDEREGS = "byte Features;byte SectorCount;byte SectorNumber;byte CylLow;" & _
                        "byte CylHigh;byte DriveHead;byte Command;byte Reserved"
Const $tagSENDCMDOUTPARAMS = "dword Size;" & $tagDRIVERSTATUS
Const $tagSENDCMDINPARAMS = "dword Size;" & $tagIDEREGS & ";byte DriveNumber;" & _
                        "byte Reserved1;dword Reserved2;byte Buffer"

$sPhysDisk = "\\.\PhysicalDrive0"
$hDisk = _WinAPI_CreateFile($sPhysDisk, 2, 6, 6, 1)
If $hDisk = -1 Then
      Exit(ConsoleWrite("_WinAPI_CreateFile fails, error code: " & _WinAPI_GetLastError() & @CRLF))
EndIf

$tSCIP = DllStructCreate($tagSENDCMDINPARAMS)
$tSCOP = DllStructCreate($tagSENDCMDOUTPARAMS & ";char Buffer")
$tQuery = DllStructCreate($tagSTORAGEPROPERTYQUERY)
$tDescr = DllStructCreate($tagSTORAGEDEVICEDESCRIPTOR)
DllStructSetData($tQuery, "PropertyId", 0)
DllStructSetData($tQuery, "QueryType", 0)

$iResult = _DeviceIoControl($hDisk, $IOCTL_STORAGE_QUERY_PROPERTY, _
                $tQuery, DllStructGetSize($tQuery), _
                $tDescr, DllStructGetSize($tDescr))
If $iResult = 0 Then
      Exit(ConsoleWrite("_DeviceIoControl fails, error code: " & @error & @CRLF))
EndIf

If DllStructGetData($tDescr, "BusType") = 2 Then
      DllStructSetData($tSCIP, "Command", 0xA1)
Else
      DllStructSetData($tSCIP, "Command", 0xEC)
EndIf

$iResult = _DeviceIoControl($hDisk, $DFP_RECEIVE_DRIVE_DATA, _
                $tSCIP, DllStructGetSize($tSCIP), _
                $tSCOP, DllStructGetSize($tSCOP))
If $iResult = 0 Then
      Exit(ConsoleWrite("_DeviceIoControl fails, error code: " & @error & @CRLF))
EndIf

Dim $sSerialNum
For $i = 21 to 40 Step 2
      $sSerialNum &= DllStructGetData($tSCOP, "Buffer", $i + 1)
      $sSerialNum &= DllStructGetData($tSCOP, "Buffer", $i)
Next
$sSerialNum = StringReplace($sSerialNum, " ", "")


$tSCIP = 0
$tSCOP = 0
$tQuery = 0
$tDescr = 0
_WinAPI_CloseHandle($hDisk)
Dim $aA = -1
If $msg = 0 Then $aA = $sSerialNum
If $msg = 1 Then $aA = $sPhysDisk
Return ($aA)
EndFunc

Func _DeviceIoControl($hDevice, $iCtrlCode, $pIn, $iIn, $pOut, $iOut, $pOverlapped = 0)
      Local $iResult

      If IsDllStruct($pIn) Then $pIn = DllStructGetPtr($pIn)
      If IsDllStruct($pOut) Then $pOut = DllStructGetPtr($pOut)
      If IsDllStruct($pOverlapped) Then $pOverlapped = DllStructGetPtr($pOverLapped)
      $iResult = DllCall("Kernel32.dll", "int", "DeviceIoControl", "ptr", $hDevice, _
                        "dword", $iCtrlCode, "ptr", $pIn, "dword", $iIn, _
                        "ptr", $pOut, "dword", $iOut, "int*", 0, "ptr", $pOverlapped)
      Return SetError(_WinAPI_GetLastError(), $iResult, $iResult)
        EndFunc      ;==>_DeviceIoControl
       
       
Func _MakeCtrlCode($iDevType, $iFunction, $iMethod = 0, $iAccess = 0)
      Return bitOR(bitShift($iDevType,-16),bitShift($iAccess, -14),bitShift($iFunction, -2), $iMethod)
EndFunc      ;==>_MakeCtrlCode

lxwlxwayy 发表于 2015-10-27 10:46:27

代码不错...

nqawen 发表于 2015-10-27 12:40:26

加识别码啊,,一般可以用硬盘、网卡来区分

gyhhi 发表于 2015-10-28 18:58:39

回复 3# FluxayX


   谢谢。亲测可用。
页: [1]
查看完整版本: 【已解决】请问如何识别不同的电脑?我想让我的软件只能在我的电脑上运行,怎么办