|
I'm looking to implement a basic product activation scheme such that when the program is launched it will contact our server via http to complete the activation. I'm wondering if it is a big problem (especially with bigger companies or educational organizations...
Started by philcruz on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
But I can.
I can't tell you how prevalent this will be, sorry .
From "phoning home" to an activation server.
|
|
I have a class which is COM, and a want to launch an elevated COM object. I'm using LaunchElevatedCOMObject() method from VistaBridgeLibrary but all I get is the error code 0x80080017, which is "The class is not configured to support Elevated activation...
Started by jonaspp on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Http://chrison.net/UACElevationInManagedCodeGui....
This worked for me.
Christoph Wille got something going, check his monologue in this thread for links to his blog articles and code .
Unfit for public consumption.
Hmya, that method is marked "internal".
|
|
What is a good way to randomly generate some not-likely-to-be-randomly-generated-again activation codes to use for activating software? I am making an auto-fulfillment system for a web application.
I am using C#.
Started by Ryan on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Shrinkwrapped....
In other cases (e.g.
That's fine if activation is happening by (say) clicking on a URL provided in email, or if you can expect the user to copy and paste a value from an activation email.
If the user has to enter it manually.
|
Ask your Facebook Friends
|
Hi folks, i have win 7 ultimate installed for about 2 weeks now and couple more weeks to activate. What happens after the trial period has ended without activation?
TIA
Started by Wisdom on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
After the activation grace period, you enter.
I fixed it with Debian and FreeBSD.
Successfully activated.
|
|
I get 6,4,3 for the first 3 questions respectively, but I don't know how to figure out the last one. However, the solution manual indicated 7,5,4,18 as the answers.
int sum(int x[], int N) { int k = 0; int s = 0; while (k < N) { s = s + x[k]; k = k...
Answer Snippets (Read the full thread at stackoverflow):
It calls sum.
Last one is not asking the activation record max required stack size at any given point.
|
|
How would I do to check if a email actially exists? Cant understand how sites do to send mails with a unique link that the users clicks to validate that he is the owner of email =/
Make a 2 new columns called activationkey and activated and store some...
Started by Martin on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
When they register, I'll generate maybe 32 chars of upper/lower case alphanumeric ... .
When they visit my activation script, if I find a match, I activate them.
I generally send a link that contains the userid, and the activation key.
|
|
I've been seeing a lot of activation links sent via email and I implemented one but just isn't satisfied with it (the long activation links from other sites kinda looks cool but I can't see the point of it being so long). Here's how my activation link...
Started by Ygam on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Have you thought about using something like tinyURL? The Tiny... .
Is it the length you're concerned with, or the look of the URL?
I'm guessing you're using Zend Framework or something similar, that's why it shows "segments" as opposed to a parameter string .
|
|
Windows Process Activation Service is installed under features on my Windows 2008 server running IIS7. Should i be able to see the NetMsmqActivator (Net.Msmq Listener Adapter) in the services list? I don't see it there. My messages are sitting in the ...
Started by BurnWithLife on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I had Windows Process Activation Service enabled but not WCF Activation :-(
From the Start Foundation Non-HTTP Activation feature..
Got it.
|
|
I've written an application and I'd like to add a registration key/serial number to it (I'm big on minimum inconvinience - ala #4 at this Eric Sink article ). My question is about where to store the "activation" once the application has been registered...
Started by rwmnau on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Your software would have to do two registry lookups.
I think) We save our activation code to the registry for the current user (HKCU) we have had very will save to the activation for all users.
|
|
Hi,
I have a design problem which I would like some input on. Here are the constraints:
Each user must have a working e-mail address when registering their account. When registering their user account an activation email should be sent, containing a link...
Started by Kent on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
If this state before the activation gets complex, you can reference....
One thing; I'd split out the activation and non-activated users, because it is just a state.
A column for "Activated", defaulting to 0 (not activated).
|