Writes data into a QLM cookie. To read keys, use the ReadCookie API.
C#: bool StoreCookie(string data, string cookieName, int index, out bool userLevelResult, out bool machineLevelResult, out string errorMessage)
Parameters
StoreCookie returns true if either the user level or the machine level operation is successful.
- data - the data to write
- cookieName - a unique name for the cookie
- index - the index of the element to write. You can write multiple entries into a iven cookie.
- userLevelResult- returned boolean value indicating whether the operation was successful at the user level.
- machineLevelResult- returned boolean value indicating whether the operation was successful at the machine level.
- errorMessage- returned error message containing details about the failure, if any.
Description
QLM can store 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.
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 to your product (GUID in Define Products page) is created and contains the license keys.
Data in the registry
When QlmLicense.StoreKeysLocation is set to EStoreKeysTo.ERegistry, QLM tries to stores 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]
Comments
0 comments
Please sign in to leave a comment.