mirror of
https://github.com/djibux/BoilR.git
synced 2026-09-01 05:53:41 +02:00
Gamepass (#350)
* Initial gamepass platform implementation * Implement cargo clippy fixes * Update to version 1.9.0
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user