Well, AUMID for UWP is in FamilyName format! AppID, as described, for example, here .
, AUMID UWP, . UWP- AUMID , , , , , , .
API, , Windows.Management.Deployment.PackageManager. , . 10.0.16257.0 SDK Windows.ApplicationModel.Core.AppListEntry AppUserModelId. , .
PowerShell, , , , . Microsoft UWP- AUMID:
$installedapps = get-AppxPackage
$aumidList = @()
foreach ($app in $installedapps)
{
foreach ($id in (Get-AppxPackageManifest $app).package.applications.application.id)
{
$aumidList += $app.packagefamilyname + "!" + $id
}
}
$aumidList
(From: User Application )
, .