Application installers/publish

Johnson

Well-known member
Joined
Mar 6, 2009
Messages
158
Programming Experience
Beginner
Hello.

I am nearing the end of my journey with the application i have spent the last few months working on. Now my question is this...

How do you go about making an installer? Obviously i am sure you have worked out now i mean the exe you click and choose instalation folder/desktop short cut or not/add to start menu. accept the agreement etc

Now i know vb.net has a publisher that i have looked at but is that the same?

can any one point me to a tutorial i can learn how to make my application have an installer.

thanks
Reply With Quote
 
They are two options, you need to use only one.
You can also google for installer if you'd like to see more options.
VB.Net doesn't have it's own built-in installer.
You should probably use something like one of the ones I listed in my first post, or, if you really want to, you can try and make your own installer. I could, right now, probably think of how to do most of the stuff that a normal installer does... just not sure how I'd compress the files into the installer if it was custom made in VB.Net.
 
They are two options, you need to use only one.
You can also google for installer if you'd like to see more options.
VB.Net doesn't have it's own built-in installer.
You should probably use something like one of the ones I listed in my first post, or, if you really want to, you can try and make your own installer. I could, right now, probably think of how to do most of the stuff that a normal installer does... just not sure how I'd compress the files into the installer if it was custom made in VB.Net.


Really appreciated. il take your top coice

thanks
 
If you don't have very advanced deployment requirements you should use the the built in ClickOnce publish functionality that is included in all VS versions. In the Prerequisites dialog you can check "create setup" if you need that.
Pro and Standard (2008) edition also has msi setup projects for more advanced setups.
 
Well my requirments are, to be able to choose installed dir, add desktop/quick launch/start menu entrys and to be able to run after installation.

which do you rekon would fit me best?
 
Well, you can't choose install dir with ClickOnce, most users have no need to do that.

A setup project can add shortcut to desktop, to quick lauch toolbar I don't know. Both can also be added from app at runtime, for example at first startup or from a Options dialog. For ClickOnce apps this is a "application reference" file rather than a "shortcut". VB 2008 SP1 has "desktop shortcut" option for ClickOnce also.
 
c lick once actually pretty much does what i want. I have managed to code my app to do the rest on first time load.

Just the only thing i dont like is it does not let me change the start menu entry name

has it as 'windows xp home user' in the list
 
Back
Top