This Tutorial Helps To Fix System Call Failed Error In Windows 10
powershell notes link:
reg delete “HKCU\\Software\\Microsoft\\Windows NT\\CurrentVersion\\TileDataModel\\Migration\\TileStore” /va /f
get-appxpackage -packageType bundle |% {add-appxpackage -register -disabledevelopmentmode ($_.installlocation + “\\appxmetadata\\appxbundlemanifest.xml”)}
$bundlefamilies = (get-appxpackage -packagetype Bundle).packagefamilyname
get-appxpackage -packagetype main |? {-not ($bundlefamilies -contains $_.packagefamilyname)} |% {add-appxpackage -register -disabledevelopmentmode ($_.installlocation + “\\appxmanifest.xml”)}