http://stackoverflow.com/questions/29164024/wix-installed-app-and-shortcut-shows-admin-symbol
I'll put a short explanation here but I've also posted on StackOverflow a little while ago without much success.
I've made my main application and its libraries and resource files, now I need to publish it so I've also made a WIX (Windows Installer XML) project that describes how it should all be setup (the source has changed quite a lot from that post but nothing major in functionality has changed).
Now the problem is that when setup to install "perMachine" admin rights are needed to setup (as they should be) but then admin rights are also needed to execute the installed application.
This issue is a little strange because even though the admin shield icon is displayed on the shortcut to the exe, and the exe itself (displayed whether in ProgramFiles or AppData) the exe doesn't need admin to run on Win7 (installed perMachine in ProgFiles, or installed perUser in AppData), but does on Win8 (again no matter if perMachine or perUser).
The bottom line is that I need either one of these (preferably working on both would be nice for the choice but as long as one of them works it's fine).
Admin installs to Program Files for perMachine, all regular users can run without admin rights.
Users installs to AppData for perUser (without needing admin rigts), that user can run without admin rights.
I know it's XML and not C/C++ but this is a helpful place, and cheers in advance for any help or advice.