2

I'm developing an application using the C# programming language. How can I create to my own setup file in C# ?I don't want a commercial software. How can I do that?

10
  • Setup file? Could you elaborate a little more? Commented Jul 30, 2011 at 16:05
  • 1
    There's lots of resources about this on the Internet. What part are you having trouble with? Commented Jul 30, 2011 at 16:07
  • @Robert Harvey- I know how to create custom installers in Visual Studio‏.I want to create create to my own setup file in C#. Commented Jul 30, 2011 at 16:10
  • So,I want to develope to my own setup.exe in C#. Commented Jul 30, 2011 at 16:11
  • 2
    You need to learn how MSI works. Hard to give links, nobody does this. If you just want to get the feeling that you made your own then use WiX, wix.sourceforge.net Commented Jul 30, 2011 at 16:47

5 Answers 5

4

Just create a new Setup Project

Sign up to request clarification or add additional context in comments.

Comments

2

Try the Nullsoft installer: http://nsis.sourceforge.net/

Comments

2

In the File menu, click New->Project, and then in the dialog select Other Project Types->Setup and Deployment in the tree on the left. Select InstallShield LE or Visual Studio Installer, as you prefer.

Personally I'd recommend Visual Studio Installer->Setup Wizard for beginners.

Comments

1

Actually, you can do that in Visual Studio by going New Project -> Other Project Type -> Setup and Deployment Visual Studio Installer.

Comments

1

If you're absolutely determined to write your own .exe that's compatible with the Microsoft installer stuff, then you pretty much need to read this chapter cover-to-cover:

http://msdn.microsoft.com/en-us/library/cc185688%28v=VS.85%29.aspx

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.