Can Mytour help me resolve the issue of apps not starting or crashing on Windows 10? Thank you
Answer:
Encountering app startup issues or crashes can be frustrating for users. Here are some steps you can take:
First, identify the app that is experiencing the issue.
For example, the app I need is Photo
Step 1: First, open File Explorer and navigate to C:\Users\username\AppData\Local\Packages\
where 'username' is your account name on your computer
Next, press F2 and copy the folder name
Step 2: Open Notepad -> enter the following code:
PowerShell -ExecutionPolicy Unrestricted -Command '& {$manifest = (Get-AppxPackage folder_name_of_the_app).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}'
Next, replace folder_name_of_the_app with the folder name you copied earlier. In this example, it is Microsoft.Windows.Photos_8wekyb3d8bbwe
-> Will become: PowerShell -ExecutionPolicy Unrestricted -Command '{$manifest = (Get-AppxPackage Microsoft.Windows.Photos_8wekyb3d8bbwe).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}'
Step 3: Enter the keyword cmd in the Search box on the Windows 10 interface -> select Command Prompt -> Copy and paste the code above -> press ENTER, wait for the program to process
So, here Mytour has guided you on how to fix apps that won't start or crash on Windows 10. For other apps, you do the same.