mirror of
https://github.com/djibux/BoilR.git
synced 2026-09-01 05:53:41 +02:00
* Initial gamepass platform implementation * Implement cargo clippy fixes * Update to version 1.9.0
16 lines
502 B
PowerShell
16 lines
502 B
PowerShell
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 |