How do I check the version of a Windows Store Application?

7,332

One method I found is by using the commandline:

  1. Open the Administrative Command Prompt (Win+X, A)
  2. cd "C:\Program Files\WindowsApps"
  3. dir *<app name>*
  4. Version of the program is after the first underscore of the folder name.

E.g. running dir *Skitch* on my system gives:

2012-10-30  14:18    <DIR>   Evernote.Skitch_2.0.1026.249_neutral__q4d96b2w5wcc2

That means Skitch on my system has version 2.0.1026.249.

Note that the application folder name might differ from the name presented to the user. Still, you should be able to find your app in this folder easily:

  1. Find the folder you think your app is in.
  2. Open the AppxManifest.xml file inside this folder
  3. Search for the <DisplayName> property -- it should be equal to the name presented to the user.

You can also run this script in PowerShell (remove line breaks first), which will find the appropriate application folder itself:

PS C:\Program Files\WindowsApps> Get-ChildItem -Path . -recurse 
    -include AppxManifest.xml | Select-String -pattern "<your app name>" -List
   | select path
Share:
7,332

Related videos on Youtube

Diogo
Author by

Diogo

Updated on September 18, 2022

Comments

  • Diogo
    Diogo over 1 year

    Possible Duplicate:
    How do I find the version of a Windows 8 store/RT app I have installed?

    As any Windows software, Windows Store apps have a release version, but I couldn't find it by looking over the app by itself or from app configs:

    enter image description here

    For Desktop Mode apps, it is easily find over "Installed Softwares" on Windows Control Panel:

    enter image description here

    How do I check for the Windows Store App installed versions?

  • Diogo
    Diogo over 11 years
    +1 Yes, it is not usual but it works great. Thank you.
  • Zodman
    Zodman almost 4 years
    I found Get-ChildItem -Path "C:\Program Files\WindowsApps" | Select-String -pattern "<your app name>" to be enough.