about a year ago, I removed a little too many apps from my Computer with Remove-AppxPackage. Since then my Windows Store is missing.
I know I could reinstall the Windows Store by using this command:
Get-AppXPackage *WindowsStore* -AllUsers | Foreach {
Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"
}
The thing is, It doesn't even find the package at all, so Get-AppxPackage *Store* -AllUsers returns nothing at all.
How can I get my Windows Store back, without reinstalling / updating my OS? (by reinstall I mean a completely new blank installation, by updating an update to a newer version like 1809)
My OS is Windows 10 Version 10.0.14393.0
Note: I also tried the usual stuff like:
sfc /scannowdism /online /cleanup-image /RestoreHealth
but that also did not work. Any help is appreciated!