From 566b6b5217e73f3eb05a5956684f301411901982 Mon Sep 17 00:00:00 2001 From: andre Date: Tue, 20 Feb 2018 15:21:09 +0100 Subject: [PATCH] =?UTF-8?q?Trouver=20le=20Application=20User=20Model=20ID?= =?UTF-8?q?=20d'une=20application=20install=C3=A9e?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Windows10/getappsinstallees.ps1 | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Windows10/getappsinstallees.ps1 diff --git a/Windows10/getappsinstallees.ps1 b/Windows10/getappsinstallees.ps1 new file mode 100644 index 0000000..ae86f0c --- /dev/null +++ b/Windows10/getappsinstallees.ps1 @@ -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 \ No newline at end of file