We are writing an installer for our Windows tool. As our tool uses an updater (wyUpdate) and we want that users WITHOUT Administator rights can performs updates. Which is the right directory to install the app to? The standard C:\Program Files
requires Administrator rights, so we have discarded this option. After reading a bit on the Web, we have chosen AppData
, i.e. C:\Users\USERNAME\AppData\Local
.
Is this best practice? Or should we use another directory?