I have an application modified to account for UAC in VISTA. So now .mdb (JET or access file) is located in ProgramData\MyApp\
I realized that when my application first reads the database, it does it from this place ... but when my application writes to the database ... the file is virtualized and goes to Users\MyUser\AppData\Local\VirtualStore\ProgramData\MyApp . From now on, my application always goes to virtual disk space.
My application works, but if I continue this way, the database will be available for each user, and we really need to share the database with all users on the PC.
I thought that writing in the ProgramData folder would not trigger a virtualization mechanism.
What am I missing?
I need to set permissions for MyApp folder in ProgramData strong>
How to do this during installation?
Thanks to the people ...
Additional Information: Developed using VS2003 VB.NET using the VS installation project.
virtualization windows-vista uac
Romias
source share