3
Answers

how TO make windows application license

radha krishna

radha krishna

8y
1.2k
1
Please send the example article on this item.
 
 i wan't make my windows application setup file having license with a key to activate and trail period basis.
 
Answers (3)
1
Guest User

Guest User

Tech Writer 840 32.9k 8y
http://www.codeproject.com/Articles/15496/Application-Trial-Maker
0
Vishal Jadav

Vishal Jadav

NA 1.3k 255.7k 8y
Hi,
As Tejas said there are multiple methods to make application license.
You can use Hardware ids such as HDDR, Main board ID etc...
You have to apply your own logic how your application should behave when checking license or generating license.
Hope it helps.
Thanks..
0
Tejas Trivedi

Tejas Trivedi

610 1.8k 183.5k 8y
Hello Radha Krishna,
There are several ways to implement licencing to application build under .NET platform.
  • Create secret licence key for the user. To make it more secure append the user/company's name to generate licence key. For encryption you can use SHA1
  • For advance security, you can also create hardware lock and of course combination of hardware lock and licence key.
Hope, this will provide you high level idea to implement the licencing. Feel free to write me if more information is required.