Tuesday, November 6, 2018

How to Fix Photos App Not Working in Windows 10

How to Fix Photos App Not Working in Windows 10

Hi Friends, If you are facing problem like photo app does not open any image or picture in windows 10 or it open very slowly then you are at right article because I will tell you very simple and quick solution to solve that problem.


Solution 1 : First Uninstall & then Re-Install Photos App.

For that first open "Windows Powershell" as Administrator.


Command to uninstall photo app from your PC / Laptop is :


Get-appxpackage *photo* | remove-appxpackage 

OR

Get-appxpackage *Microsoft.Windows.Photos* | remove-appxpackage

OR 

Get-AppxPackage *photos* | Remove-AppxPackage





Through this command you can easily uninstall photo app from windows 10 PC / Laptop.

After that you need to Re-install photo app.

Command to Re-install photo app from your PC / Laptop is :

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




Wait till command execute successfully, Once done, Restart your PC / Laptop to apply changes.

Watch video tutorial







Friday, November 2, 2018

How to Fix Windows 10 Store Not Working Problem Easily

How to Fix Windows 10 Store Not Working Problem Easily

If you are facing problem like windows 10 store not opening or not working then i will tell you 2 very easy solutions through which you can fix that problem.


Solution 1 : Open Command Prompt as a Administrator.

Command 1: Type "powershell" and then hit "Enter Key".

Command 2 : Type "Set-ExecutionPolicy Unrestricted" and then hit "Enter Key".

Command 3 : Type "Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}"
and then hit "Enter Key".

If this solution does not works for you then apply 2nd solution.


Solution 2 : Open Windows PowerShell as a Administrator.

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

and then hit "Enter Key".