Trouver le Application User Model ID d'une application installée
This commit is contained in:
parent
3157f1dffd
commit
566b6b5217
12
Windows10/getappsinstallees.ps1
Normal file
12
Windows10/getappsinstallees.ps1
Normal file
@ -0,0 +1,12 @@
|
||||
$installedapps = get-AppxPackage
|
||||
|
||||
$aumidList = @()
|
||||
foreach ($app in $installedapps)
|
||||
{
|
||||
foreach ($id in (Get-AppxPackageManifest $app).package.applications.application.id)
|
||||
{
|
||||
$aumidList += $app.packagefamilyname + "!" + $id
|
||||
}
|
||||
}
|
||||
|
||||
$aumidList
|
Loading…
x
Reference in New Issue
Block a user