> Why have a common app folder, when not everyone can share the same data?
Because it's useful in other ways, just because not everyone can write to doesn't mean the whole folder is useless.
Way it can be used:
1. To store settings you only want to be changed by an admin but still read and used by a normal user.
2. To store data that services use and let certain users read or change some of it.
Also to have a folder that can be written to by all users is a bad idea. reasons why at http://blogs.msdn.com/oldn
One way that page lists for all users to have a common store is to create a service to share the settings between user.
Windows Vista Search does that, it has a common index shared by a service.
Unfortunately, the service way might be overkill if someone only wanted to share a few settings.
Main Topics
Browse All Topics





by: sah18Posted on 2007-11-01 at 08:16:43ID: 20193656
To my knowledge, what you are already doing is the best way to accomplish this. I used the same article for a similar problem I was having, and it solved my problem.