How to tell if a Windows Store app is XAML or HTML/JavaScript

tl;dr - look in the Registry.

Packages are registered in HKEY_CLASSES_ROOT\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppModel\Repository\Packages. You'll find the installation folder in there - look through to see if you have .xaml or .js files. HTML apps also have an ~/Applications/ key with a DefaultStartPage value. This will tell you definitively whether it's an HTML app as only these have "start pages". 

If the app has neither XAML or JS files, they're likely to be C++/CX apps.

To help, I wrote a small utility which is available on GitHub at https://github.com/mbrit/XamlOrHtml. This will go through the installed packages and dump out what it thinks it is.

Some spoilers...

It's most likely to be XAML. My reckoning is that 80% of Windows Store apps are XAML. Interestingly, most of the built-in Microsoft apps are HTML. My view on this is that these are proof-of-concept apps, to prove that you can build Windows Store apps in HTML. At this point, however, if you're building Windows Store apps in HTML... it very much looks like you're doing it wrong.

This article is part of the GWB Archives. Original Author: mbrit

New on Geeks with Blogs

  • We Won The One Award I Actually Care About

    Full Scale made the Inc. 5000 for the fifth year straight, the 12th listing across my three companies. Here is why the one award you cannot buy is worth stopping for.

  • Your Customers Build the Features Now

    I let a tool I liked sit dead for a year rather than build the features I wanted. An MCP server meant I never had to, and your customers can do the same to your product.

  • Get the Size of a Directory in Linux the Easy Way

    du -sh for the quick answer, ncdu for the cleanup, df for the disk itself: every command for checking directory size in Linux, plus why du and df never agree.

  • Vim Search and Replace: The Ultimate Guide

    One :%s command replaces every match in a file before a find dialog would even open. The Vim substitute patterns worth the muscle memory: flags, ranges, capture groups, and multi-file edits.