09/02/22 08:32:30 bc5kSiqB0
>>303
同一マシンでHWIDが同じ場合に限り流用できる。
同一マシンでもOSを再インストールしたりしたらもうダメ。
HWIDは以下のプログラムでチェックできる。
using System;
using System.Runtime.InteropServices;
class Program {
[DllImport("blackbox.dll")] extern static int GetHWID(byte[] bytes);
static void Main(string[] args) {
byte[] buf = new byte[20];
GetHWID(buf);
Console.WriteLine(BitConverter.ToString(buf));
}
}