Skip to content

TechDirectArchive

Hands-on IT, Cloud, Security & DevOps Insights

  • Home
  • About
  • Advertise With US
  • Reviews
  • Contact
  • Toggle search form
Home » Windows » Application User Model ID: How to find the AUMID of an installed UWP App

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

Posted on 23/01/202006/12/2023 Christian By Christian No Comments on 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

Check the box next to AppUserModelId and press OK

This will display the result below

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

  • Featured image 4
    Focus on Tasks: Limit Distraction & Get Things Done on Windows Windows
  • unnamed
    Remove Xbox from automatic startup: How to enable and disable automatic startup in Windows 11 Windows
  • How to Disable Automatic Opening of Previous files in Notepad on Windows 11
    How to Disable Automatic Opening of Previous Files in Notepad on Windows 11 Windows
  • Screenshot 2022 04 28 at 22.35.11
    Fix “There was a problem starting logilda.dll” in Windows Windows
  • image 10
    Change Visual Studio Code UI language JIRA|Confluence|Apps
  • WAMPServer Virtual Host
    How to create Virtual Hosts in a WAMPserver Web Server

More Related Articles

Featured image 4 Focus on Tasks: Limit Distraction & Get Things Done on Windows Windows
unnamed Remove Xbox from automatic startup: How to enable and disable automatic startup in Windows 11 Windows
How to Disable Automatic Opening of Previous files in Notepad on Windows 11 How to Disable Automatic Opening of Previous Files in Notepad on Windows 11 Windows
Screenshot 2022 04 28 at 22.35.11 Fix “There was a problem starting logilda.dll” in Windows Windows
image 10 Change Visual Studio Code UI language JIRA|Confluence|Apps
WAMPServer Virtual Host How to create Virtual Hosts in a WAMPserver Web Server

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

  • s3
    How to Copy from a server to s3 and vice versa AWS/Azure/OpenShift
  • WAMP errors
    Apache errors associated with WAMP installation for TeamPass Web Server
  • Veeam Zero Trust Data Resilience
    Demystifying Zero Trust with Veeam: Design your Architecture Backup
  • Remote desktop connection over udp and tcp
    Remote Desktop Connection behaviour over UDP and TCP Windows Server
  • How to Convert Google Forms Into Microsoft Forms banner
    Convert Google Forms Into Microsoft Forms Microsoft Exchange/Office/365
  • Old Right click Context Menu
    How to Restore Old Right-click Context Menu in Windows 11 Windows
  • dgfhjm
    How to fix DISM Error 87: The package is unknown Windows Server
  • How to Turn Off Windows 11 Tips and Suggestions Notifications
    How to Turn Off Windows 11 Tips and Suggestions Notifications Windows

Subscribe to Blog via Email

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

Join 1,814 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 © 2025 TechDirectArchive

 

Loading Comments...
 

You must be logged in to post a comment.