Hi
Now that the new version is ready I would like to know if the custom registration key
method is ready.
I would like to get sample script to control hardware-locked keys.
For example:
In the menu > Security > Advanced options > Use a costum script (advanced users only), Which is option 6 in menu.
I would like to have script to get CPU and ID info, but have a shorter registration key
e.g
From: F93FF-0EJI8-9543F-9A964
Get only: F93F
I tried as below:
function GenerateUserCode(name, data1, data2, pubid, systid: String): String;
var
SA: String;
begin
SA := MD5OfAString(name + data1 + data2 + pubid + systid);
Result := Copy(SA, 4, 4);
end;
And got the message error at compiling time:
“Unknown method or routine. CostumuniqueID.
Source position 360,33”
Moises
Now that the new version is ready I would like to know if the custom registration key
method is ready.
I would like to get sample script to control hardware-locked keys.
For example:
In the menu > Security > Advanced options > Use a costum script (advanced users only), Which is option 6 in menu.
I would like to have script to get CPU and ID info, but have a shorter registration key
e.g
From: F93FF-0EJI8-9543F-9A964
Get only: F93F
I tried as below:
function GenerateUserCode(name, data1, data2, pubid, systid: String): String;
var
SA: String;
begin
SA := MD5OfAString(name + data1 + data2 + pubid + systid);
Result := Copy(SA, 4, 4);
end;
And got the message error at compiling time:
“Unknown method or routine. CostumuniqueID.
Source position 360,33”
Moises
Last edited: