Windows – Check for Installed Packages using the commandline

Run the following in an elevated cmd or Powershell shell.

 

#Get all packages
dism /online /get-packages

 

#Get specific package(s) matching a string and their details
dism /online /get-packages | Select-String "<substring-in-package-name>" -Context 0,3