popup error appears with the following header:
" C:\Users\Administrator\AppData\Local\Packages\windows.immersivecontrolpanel_cw5n1h2txyewy\LocalState\Indexed\Settings\it-IT\AAA_SettingsPagePCSystemDeviceSettings.settingcontent-ms
This file does not have a program associated with it for performing this action. please install a program or, if one is already installed, create an association in the default programs control panel. "
Looks like it is a bogus message which does not take account of special cases.
| C:>assoc | find /i "sett" <br><br>.settingcontent-ms=SettingContent<br><br><br>C:>ftype SettingContent <br><br>File type 'SettingContent' not found or no open command associated with it.<br><br><br>C:>ftype | find /i "sett"<br><br><br>C:> |
|---|
So, my guess is that you have some registry corruption or a permissions problem. In either case ProcMon could be used to help discover the exact cause. It would be best to have two traces to compare for their essential differences, one with the problem and one without, both doing otherwise the same thing.
Or, as another guess, you could try the PowerShell workaround that is often advised for various symptoms with the Settings charm.
http://blogs.msdn.com/b/notime/archive/2013/10/18/fix-store-app-in-windows-8-1.aspx
<quote>
powershell -ExecutionPolicy Unrestricted Add-AppxPackage -DisableDevelopmentMode -Register $Env:SystemRoot\ImmersiveControlPanel\AppxManifest.xml
</quote>
Good luck
Robert Aldwinckle