How to bind a license to your own unique identifier
Overview
Configuration
Fingerprint Computation
string GetUniqueIdentifier()
{
QlmHardware hw = new QlmHardware();
// Combine the computer name with the first volume serial number
string computerID = hw.GetMachineName();
computerID += hw.GetFirstVolumeSerialNumber ();
return computerID;
}
// Example when to call GetUniqueIdentifier
LicenseValidator lv = new LicenseValidator (settingsXml);
lv.ValidateLicenseAtStartup (GetUniqueIdentifier(), ...);
// When launching the wizard
string args = String.Format ("/settings \"{0}\" /computerID {1}", settingsXmlFile, GetUniqueIdentifier());
lv.QlmLicenseObject.LaunchProcess ("QlmLicenseWizard.exe", args, true, true);PreviousProperty path is incorrect for typeNextHow to create a search to show licenses associated to a Reseller / User Group
Last updated