FIX Windows 10 Apps Crashing - [4 Solutions]

Описание к видео FIX Windows 10 Apps Crashing - [4 Solutions]

How to Repair "Windows 10 Apps Crashing " Tutorial. "Microsoft Store Apps Crashing" Problem Solution. Windows Store Apps Crashing Fix

Works on Laptops, PCs and Tablets made by Samsung, Lenovo, Toshiba, Asus, Acer, HP, Dell, Alienware.

Commands:

Get-AppXPackage -AllUsers -Name Microsoft.WindowsStore | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml" -Verbose}

Commands 2:

Get-AppXPackage | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}

Commands 3:

PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage Microsoft.WindowsStore).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"

Command 4:

((Get-ChildItem “HKLM:SOFTWARE\Microsoft\Windows\CurrentVersion\Appx\AppxAllUserStore\InboxApplications”) | Get-ItemProperty).Path | Add-AppxPackage -Register -DisableDevelopmentMode

Комментарии

Информация по комментариям в разработке