You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Change
The new experimental feature `listDetails` enables a new option for the
`list` command, `--details`. When supplied, the output is no longer a
table view of the results but is instead a series of `show` like outputs
drawing data from the installed item.
An example output for a single installed package is:
```PowerShell
> wingetdev list Microsoft.VisualStudio.2022.Enterprise --details
Visual Studio Enterprise 2022 [Microsoft.VisualStudio.2022.Enterprise]
Version: 17.14.21 (November 2025)
Publisher: Microsoft Corporation
Local Identifier: ARP\Machine\X86\875fed29
Product Code: 875fed29
Installer Category: exe
Installed Scope: Machine
Installed Location: C:\Program Files\Microsoft Visual Studio\2022\Enterprise
Available Upgrades:
winget [17.14.23]
```
When there are multiple results, the identity line is prefixed with the
standard `(N/M)` format string used in multi-package operations
elsewhere.
If sixels are enabled and supported by the terminal, an icon for the
installed package will be shown. This currently models the mechanism
used by winget-pkgs to extract the icons and by the `show` command to
select the appropriate one to display. It is using the same code in the
same manner and should be representative of what would be shown to the
user if it were doing the full round trip through the
repository/cache/`show` command.
Copy file name to clipboardExpand all lines: doc/Settings.md
+27Lines changed: 27 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -403,3 +403,30 @@ This feature enables support for additional source command improvements via `win
403
403
"sourceEdit": true
404
404
},
405
405
```
406
+
407
+
### listDetails
408
+
409
+
This feature enables support for displaying detailed output from the `list` command. Rather than a table view of the results, when the `--details` option is provided
410
+
to the `list` command, it will output information similar to how `show` would. Most of the data presented is directly from the local installation.
411
+
412
+
Example output:
413
+
```PowerShell
414
+
> winget list Microsoft.VisualStudio.2022.Enterprise --details
415
+
Visual Studio Enterprise 2022 [Microsoft.VisualStudio.2022.Enterprise]
0 commit comments