When a user (either domain or local) logs in to a Windows 8/8.1 PC his profile is created, and bundled Metro apps (most importantly Store and PC settings) are installed to his profile.
If the profile gets corrupter or for whatever other reason recreated, the apps can no longer be started, and various troubleshooters and/or permissions fixes do not help. Errors similar to this can be found in the event log:
The three applications that are deeply integrated and cannot be removed from Windows (and hence, cannot be reinstalled trough Store) can be recovered by typing the following into elevated administrative command prompt:
powershell -ExecutionPolicy Unrestricted Add-AppxPackage -DisableDevelopmentMode -Register $Env:SystemRoot\WinStore\AppxManifest.xml
powershell -ExecutionPolicy Unrestricted Add-AppxPackage -DisableDevelopmentMode -Register $Env:SystemRoot\ImmersiveControlPanel\AppxManifest.xml
powershell -ExecutionPolicy Unrestricted Add-AppxPackage -DisableDevelopmentMode -Register $Env:SystemRoot\FileManager\AppxManifest.xml
powershell -ExecutionPolicy Unrestricted Add-AppxPackage -DisableDevelopmentMode -Register $Env:SystemRoot\Camera\AppxManifest.xml
If the profile gets corrupter or for whatever other reason recreated, the apps can no longer be started, and various troubleshooters and/or permissions fixes do not help. Errors similar to this can be found in the event log:
Activation of app windows.immersivecontrolpanel_cw5n1h2txyewy!microsoft.windows.immersivecontrolpanel failed with error: This app does not support the contract specified or is not installed. See the Microsoft-Windows-TWinUI/Operational log for additional information.
The three applications that are deeply integrated and cannot be removed from Windows (and hence, cannot be reinstalled trough Store) can be recovered by typing the following into elevated administrative command prompt:
powershell -ExecutionPolicy Unrestricted Add-AppxPackage -DisableDevelopmentMode -Register $Env:SystemRoot\WinStore\AppxManifest.xml
powershell -ExecutionPolicy Unrestricted Add-AppxPackage -DisableDevelopmentMode -Register $Env:SystemRoot\ImmersiveControlPanel\AppxManifest.xml
powershell -ExecutionPolicy Unrestricted Add-AppxPackage -DisableDevelopmentMode -Register $Env:SystemRoot\FileManager\AppxManifest.xml
powershell -ExecutionPolicy Unrestricted Add-AppxPackage -DisableDevelopmentMode -Register $Env:SystemRoot\Camera\AppxManifest.xml