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

5

1

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

Posted 2012-11-05T12:24:44.503

Reputation: 28 202

Question was closed 2012-11-05T15:40:18.243

Its unlikely there is a similar panel for Modern UI applications. The version reported has always been up to the developer, so this information can more then likely be found within the given application, I have not been able to find any other way. – Ramhound – 2012-11-05T12:57:44.107

you can check it under HKEY_CURRENT_USER\Software\Classes\Extensions\ContractId And see the version. AS under it go to Windows.Device>PackageID and you will see the photoviwer's version. A good link to dig it up.

– avirk – 2012-11-05T14:05:48.707

Answers

4

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

DzinX

Posted 2012-11-05T12:24:44.503

Reputation: 4 010

+1 Yes, it is not usual but it works great. Thank you. – Diogo – 2012-11-05T13:58:41.500