licensing

How to create two LicenseFile pages in Inno Setup

别来无恙 提交于 2019-12-04 11:23:13
I'm making an Inno setup for my application. I'm using this command: [Languages] Name: "english"; MessagesFile: "compiler:Default.isl"; LicenseFile: "C:\Users\LocDaiLe\Desktop\license.txt" to display a license agreement window, but I want two license agreement window right after each others. How can I archieve this - thank you You have to code the second license page as a custom page . You can start with the CreateOutputMsgMemoPage function , which creates a page with a memo. Then, you just add radio buttons for accepting the license. [Files] ; Embed the second license files ; (the part after

Where to create/keep secret files for license information/trials on Windows/Mac OS X/Linux? [closed]

眉间皱痕 提交于 2019-12-04 10:38:23
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 4 years ago . I'm writing a commercial product which uses a simple registration mechanism and allows the user to use the application for a demo period before purchasing. My application must somewhere store the registration information (if entered) and/or the date of the first launch to

How do I find the open source license that is right for my project? [closed]

自作多情 提交于 2019-12-04 10:16:07
问题 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 6 years ago . I am about to host my first open source project. I will be hosting it on codeplex where I can choose between the follwing licenses: Apache License 2.0, Common Development and Distribution License (CDDL), Eclipse Public License (EPL), GNU General Public License (GPL) v2, GNU Library General Public License (LGPL),

Can EPL (Eclipse Public Licence) be used in commercial context? [closed]

我的梦境 提交于 2019-12-04 09:12:17
问题 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 . I'm developing an application which requires a third party framework which is under an Eclipse Public Licence (EPL). The application is a server-side commercial application which will be running on my servers. The EPL software is distributed as binaries (jar files). I'm only using the packages and am not making

Product Serial Key / Purchase [closed]

半城伤御伤魂 提交于 2019-12-04 09:10:21
I am attempting to create an application which, at some point, I would like to sell. I understand that any protection scheme can be bypassed . Could you recommend any ideas on what would be easy for the end user but also be at least slightly resistant to piracy. I've had some ideas about: The user creating an account when the buy the software then activating it once by them entering those details on the program and it downloading an update file which provides the paid functionality and is unique to that user. Serial key which checks against an online database and activates part(s) of the

Getting CPU or motherboard serial number?

99封情书 提交于 2019-12-04 09:03:38
I'm trying to get the CPU serial or motherboard serial using C or Python for licensing purposes. Is it possible? I'm using Linux . You need to use the CPUID instruction. CPUID Most C compilers have some support for inline assembly, but you will need to know what you are doing. Under Linux, you could use "lshw -quiet -xml" and parse its output. You'll find plenty of system information here: cpuid, motherboard id and much more. You can get the CPUID. Maybe linux command 'dmidecode' can help you. You can exec this command,or load the source code of "dmidecode". Next is the output of "dmidecode -t

Installshield Limited Edition licencing on build server

假如想象 提交于 2019-12-04 08:43:27
I have recently installed Installshield LE on my local PC for vs2010, built a package and now wanting it to be built on our build server. I have also installed it on our build server. I am getting the error: error : -7159: The product license has expired or has not yet been initialized. I have logged onto the build server, started vs and entered in my licence code. However, this has has not resolved the error. I have read about the stand alone version but that appears to be only available for premium edition. Anyone have any ideas? FlyerMM if you are using the 2012 Spring edition of

static linking Qt with open source version [closed]

﹥>﹥吖頭↗ 提交于 2019-12-04 08:42:54
问题 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 . I'm developing an application with the Qt open source edition. As I don't want to deliver the Microsoft Visual Visual C(++) redistributables, I'd like to use a static-linked version of Qt. The Qt licensing information says that I "should" develop with a commercial Qt license if I want to use static linking in my

Licenses and sessions the RESTful way

牧云@^-^@ 提交于 2019-12-04 08:41:13
问题 This question crossed my mind after I read this post: “Common REST Mistakes: Sessions are irrelevant” If sessions are indeed discouraged in a RESTful application. How would you handle licenses in such application. I'm specifically referring to concurrent licenses model and not named licenses. i.e. the customer buys X licenses which means the application may allow up to X users to be logged in simultaneously. Which means that the application must hold a state for current logged in users. I

GPL 2.0 Free Telerik Extensions for ASP.NET MVC [closed]

北城余情 提交于 2019-12-04 08:04:28
Is my ASP.NET MVC project automatically GPL 2.0 licensed by including these libraries? I always find this confusing with the GPL. Yes, it is. You'll be statically referencing their code. That clearly falls under the "requires a GPL-compatible license" areas. You can, of course, buy a commercial license or use a different component if you don't want to GPL your project. Your application only requires a GPL license when you distribute your application. For example: Scenario #1: You develop a website which uses a mysql database and the Telerik ASP.NET MVC controls (both GPL Open Source licenses).