Are you using IsGenuineEx() in your app? If so, the user will no longer be able to use your app after N days (where N is usually 90, but you can specify any number of days).
Does that make sense?
How to delete product key?
I`m deleted product key use wybuild.com but user possible use this key? why?
Are you using IsGenuineEx() in your app? If so, the user will no longer be able to use your app after N days (where N is usually 90, but you can specify any number of days).
Does that make sense?
What language are you using? Show me the code you're using.
IsGenuineResult gr = TurboActivate.IsGenuine();
isActivated = gr == IsGenuineResult.Genuine || gr == IsGenuineResult.GenuineFeaturesChanged || gr == IsGenuineResult.InternetError;
I'll assume you're using C#. See: https://wyday.com/limelm/help/using-turboactivate-with-csharp/ .
try{ // Check if we're activated, and every 90 days verify it with // the activation servers. In this example we won't show an // error if the activation was done offline // (see the 3rd parameter of the IsGenuine() function) gr = TurboActivate.IsGenuine(90, 14, true);
isActivated = gr == IsGenuineResult.Genuine || gr == IsGenuineResult.GenuineFeaturesChanged ||
// an internet error means the user is activated but // TurboActivate failed to contact the LimeLM servers gr == IsGenuineResult.InternetError;}catch (TurboActivateException ex){ MessageBox.Show("Failed to check if activated: " + ex.Message);}