Windows 8 Windows 8.1 Pro No apps working including PC Settings

Rahul Saini

Well-Known Member
Joined
Jun 7, 2018
Messages
19
I just upgraded from Windows 7 Ultimate to Windows 8.1 Pro and got error in almost all apps which windows install. They open and just disappear. Icon remains on the taskbar but I can't maximize it again. All apps showing error even the PC settings.
I tried to open them in Safe Mode, created a new User Account but that didn't work.
WSreset.exe also didn't do anything. I tried Windows App Store Diagnosis and that also didn't do anything!
Any solutions please tell me!
Any help is appreciated!
 

Solution
From an elevated (right click 'runas as admin') powershell prompt

$apps = Get-ChildItem "C:\Program Files\WindowsApps"

Foreach($app in $apps)
{
Add-AppxPackages -Path "$($app.FullName)\AppxManifest.xml" -Register -DisableDevelopmentMode 2> Out-Null
}

$apps = Get-ChildItem "C:\Windows\SystemApps"

Foreach($app in $apps)
{
Add-AppxPackages -Path "$($app.FullName)\AppxManifest.xml" -Register -DisableDevelopmentMode 2> Out-Null
}

Neemobeer

Windows Forum Team
Staff member
Joined
Jul 4, 2015
Messages
8,998
From an elevated (right click 'runas as admin') powershell prompt

$apps = Get-ChildItem "C:\Program Files\WindowsApps"

Foreach($app in $apps)
{
Add-AppxPackages -Path "$($app.FullName)\AppxManifest.xml" -Register -DisableDevelopmentMode 2> Out-Null
}

$apps = Get-ChildItem "C:\Windows\SystemApps"

Foreach($app in $apps)
{
Add-AppxPackages -Path "$($app.FullName)\AppxManifest.xml" -Register -DisableDevelopmentMode 2> Out-Null
}
 

Solution

Rahul Saini

Well-Known Member
Joined
Jun 7, 2018
Messages
19
From an elevated (right click 'runas as admin') powershell prompt

$apps = Get-ChildItem "C:\Program Files\WindowsApps"

Foreach($app in $apps)
{
Add-AppxPackages -Path "$($app.FullName)\AppxManifest.xml" -Register -DisableDevelopmentMode 2> Out-Null
}

$apps = Get-ChildItem "C:\Windows\SystemApps"

Foreach($app in $apps)
{
Add-AppxPackages -Path "$($app.FullName)\AppxManifest.xml" -Register -DisableDevelopmentMode 2> Out-Null
}
Thanks for the help but I just came to know that my Windows is missing C:/Windows/SystemApps folder. Is there any way I can get this thing right without reinstalling the winodws.
An image from 'Windows 8.1 Pro No apps working including PC Settings'. PowerShell error shows 'Cannot find path 'C:\Windows\SystemApps'' with ItemNotFoundException.
 

Last edited by a moderator:

Neemobeer

Windows Forum Team
Staff member
Joined
Jul 4, 2015
Messages
8,998
That's from Windows 10. It may not exist or might be called something different on Windows 8.
 

Neemobeer

Windows Forum Team
Staff member
Joined
Jul 4, 2015
Messages
8,998
No space between windows and apps. You can also just go look in that directory. It's probably a hidden directory
 

Back
Top