English 中文(简体)
How to include advertising in an application? [closed]
原标题:

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 10 years ago.

Are there any services that allow you to place advertising in Windows software? I want to give away my software for free but still need to eat!

问题回答

Check out OpenCandy, they have a really nice concept IMHO: only a single, opt-in ad - in the installer (so your application remains ad-less). There is an interesting post about them @ DonationCoder.

It is, of course, trivial to put a fixed collection of adverts into your code. The trouble comes if you want to sell eyeballs and have the ads change. Then the code has to go talk over the network to get new adds.

Many people would have a name for this: adware. If people find you making network connections behind their back, as it were, they are likely to break out some more negative terms.

However, if you are completely open and honest about it when you offer the code for download, then your conscience might be clear.

Practically, you need to have code that makes a network connection to some site of yours, pulls the ad content, and displays it in some sort of annoying popup.

Check with individual affiliate programs to see if they allow links in applications.

You can also try the Freemium model: Turn on some extra features if they pay for your program.

Or link to your website for support information, instructions, etc., and place ads there.

Or offer an e-mail newsletter with updates, news, etc. Advertising in these is easier.

You can also ask this over at http://www.startups.com





相关问题
Why running a service as Local System is bad on windows?

I am trying to find out the difference between difference service account types. I tumbled upon this question. The answer was because it has powerful access to local resources, and Network Service ...

Programmatically detect Windows cluster configuration?

Does anyone know how to programatically detect that a Windows server is part of a cluster? Further, is it possible to detect that the server is the active or passive node? [Edit] And detect it from ...

get file icon for Outlook appointment (.msg)

I ve read Get File Icon used by Shell and the other similar posts - and already use SHFileInfo to get the associated icon for any given extension, and that works great. However, Outlook uses ".msg" ...

Identifying idle state on a windows machine

I know about the GetLastInputInfo method but that would only give me the duration since last user input - keyboard or mouse. If a user input was last received 10 minutes ago, that wouldn t mean the ...

Terminating a thread gracefully not using TerminateThread()

My application creates a thread and that runs in the background all the time. I can only terminate the thread manually, not from within the thread callback function. At the moment I am using ...

热门标签