Skip to content

TechDirectArchive

Hands-on IT, Cloud, Security, Veeam & DevOps

  • Home
  • About
  • Advertise With US
  • Reviews
  • Tech News
  • Contact
  • Toggle search form

Application User Model ID: How to find the AUMID of an installed UWP App

Posted on 23/01/202017/08/2026 IT Expert By IT Expert No Comments on Application User Model ID: How to find the AUMID of an installed UWP App
  1. Home
  2. Windows
  3. Application User Model ID: How to find the AUMID of an installed UWP App
Application User Model ID

In this article, you will learn about “Application User Model ID: How to find the AUMID of an installed UWP App”. I wrote this article simply because I needed to get the AUMID of an Application needed for kiosk mode setup. Follow the steps discussed below to achieve this. Please see How to add WhatsApp UWP on Windows 11, Unable to uninstall AppX? How to uninstall builtin programs using PowerShell in Windows 10, and How to get Windows PC specific Model information.

How to find the AUMID of an installed UWP App

AUMID stands for “Application User Model ID.” It is a unique identifier assigned to a Windows application for use in the Start menu and taskbar. The AUMID is used by the operating system to distinguish between different applications and their instances.

Keep in mind that AUMID is subject to change with updates or changes to the application, so it’s a good practice to retrieve it dynamically rather than hardcoding it in your applications or scripts

Example one: Via the GUI (Windows Explorer)

Search for run dialog box and type the following to open the Application Explorer: shell:Appsfolder

UWP App

This will open the following application explorer window.

Find AUMID

Select details on the right hand pane

Installed App

Access the View menu ALT+V, and choose Details. Or use the f10 key to display the view and click choose details

Screenshot of a Windows File Explorer window displaying the 'Applications' folder with the 'View' menu open, showing options like 'Details,' 'Tiles,' and 'Choose details...' highlighted.

Check the box next to AppUserModelId and press OK

Window for selecting display details in a file explorer, showing checkboxes for 'Name', 'Long display name', and 'AppUserModelId'. Options to move details up or down, and buttons for 'OK' and 'Cancel'.

This will display the result below

Screenshot of an applications list displaying various apps such as 3D Viewer, Alarms & Clock, Calculator, and Calendar, along with their corresponding long display names.

Note: When you close the Application Explorer, this option is unchecked by default.

Also, see Single App Kiosk Mode Configuration using MDM Bridge WMI Provider, and how to determine Apps UWP and remove pre-provisioned appx in Windows 10.

Example 2:   Via PowerShell to get the AUMID of an Application

Run the PowerShell script as shown below.

$installedapps = get-AppxPackage
$aumidList = @()
foreach ($app in $installedapps)
{
foreach ($id in (Get-AppxPackageManifest $app).package.applications.application.id)
{
$aumidList += $app.packagefamilyname + "!" + $id
}
}
$aumidList

Also, you can run just the code below to get a list of all installed apps via PowerShell

get-AppxPackage

I hope you found this blog post on how to find the AUMID of an installed UWP App helpful. Please let me know in the comment session if you have any questions.

Rate this post

Thank you for reading this post. Kindly share it with others.

  • Share on X (Opens in new window) X
  • Share on Reddit (Opens in new window) Reddit
  • Share on LinkedIn (Opens in new window) LinkedIn
  • Share on Facebook (Opens in new window) Facebook
  • Share on Pinterest (Opens in new window) Pinterest
  • Share on Tumblr (Opens in new window) Tumblr
  • Share on Telegram (Opens in new window) Telegram
  • Share on WhatsApp (Opens in new window) WhatsApp
  • Share on Mastodon (Opens in new window) Mastodon
  • Share on Bluesky (Opens in new window) Bluesky
  • Share on Threads (Opens in new window) Threads
  • Share on Nextdoor (Opens in new window) Nextdoor
Windows Tags:Microsoft Windows

Post navigation

Previous Post: How to prevent users from shutting down in a Virtual Machine
Next Post: Single App Kiosk Mode Configuration using MDM Bridge WMI Provider

Related Posts

  • acctlockout 1
    Configure Local Administrators Account lockout Windows
  • Featured image new
    How to find out who restarted Windows Server Windows
  • Featured image System Tray icons
    How to Fix System Tray Icons not showing in Taskbar on Windows 11 Windows
  • Featured image 1
    Transfer Windows License from one PC to the other on Windows Windows
  • Capture 37
    How to Configure Network Load Balancing on Windows Server Backup
  • Featured image DNS Server settings
    Do not use Public DNS in Prod: Change DNS Server in Windows Network | Monitoring

More Related Articles

acctlockout 1 Configure Local Administrators Account lockout Windows
Featured image new How to find out who restarted Windows Server Windows
Featured image System Tray icons How to Fix System Tray Icons not showing in Taskbar on Windows 11 Windows
Featured image 1 Transfer Windows License from one PC to the other on Windows Windows
Capture 37 How to Configure Network Load Balancing on Windows Server Backup
Featured image DNS Server settings Do not use Public DNS in Prod: Change DNS Server in Windows Network | Monitoring

Leave a Reply Cancel reply

You must be logged in to post a comment.

Microsoft MVP

VEEAMLEGEND

vexpert-badge-stars-5

Virtual Background

GoogleNews

Categories

veeaam100

Veeam Vanguard

  • Windows10 as a Service Waas
    Windows 10 Feature and Quality Updates Windows
  • How to implement Interactive Authentication using MSAL dotNET AWS/Azure/OpenShift
  • hero windowsadmincenter
    Failed to create a scheduled task: There is no disconnected command associated with the runspace Windows Server
  • win10 usb
    How to prevent installation of removable devices Windows
  • Featured image 1
    How to Change User Account Type in Windows 10 Windows
  • Linux Shell Scripting 1
    Write a Shell Script that Count Lines and Words in a File Linux
  • 7164 1024x575 1
    How to install MDT PowerShell module on Windows Scripts
  • kubernetes
    Create and monitor Apps using the Azure Kubernetes Service manifest AWS/Azure/OpenShift

Subscribe to Blog via Email

Enter your email address to subscribe to this blog and receive notifications of new posts by email.

Join 1,765 other subscribers
  • RSS - Posts
  • RSS - Comments
  • About
  • Authors
  • Write for us
  • Advertise with us
  • General Terms and Conditions
  • Privacy policy
  • Feedly
  • Telegram
  • Youtube
  • Facebook
  • Instagram
  • LinkedIn
  • Tumblr
  • Pinterest
  • Twitter
  • mastodon

Tags

Active Directory Azure Bitlocker Microsoft Windows PowerShell WDS Windows 10 Windows 11 Windows Deployment Services Windows Server 2016

Copyright © 2026 TechDirectArchive

Loading Comments...

You must be logged in to post a comment.