2

I'm deploying application written in C# with .NET Framework 4.0 CP using Visual Studio 2010. I'd like to include uninstall option in the application folder. I've already tried creating shortcut to msiexec.exe system file but that didn't really worked for me, besides I've heard that on earlier OS (I'm on Win7) it might cause problems.

As I noticed one can uninstall program using the same setup that was used for installing it. So right now I'm somehow trying to include or create the setup file in the application folder. How exactly can I achieve that?

4