I need a windows installer that can install my program only X number of times. Say 10 or 20 or a defined number I set. Then the installer ceases to operate or can give a message to contact my company. Ed

link|improve this question
I have a feeling that this question would be better suited for SO, however don't open a new question there, this one will be migrated if necessary. – Ivo Flipse Feb 16 '10 at 17:06
Unless your software is Enterprise class, please reconsider. There's some software I have had to support, works well, reasonably priced, that I will never recommend or approve again - because the hassles of their installation procedure are not worth it. And the support they have needed to give us probably wasn't worth it for them either. – Mark Ransom Feb 16 '10 at 18:19
feedback

migrated from superuser.com Feb 16 '10 at 17:52

This question came from our site for computer enthusiasts and power users.

2 Answers

There are several solutions.

  • One solution that is quite common is to require online authentication for the program for each new install.

Solutions that may be viable in some situation:

  • Self modifying executable. Just let the installer modify itself and reduce some counter. But it is easily defeatable by making multiple copies of the executable.
  • If you want to limit the installer only on one computer add some registry key and check that. Also easily defeatable
link|improve this answer
1  
Just imagine the consequences of an online authentication server that breaks or goes down. Not only do you have a server that is down, but you also have dozens or hundreds of clients calling in thinking that you've stolen their money or screwed them over. What a bad idea! – eleven81 Feb 16 '10 at 17:36
@eleven81 read the ...for each new install.... part :) – egon Feb 16 '10 at 17:42
Plus for the online authentication, minus for the other suggestions. Online authentication against keys embedded in setup.exe's is the only way this is going to work. – Chris Becke Feb 16 '10 at 17:59
feedback
  1. In my opinion the best way to doing this is using a hardware block/dongle. They're awful for the user, but they work in limiting access. The other advantage to these blocks, is that you can install the software on numerous pcs, but the software can only run on the pcs with plugged in usb keys.
  2. Another solution to have some form of an encrypted file/db, that whenever an installation is flagged as complete, it adds a value. When the number of values reaches X, then setup won't work anymore

EDIT the real issue is that most applications are installed using a dvd/cd, in order to limit the number of installations, you need to be able to write back to the dvd. I don't think this is feasible in most cases.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown