5

I have just finished creating a wpf application in visual studio express C# and need to create an installer file. This is going on just a couple of machines because it is a personal program for me. I have looked into Advanced Installer using the simple method but cannot figure out how to do that or if it can even create a wpf installer. I have also tried WIX with the same results.

Any tips for doing this?

Pickels
  • 30,764
  • 23
  • 107
  • 174
mtlca401
  • 1,273
  • 3
  • 13
  • 23
  • 1
    The Simple project in Advanced Installer is pretty straightforward. Add the application files and build an MSI which installs them. What problems did you encounter? – cosmin Jun 14 '12 at 07:04
  • The problem I am having is I don't now which folders and files to select. I selected the bin/release folder and the program does open but I am missing my images. I copied those manually and moved the files to have the same folder structure as the project folder. My images showed up, but is this all I need? I just did all of this by the way. Do I need anything else besides the images folder and the bin/release folder? Also, the Images folder is the only folder that I created. – mtlca401 Jun 14 '12 at 23:24
  • That is pretty much it. To be sure, simply try making your application work on a clean machine and see which files and folders it needs. After that, simply add those files and folders in your installer. – cosmin Jun 15 '12 at 07:05
  • I prefer WIX over Visual Studio's Installer but I am not sure if it works with Visual Studio Express: http://www.rhyous.com/2010/10/15/wix-creating-an-msi-and-deploying-your-first-file/ Cosmin Pivu gave you the rest of the info you need. – Rhyous Jun 21 '12 at 20:33

1 Answers1

0

Before I start using WiX I worked with NSIS and HM NIS Edit which has a wizard to create simple installers.

Perhaps it can help you for your purposes.

oarrivi
  • 191
  • 9