Posted On October 10, 2020

PowerShell: 1-Liner to Install Windows Photo Viewer for Windows 10

kimconnect 5 comments
blog.KimConnect.com >> Windows >> PowerShell: 1-Liner to Install Windows Photo Viewer for Windows 10

I’ve thought that Windows Photo Viewer is a nicely optimized and lightweight program to preview photos. As it has been disabled by default on certain versions of Windows 10, this quick cmdlet should bring it back in a jiffy:

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

5 thoughts on “PowerShell: 1-Liner to Install Windows Photo Viewer for Windows 10”

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Some WSUS Troubleshooting Notes

Some errors and interpretations: 0x8024401c: networking generic error 0x80244022: downloading generic error     Check…

How to Use QRadar to Search for a Windows Account Activities

Log into https://qradar/console/qradar/jsp/QRadar.jsp Log Activity > Add Filter > Parameter=Username[Indexed] | Operator=Equals any of |…

PowerShell: Download Dot Net 4.7.2

# Illustration: download Dot Net 4.7 Run-time from behind a proxy and showing progress barfunction…