How we can read/write values in Registry from windows store or universal windows platform app...
Asked
Active
Viewed 2,041 times
3
-
Possible duplicate of [How to read value of a registry key c#](http://stackoverflow.com/questions/18232972/how-to-read-value-of-a-registry-key-c-sharp) – Ryan Jun 23 '16 at 13:42
-
3Possible duplicate of [read/write registery key file in uwp](http://stackoverflow.com/questions/34694059/read-write-registery-key-file-in-uwp) – Raymond Chen Jun 23 '16 at 13:45
1 Answers
1
There is no way to do it.
Store Apps are working in sandbox and after removal all changes are rollbacked. That means that you can install and remove any number of applications and in result system would be still in same state.
If you want to save some information in settings you can use ApplicationData.Current.LocalSettings

Alexej Sommer
- 2,677
- 1
- 14
- 25