My application is installed through NSIS.
I want the installer to install the program for all users.
I can do this by installing the "program files" directory.
There is a database file (firebird) that all user accounts in the system should use.
If I save this database file in the "program files" directory, it will be read-only.
If I save it in the APPDATA user directory, each of them will have a different copy, when one user adds data, others will not be able to see it.
Option 1 - In the application directory under the "program files" create the "Data" directory, in my installer make this drive readable by everyone, so the virtualization of user "program files" will not start and all users can update the file and see each otherβs changes friend.
Any other options?
source share