It is currently April 19th, 2024, 5:15 am

Launching Windows 10 "apps"

Our most popular Tips and Tricks from the Rainmeter Team and others
User avatar
jsmorley
Developer
Posts: 22629
Joined: April 19th, 2009, 11:02 pm
Location: Fort Hunt, Virginia, USA

Launching Windows 10 "apps"

Post by jsmorley »

You can create a Rainmeter action to open any Windows 10 "app" installed on your system.

One way to get what you need is to:

Hit Win-R to open a "Run" input, and type "shell:Appsfolder"
0.5.jpg
That will open up a normally well-hidden "Applications" folder in Explorer, which will have all your installed applications listed, including the "modern" ones that come with Windows 10 or that you get from the "Store".

When in that, hit F-10 to get a menu bar, and from that menu bar select "View / Choose Details"
1.jpg
Select the radio box for "AppUserModelID". That ID is what you are going to want to execute.
2.jpg
Select "Details" from the little "View" gadget" on the right hand side.
3.jpg
LeftMouseUpAction=[shell:Appsfolder\Microsoft.MicrosoftEdge_8wekyb3d8bbwe!MicrosoftEdge]
You do not have the required permissions to view the files attached to this post.
User avatar
jsmorley
Developer
Posts: 22629
Joined: April 19th, 2009, 11:02 pm
Location: Fort Hunt, Virginia, USA

Re: Launching Windows 10 "apps"

Post by jsmorley »

Alternatively, you can get a listing of all Application User Model ID (AUMID) values by running a Powershell script:

Code: Select all

$installedapps = get-AppxPackage

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

$aumidList
1.png
You do not have the required permissions to view the files attached to this post.
leftcoastfunk
Posts: 1
Joined: March 24th, 2016, 11:48 am

Re: Launching Windows 10 "apps"

Post by leftcoastfunk »

This is, in a word, AMAZING! It works flawlessly. Thank you so much for this! :thumbup: