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"
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"
Select the radio box for "AppUserModelID". That ID is what you are going to want to execute.
Select "Details" from the little "View" gadget" on the right hand side.
LeftMouseUpAction=[shell:Appsfolder\Microsoft.MicrosoftEdge_8wekyb3d8bbwe!MicrosoftEdge]
It is currently October 4th, 2023, 4:03 pm
Launching Windows 10 "apps"
-
- Developer
- Posts: 22590
- Joined: April 19th, 2009, 11:02 pm
- Location: Fort Hunt, Virginia, USA
Launching Windows 10 "apps"
You do not have the required permissions to view the files attached to this post.
-
- Developer
- Posts: 22590
- Joined: April 19th, 2009, 11:02 pm
- Location: Fort Hunt, Virginia, USA
Re: Launching Windows 10 "apps"
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
You do not have the required permissions to view the files attached to this post.
-
- Posts: 1
- Joined: March 24th, 2016, 11:48 am
Re: Launching Windows 10 "apps"
This is, in a word, AMAZING! It works flawlessly. Thank you so much for this! 
