vote up 4 vote down star
1

Hi,

I have created an installation package using Wix which installs a Windows service on the user's machine. Currently, the files are being installed to [%ProgramFiles%\APLICATIONNAME].

Is this a future proof way of structuring an installation folder? Should I be installing to [%ProgramFiles%\APLICATIONNAME\VERSION_NUMBER] instead?

Any recommendations would be greatly appreciated.

Thanks,

Arnie


Update:

Side-by-side installation of different versions will not be supported.

flag

3 Answers

vote up 5 vote down check

Version specific folders are no good. What you need to do is make sure all subsequent installers upgrade properly over the previous versions so that different folders are not required.

You may want to do something like ProgFiles\App 1.0 using the major and minor version number if you want to allow side by side installs of different versions. But with all of this it should ultimately be up to the user where the installed files end up.

link|flag
Having dealt with installer h*** before, I know how tricky correct versioning can be. You've hit it right on the head! – Brian Dec 29 '08 at 22:33
Thanks for your feedback. I don't intend to support side-by-side installation of different versions. I guess the best options right now is to keep the current configuration. – ArnieZ Dec 29 '08 at 22:43
vote up 2 vote down

As an additional note, if you are storing application data in the registry of the %AppData% folders then those are sensible places to use versioned folder names,

eg. %AppData%\Manufacturer\Application\1.0 and HKCU\Manufacturer\Product\1.0 or whatever.

We use this with a folder for each major release, this way if we decide to change our registry structure, rework data file formats, etc we only have to ensure compatibility between minor releases. Major releases can use a separate procedure to help the user migrate from a 2.x to 3.x release.

link|flag
Thanks for your feedback. I don't use registry to store any data, but I will definitely avoid using version numbers in any paths. – ArnieZ Dec 30 '08 at 0:01
vote up 0 vote down

If side-by-side installation of different versions will not be supported I think [%ProgramFiles%\APLICATIONNAME] is good enough. However personally I prefer [%ProgramFiles%\COMPANYNAME\APLICATIONNAME].

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.