Error in activating license.Answered

0x1A is the error from turboactivate.dll, its running on VM machine and he could able to open Wyday site but activation is not happening.

Answer

TurboActivate.h tells you exactly what the error is and how to “fix it” if that's actually what you want to do (which it probably isn't).

/*
MessageId: TA_E_ALREADY_ACTIVATED
Message code (in Hex): 0x1A
Message code (in Decimal): 26

MessageText:

You can't use a product key because your app is already activated
with a product key. To use a new product key, then first deactivate using
either the TA_Deactivate() or TA_DeactivationRequestToFile().
*/
#define TA_E_ALREADY_ACTIVATED ((HRESULT)0x0000001AL)

So, you're trying to activate with a new key when they're already activated. So… don't do that.

, edited