* Initial gamepass platform implementation

* Implement cargo clippy fixes

* Update to version 1.9.0
This commit is contained in:
Philip Kristoffersen
2023-06-11 00:09:11 +02:00
committed by GitHub
parent 8fd1f51fb0
commit 28a952a9cf
7 changed files with 183 additions and 3 deletions
@@ -0,0 +1,16 @@
Get-AppxPackage |
Where-Object { -not $_.IsFramework } |
ForEach-Object {
try {
$manifest = Get-AppxPackageManifest $_
$application = $manifest.Package.Applications.Application;
[PSCustomObject]@{
kind = $application.Id
display_name = $manifest.Package.Properties.DisplayName
install_location = $_.InstallLocation
family_name = $_.PackageFamilyName
}
}
catch {}
} |
ConvertTo-Json -depth 5