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

Active Directory Domain Controller Certificates Installation Guide

Overview This article deals with Domain Controllers, rather than member servers. Thus, Active Directory or…

Windows: How To Expand Disk Volumes That Are Not Adjacent the Intended Volume

Problem: Here's a scenario when a virtualized disk has been expanded in Hyper-V, Vmware, AWS,…

PowerShell: Automating Microsoft Failover Cluster Maintenance – FileServer, SQL AlwaysOn, Hyper-V Guest VMs, Disks Operations

##################################################################################################### # MsClusterMaintenance_v0.0.2.ps1 # Author: KimConnect.com # License: GPLv3 # Description: this program automates the…