Where are the Dynamic Application Settings stored?
When you use dynamic application settings each user will have a set of values that can personalize the experience. So... where are these values stored?
When using dynamic application setting the values are stored in a .config file in the user's profile
The pattern used for "non-roaming" settings is as follows:
%USERPROFILE%\Local Settings\Application Data\[Company Name]\[appdomainname]_[eid]_[hash]\[verison]\user.config
It will look something like this:
[UserProfile]\Local Settings\Application Data\YourAppName\YourAppName.exe_Url_zzzz\1.0.0.0\user.config
On my XP system the full path looks something like this: C:\Documents and Settings\WZuill\Local Settings\Application Data\YourAppName\YourAppName.exe_Url_zzzzz\1.0.0.0\user.config, but it can differ.
