Browse Source

机器码生成方式修改

中职版本
zhichao lei 4 years ago
parent
commit
053ed2af7d
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      Learun.Framework.Ultimate V7/Quanjiang.DigitalScholl.WebLicense/LicenseChecker.cs

+ 2
- 2
Learun.Framework.Ultimate V7/Quanjiang.DigitalScholl.WebLicense/LicenseChecker.cs View File

@@ -21,9 +21,9 @@ namespace Quanjiang.DigitalScholl.WebLicense
{
public static string GenerateMachineId()
{
string cpuid = LicenseManager.GetCPUSerialNumber();
string cpuid = ""; LicenseManager.GetCPUSerialNumber();
string hd = LicenseManager.GetHardDriverNumber();
string bios = LicenseManager.GetBoisNumber();
string bios = ""; LicenseManager.GetBoisNumber();
string uid = LicenseManager.GetMachineName();
return DESEncrypt.Encrypt(cpuid + hd + bios + uid, "bjquanjiang@2020!");
}


Loading…
Cancel
Save