Update list-apps.ps1

This commit is contained in:
Markus Fleschutz 2022-12-28 14:23:27 +01:00
parent 7f044f1a08
commit 4656ef2326

View File

@ -15,7 +15,7 @@ try {
if ($IsLinux) {
& snap list
} else {
Get-AppxPackage | Select-Object Name,Version | Format-Table -autoSize
Get-AppxPackage | Format-Table -property Name,Version,InstallLocation,Status -autoSize
}
exit 0 # success
} catch {