Windows Application Store

Posted on  by
  1. Download Windows Store App
  2. Windows Application Store Download
  3. Microsoft Windows Application Store
-->

This article outlines the release cycle for administrators to update the Microsoft Store apps installed by default on Windows 8.1-based computers.

How to Enable or Disable Microsoft Store Apps in Windows 10 The Microsoft Store app in Windows 10 offers various apps, games, music, movies & TV, and books that users can browse through, purchase, or get for free to download and install for their Microsoft account in Windows 10 PCs and devices. Select Start and look for the app or program in the list shown. Press and hold (or right-click) on the app, then select Uninstall. Uninstall from the Settings page. Select Start, then select Settings Apps Apps & features. Or just click the shortcut link at the bottom of this article. Although the Microsoft Store app is the experience that Microsoft envisioned for Windows 10 users to download apps, games, and entertainment, it's not a perfect experience and doesn't always work.

Original product version: Windows 10 - all editions
Original KB number: 2971128

More information

When you are connected to the Internet, Windows 8.1 clients obtain updates to Microsoft Store apps directly from the Microsoft Store app (visible on the Windows Start screen).

To update these Microsoft Store apps on computers that cannot connect to the Microsoft Store site by using the Internet, Microsoft has a collection of downloadable updates available on the Windows Update Catalog. These updates can be distributed by using System Center, WSUS and third-party equivalents, or slipstreamed into the operating system image that is used by your organization.

The intent of this process is not to bypass the Microsoft Store, but to enable computers that cannot connect to the Microsoft Store to update Microsoft Store apps on a recurring basis.

Frequently asked questions

Which Microsoft Store apps will be serviced through this channel

Microsoft is releasing packages for Windows 8.1 Microsoft Store apps that are listed in the release chart at the end of this article.

Will non-inbox Microsoft Store app updates such as OneNote be released

Download Windows Store App

No. We are currently targeting the Microsoft Store apps that are distributed by default with Windows 8.1 editions.

Can third-party Microsoft Store apps be updated by using this process

No. The developer of the third-party app can make available the package, and it can then be Sideload Apps with DISM similar to line-of-business apps.

Will Microsoft continue to release updates

Yes. Microsoft will update the inbox packages for Windows 8.1 for customers based on need. Contact Microsoft support to request one or more packages be updated.

How do I get the updates

These packages will be available through WSUS and the Windows Update Catalog.

Which languages are available

The packages include all the languages currently supported through the Microsoft Store.

Windows application store for pc

Which editions of Windows are supported

Windows 8.1 x86 and x64 editions are supported. Windows RT 8.1 is not supported.

Can I install these updates on Industry (Embedded) editions

No, Industry editions are not licensed for these applications and therefore updates to these applications are not supported. If you have a need for Microsoft Store apps for Industry editions, contact your account manager or open a support ticket for your request to be evaluated.

How do I create an image that includes these apps

We recommend installing the app updates as part of your post operating system deployment updates through WSUS. However, if you need an automated process, you can extract each .cab file to its respective MSI. Then, you can script the installation or deploy by using traditional application deployment technologies.

Can I use this to reinstall the inbox apps that are removed after deploying Windows 8.1 images

No. This process is only designed to update apps already installed on the system. If you are able to enable temporary access to the Microsoft Store, you can install the apps again and then maintain them by using this process. Or, you will need to deploy a new image that contains the apps.

Can the packages be installed offline

No. You cannot use dism.exe to install the updates offline. They must be installed through the .MSI installer to a running operating system.

When are the packages going to be shipped

What follows is the release schedule for each Microsoft Store app:

Microsoft Store AppOperating SystemRelease DateVersionKB Number
AlarmsWindows 8.18-Jul-142013.1204.852.30112962197
BING FinanceWindows 8.18-Jul-142014.326.2159.43822962186
BING Food and DrinkWindows 8.18-Jul-142014.326.2200.41752962199
BING Health and FitnessWindows 8.18-Jul-142014.326.2201.37732962187
BING MapsWindows 8.18-Jul-142014.130.2132.11892962192
BING NewsWindows 8.18-Jul-142014.326.2203.26272962188
BING SportsWindows 8.18-Jul-142014.326.2204.25982962189
BING TravelWindows 8.18-Jul-142014.326.2205.59132962190
BING WeatherWindows 8.18-Jul-142014.326.2207.2112962191
CalculatorWindows 8.18-Jul-142013.1007.1950.29602962196
Communications Apps
(People, Mail, Calendar)
Windows 8.124-Jun-142014.219.1943.37212962182
Help and TipsWindows 8.124-Jun-142014.331.1818.16642962194
ReaderWindows 8.124-Jun-142014.312.322.15102962193
Reading ListWindows 8.18-Jul-142013.1218.27.7572962195
ScanWindows 8.18-Jul-142013.1007.2015.38342962200
SkypeWindows 8.18-Jul-142014.402.1024.41062962201
Sound RecorderWindows 8.18-Jul-142013.1010.500.29282962198
XBOX GamesWindows 8.18-Jul-142013.1011.10.59652962183
XBOX MusicWindows 8.18-Jul-142014.321.1036.11672962184
XBOX VideoWindows 8.18-Jul-142014.326.530.53032962185
-->

To configure assigned access (kiosk mode), you need the Application User Model ID (AUMID) of apps installed on a device. You can find the AUMID by using Windows PowerShell, File Explorer, or the registry.

To find the AUMID by using Windows PowerShell

To get the names and AUMIDs for all apps installed for the current user, open a Windows PowerShell command prompt and enter the following command:

To get the names and AUMIDs for Windows Store apps installed for another user, open a Windows PowerShell command prompt and enter the following commands:

You can add the –user <username> or the –allusers parameters to the get-AppxPackage cmdlet to list AUMIDs for other users. You must use an elevated Windows PowerShell prompt to use the –user or –allusers parameters.

To find the AUMID by using File Explorer

To get the names and AUMIDs for all apps installed for the current user, perform the following steps:

  1. Open Run, enter shell:Appsfolder, and select OK.

  2. A File Explorer window opens. Press Alt > View > Choose details.

  3. In the Choose Details window, select AppUserModelId, and then select OK. (You might need to change the View setting from Tiles to Details.)

To find the AUMID of an installed app for the current user by using the registry

Querying the registry can only return information about Microsoft Store apps that are installed for the current user, while the Windows PowerShell query can find information for any account on the device.

Windows Application Store Download

At a command prompt, type the following command:

reg query HKEY_CURRENT_USERSoftwareClassesActivatableClassesPackage /s /f AppUserModelID find 'REG_SZ'

Microsoft Windows Application Store

Example

The following code sample creates a function in Windows PowerShell that returns an array of AUMIDs of the installed apps for the specified user.

The following Windows PowerShell commands demonstrate how you can call the listAumids function after you have created it.