Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Wix non-admin installer tutorial?

We're evaluating if the Wix installer will be suitable for us in a project. The end user need to be able to install our software without admin rights. The installer needs to work with at least XP/Vista/Windows 7 without admin rights or UAC.

I have a hard time finding good documentation and tutorials how this can be done. I have found a couple of old ones but they don't compile with candle/light with the latest Wix version. Does anyone have good examples or tutorials that might help?

Thanks in advance!

like image 352
exkoria Avatar asked Jan 15 '13 14:01

exkoria


1 Answers

To allow a user to install you will need to set InstallScope='perUser' and InstallPrivileges='limited' on the package element.

Unfortunately this will not stop you from adding features that this mode cannot support such as putting files into the ProgramFiles directory. If you try to do this the installer will just fail when it gets to that point.

like image 58
caveman_dick Avatar answered Sep 22 '22 11:09

caveman_dick