StoreKeysEx

Description

Stores license keys on the end user system.

void StoreKeysEx(string activationKey, string computerKey, 
                 out bool userLevelResult, out bool machineLevelResult, 
                 out string errorMessage)

Arguments

NameData TypeDescription
activationKeystringthe activation key to store
computerKeystringthe computer-bound key to store
userLevelResultboolreturned value indicating whether the operation was successful at the user level
machineLevelResultboolreturned value indicating whether the operation was successful at the machine level
errorMessagestringreturned error message containing details about the failure, if any

Remarks

To read keys, use the ReadKeys API. To clear the stored keys, use the DeleteKeysEx API.

QLM stores its data in two locations: one location at the user level and another location at the machine level. The StoreKeysOptions property controls where data is stored.

Additionally, the StoreKeysLocation property controls whether data is stored on the file system or in the registry.

EFile / Data on the file system

If you are running XP, the folders are:

  • C:\Documents and Settings<your account name>\Application Data\IsolatedStorage*
  • C:\Documents and Settings\All Users\Application Data\IsolatedStorage

On Windows 7 or higher, the folders are:

  • C:\ProgramData\IsolatedStorage
  • C:\Users\tom\AppData\Local\IsolatedStorage

Example on Windows 7 or higher:
C:\ProgramData\IsolatedStorage\1zy03lmk.jql\epxur3qn.na0\StrongName.gziza0ait44cgjtqq2fgdpi3yp0idvio\AssemFiles

Under these folders, a file whose name is the GUID associated with your product (GUID in the Define Products page) is created and contains the license keys.

ERegistry / Data in the registry

When QlmLicense.StoreKeysLocation is set to EStoreKeysTo.ERegistry, QLM tries to store the keys in 2 registry hives, one hive at the user level and one hive at the machine level.

On a 32-bit OS, QLM will write license information to:

  • HKEY_CURRENT_USER\Software\Classes\CLSID[GUID]
  • HKEY_LOCAL_MACHINE\Software\Classes\CLSID[GUID]

On a 64-bit OS, QLM will write license information to:

  • HKEY_CURRENT_USER\Software\Classes\CLSID[GUID]
  • HKEY_LOCAL_MACHINE\Software\Classes\CLSID[GUID]
  • HKEY_CURRENT_USER\Software\Wow6432Node\Classes\CLSID[GUID]
  • HKEY_LOCAL_MACHINE\Software\Wow6432Node\Classes\CLSID[GUID]

EFileCommonData

When selecting this option, license keys are stored in C:\ProgramData<CommonDataFolder>>CommonDataFileName>

where :

CommonDataFolder = Product Name or the value configured in the Protect Your App wizard

CommonDataFileName = license.txt or the value configured in the Protect Your App wizard