1900 results found
Finally, applying this method didn't change anything: https://wyday.com/limelm/help/faq/#fix-broken-wmi What can we do next ?
I've found solution here: https://wyday.com/forum/t/2756/you-must-enter-a-valid-product-key/ After [… removing implementation detail folders], TA_CheckAndSavePKey() finally returns TA_OK, but now TA_Activate() returns TA_E_PKEY (code 2) on a valid key.
I have read all the informations given in https://wyday.com/limelm/help/faq/#disabled-adapters .
I covered this above: https://wyday.com/forum/t/18930/vm-enabled-running-clones-of-the-same-vm-on-different-pcsmacs/#post-40052 Cloned VMs are treated as the same machine.
https://wyday.com/limelm/api/rest/api_key=mykey&format=json&nojsoncallback=1&method=limelm.pkey.generate&version_id=9433&num_keys=1&num_acts=2&email=soft@gmail.com
Hey Will, A ton more information is needed: https://wyday.com/limelm/help/faq/#useful-reports Versions (TA, Windows, Drivers, etc.), exactly which adapters are installed, whether they installed the latest drivers (again, version numbers), etc.
static WebRequest GetRequest(string url, string aws_key, string aws_sec){ WebRequest request; // Authenticate AWS S3 Server // here is the basic Http Web Request string s3_url = url.ToString(); // "https://" + bucketName + ".s3.amazonaws.com/ADD_PATH_HERE"; // "https://s3.amazonaws.com"; request = WebRequest.Create(s3_url) as HttpWebRequest; request.Method = "GET"; WebHeaderCollection headers = (request as HttpWebRequest).Headers; // the canonical string combines the request's data // with the current time string httpDate = DateTime.UtcNow.ToString("ddd, dd MMM yyyy HH:mm:ss " ) + "GMT"; headers.Add("x-amz-date", httpDate); // our request is very simple, so we can hard-code the string string canonicalString = "GET\n\n\n\nx-amz-date:" + httpDate + "\n/" + System.Text.RegularExpressions.Regex.Replace(s3_url, "https://s3.amazonaws.com/", "").ToString(); // bucketName + "ADD_PATH_HERE"; // now encode the canonical string Encoding ae = new UTF8Encoding(); // create a hashing object HMACSHA1 signature = new HMACSHA1(); // secretId is the hash key signature.Key = ae.GetBytes(aws_sec); byte[] bytes = ae.GetBytes(canonicalString); byte[] moreBytes = signature.ComputeHash(bytes); // convert the hash byte array into a base64 encoding string encodedCanonical = Convert.ToBase64String(moreBytes); // finally, this is the Authorization header.
I'm using LimeLM with FastSpring though, so I came across this post and it looks like it works: https://wyday.com/forum/t/2370/fastspring-of-activations/ For anyone else who is in the same situation, all I did was modify the License Generator PHP Script for the product at Fastspring.
Essentially, I want to know what the current and correct way to check for updates on every startup is (because even your example code here https://wyday.com/wybuild/help/automatic-updates/windows-services-console-apps.php calls ForceCheckForUpdate()).
Revoke it from your back-office code using the LimeLM web API: https://wyday.com/limelm/help/api/limelm.pkey.revoke/ Those are the solutions to your problem.
If it's still saying you're in a VM, then see our FAQ: https://wyday.com/limelm/help/faq/#in-vm If you don't have Hyper-V enabled but TurboActivate *still* says you're in a VM (and you went through all the steps in the FAQ -- disabling Hyper-V, restarting the system, etc.), then we'll collect more information from you to see if it truly is a false-positive.
This is how you do it: https://wyday.com/limelm/help/using-turboactivate-with-csharp/#check-activation Notice that you're checking IsActivated() is !
See: https://wyday.com/limelm/help/license-features/ So, if email is one of the fields you want to read from your app , then create a custom license field called "email" that is "readable from your app", and then you can save data to that field and read it from your app.
See: https://wyday.com/wybuild/help/commandline.php We do not currently have a way to create projects from scratch via commandline.
Hello, I found an application which is called runasdate.exe from this link https://www.nirsoft.net/utils/run_as_date.html We found a infinite trial issue.
You offline de-activated the TFS (not recommended): https://wyday.com/limelm/help/turbofloat-server-commandline/ Hence it succeeding the first time and not the second time.
https://wyday.com/limelm/help/faq/#internet-error is really not written for end-users.
We created a FAQ: https://wyday.com/limelm/help/faq/#useful-reports Code samples, parameters passed, error codes, version numbers, reproducibility, etc., etc., etc.
Delphi has configuration options to disable this broken functionality: https://wyday.com/limelm/help/using-turboactivate-with-delphi/#privileged-instruction We have no experience with Fortran compilers / debuggers, but they likely have a similar option.
Yes, or servers you specify: https://wyday.com/wybuild/help/custom-wyupdate-version.php