From 5ffc40347a006b5a63306eeba06e4b3389f13d88 Mon Sep 17 00:00:00 2001 From: Peter Repukat Date: Sun, 4 Sep 2022 14:59:59 +0200 Subject: [PATCH] GetAUMIDs: Keep "Microsoft.*" Entires to display more games --- GlosSIConfig/GetAUMIDs.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GlosSIConfig/GetAUMIDs.ps1 b/GlosSIConfig/GetAUMIDs.ps1 index 4c516c4..42c3844 100644 --- a/GlosSIConfig/GetAUMIDs.ps1 +++ b/GlosSIConfig/GetAUMIDs.ps1 @@ -21,7 +21,7 @@ foreach ($app in $installedapps) { } #filter more apps with improper naming patterns; games generally have the appropriate field in their manifests filled out. - if ($name -like "MicrosoftWindows.*" -or $name -like "Microsoft.*" -or $name -like "Windows.*" -or $name -like "Windows Web*") { break; } + if ($name -like "MicrosoftWindows.*" -or $name -like "Windows.*" -or $name -like "Windows Web*") { break; } $installDir = $app.InstallLocation; #filter out system apps and apps installed by Microsoft as part of Windows