本帖最后由 pjy612 于 2023-8-22 01:34 编辑
看了下新版是换了网络验证吗?
直接 hosts admin.ncre88.net 断网然后手动写注册码就行了。
注册码也简单
"TRUE&注册码&MAC&"
的大写MD5 放 user.dat (引号不要)
注册码 放 ActivationCode.dat
MAC地址 运行一次程序从 MAC.dat 里面读就行
NCRE.zip
(1.18 KB, 下载次数: 143)
通用密码懂得都懂
补充说明,最好先用原程序读两次MAC看看是否一致。
两次一致的就只能自己算码了(因为读的网卡,家用是这样)
不一致的可以直接覆盖(因为读不到会以文件内容为准,办公电脑是这样,附件是在办公电脑上生成的)
[PowerShell] 纯文本查看 复制代码 $mac = Get-Content "MAC.dat"
$code = "52pojie"
Set-Content "ActivationCode.dat" $code -NoNewline
$user = "TRUE&${code}&${mac}&"
$hash = [System.Security.Cryptography.MD5]::Create().ComputeHash([System.Text.Encoding]::UTF8.GetBytes($user))
$hashString = [BitConverter]::ToString($hash) -replace '-', ''
Set-Content "user.dat" $hashString -NoNewline
|