Counting the number of client installations

隐身守侯 提交于 2019-12-13 12:11:42

问题


I am developing shareware and I am interested in knowing how many times my products has been installed on users machines. I am not looking for security or license questions but I am just interested in the conversion ratio (installations vs. registrations). I thought about a simple servlet which will be called from my clients with a UID and which will count the distinct UID calls. Does anyone know of a more elegant solution or something ready to use? My client software is written in .NET. Best regards Sebastian


回答1:


A bit old question, but I had the same question just one year ago. I am also a shareware developer, and like you, I wanted to know the conversion rate between free installations and paying users. My software was working under MacOS and Windows so I wanted a cross-platform solution.

I ended up making my own solution. For Windows, it is a DLL that you can call from your application and send the usage data to Google Analytics (as a shareware dev, you probably already have a Google Analytics account). I chose Google Analytics as the reporting platform because it is free, so is my DLL (for the moment; I do not know in the future).

More info at: https://www.starmessagesoftware.com/softmeter/sdk-api

Sending usage data is very easy. Example:

// don't forget to pick user's consent
bool userGaveConsent = .....(pick from the app settings)....

start("MyApp", "1.0", "Free trial", "Windows edition", "UA-12345-0", userGaveConsent);

// you can send any number and combination of pageViews, screenViews, events, exceptions
sendScreenview("Main screen");
sendEvent("Registration", "User entered registration code", 1 );
sendException("Error while importing a custom file", false);

stop(void);


来源:https://stackoverflow.com/questions/10727917/counting-the-number-of-client-installations

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!