Search code examples
c#windows-8windows-runtimewindows-8.1

Checking for updates to Windows Store apps from within the application


I'm trying check (programatically) for updates to Windows Store apps from within the application and notifying users about the new release.

How can i get the version of the app avalaible on Windows Store ?

Thanks


Solution

  • There is not a documented API for querying the Windows Store to get the version of the application.

    I'd suggest to achieve a similar result, place a file containing this information on a public web server and query it from your Windows application instead. Any time you push an update to the Windows Store, you'll need to update this file as well.

    As Windows Store applications are by default updated automatically, this notice and check would not be necessary for some users.