trialware

Managing features on a license basis for a C++ application [closed]

筅森魡賤 提交于 2020-01-23 06:14:39
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . We are trying to offer a license mechanism for every feature our Linux application is running, and we are thinking of controlling it in a centralized way using a license server: Our aim for licensing is: Deny features the operator has not bought. Offer trials (features which expire if they are not bought).

Managing features on a license basis for a C++ application [closed]

谁都会走 提交于 2020-01-23 06:14:05
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . We are trying to offer a license mechanism for every feature our Linux application is running, and we are thinking of controlling it in a centralized way using a license server: Our aim for licensing is: Deny features the operator has not bought. Offer trials (features which expire if they are not bought).

Managing features on a license basis for a C++ application [closed]

一曲冷凌霜 提交于 2020-01-23 06:12:12
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . We are trying to offer a license mechanism for every feature our Linux application is running, and we are thinking of controlling it in a centralized way using a license server: Our aim for licensing is: Deny features the operator has not bought. Offer trials (features which expire if they are not bought).

How to create a undeletable registry key (or file) in C++

别说谁变了你拦得住时间么 提交于 2020-01-12 09:54:54
问题 I would like to create time limited version of a game I am developping in C++. I already meet some program that create files I am still not able to delete, and other that created registry key very hard to delete (because there were several sub key and needed to change owner to the deeper first, delete it go up, change owner...). Then I think the only way is to create something in the computer that is not (or hardly) deletable to mark the beginning of trial. I know how to create key or file

How to create a undeletable registry key (or file) in C++

给你一囗甜甜゛ 提交于 2020-01-12 09:52:23
问题 I would like to create time limited version of a game I am developping in C++. I already meet some program that create files I am still not able to delete, and other that created registry key very hard to delete (because there were several sub key and needed to change owner to the deeper first, delete it go up, change owner...). Then I think the only way is to create something in the computer that is not (or hardly) deletable to mark the beginning of trial. I know how to create key or file

Error message when trying to start an expired trial UWP app downloaded from the Windows Store — “A device attached to the system is not functioning”

青春壹個敷衍的年華 提交于 2019-12-11 04:53:39
问题 I'm trying to understand how the trial licensing works for my Win32 app that I converted to a UWP app using the Desktop Bridge. The app was submitted to the Windows Store as a paid app ($1.99 per copy) with a 1 day trial. So I downloaded it as a trial app onto my test Windows 10 machine and let it run for longer than 24 hrs w/o buying it. After a day the app was still present on the computer (in the Start menu) but when I tried to run it again by clicking its Start menu icon, I was greeted by

How to time-bomb an Android application?

独自空忆成欢 提交于 2019-12-09 04:29:14
问题 Hello does anyone have a code example of how I can time bomb an Android application so It will not work after a given date? I would like to release a "beta" application for testing but would like to make sure it will only work while the application is officially in beta. 回答1: I would suggest using the Calendar class and having your application checking the current date against your expiration date in your OnResume(s). The code would look something like this: protected void onResume() { super

What is the Best way to create a program which works only in the predefined trial period(evaluation period)?

橙三吉。 提交于 2019-12-06 07:21:36
问题 I need to create a simple application that doesn't work after 30 days. How can I do that ? Is there a way to use Trial program after 30 days ? 回答1: There is always a way to use a trial program after 30 days. 回答2: If by "best" you mean least breakable, then there is really only one way: make it an Internet-based "software as a service" application. If you don't provide access, they're not using the software. If it is a desktop-based application , then some key piece of functionality would

Managing features on a license basis for a C++ application [closed]

爷,独闯天下 提交于 2019-12-05 03:12:39
Closed. This question is off-topic . It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . We are trying to offer a license mechanism for every feature our Linux application is running, and we are thinking of controlling it in a centralized way using a license server: Our aim for licensing is: Deny features the operator has not bought. Offer trials (features which expire if they are not bought). Activate features for periods of time, and make them available just for some period of time. Is there any

What is the Best way to create a program which works only in the predefined trial period(evaluation period)?

馋奶兔 提交于 2019-12-04 14:59:11
I need to create a simple application that doesn't work after 30 days. How can I do that ? Is there a way to use Trial program after 30 days ? There is always a way to use a trial program after 30 days. If by "best" you mean least breakable, then there is really only one way: make it an Internet-based "software as a service" application. If you don't provide access, they're not using the software. If it is a desktop-based application , then some key piece of functionality would still have to be on an online server somewhere. If the hacker has the entire application on their local machine, it