Windows – Install Windows Store apps from the command-line

command linewindows 8windows-storewindows-store-app

We can install AppX packages (Metro/Modern/Microsoft-style UI apps) by using the following PowerShell command:

add-appxpackage C:\path-to-app.appx

But, I want to install free Windows Store apps from the command line. For example, install the free game Jetpack Joyride available on the Windows Store.

Is this possible?

Related Question