3

I wrote some application under .Net 4.0 and I am looking a way to deploy it.

I am after some kit that will be able to:

  • Put my files in some predefined folder,
  • Create all needed short cuts
  • Insert my application under the programs menu.

Ideally this kit should be free and simple to use.

Night Walker
  • 20,638
  • 52
  • 151
  • 228

3 Answers3

4

Definitely sounds like a job for WiX (Windows Installer XML Toolset).

Its a free open source MSI authoring toolkit that is xml based. It exposes 100% of the functionality of MSI and I've found it to be very useful in the past - it's definitely capable of doing everything that you have stated in your question.

Also as WiX is now widely used, there are plenty of resources available on the web:

Community
  • 1
  • 1
Justin
  • 84,773
  • 49
  • 224
  • 367
1

Use either Wix for Windows (or the Web Deploy kit for Web)

Mitch Wheat
  • 295,962
  • 43
  • 465
  • 541
0

Inno Setup is a good option too.

naveen
  • 53,448
  • 46
  • 161
  • 251