Skip to main content
The show command displays detailed metadata and information about a specific package. You can also use the view alias.

Syntax

winget show [<query>] [options]

Arguments

query
string
Search query to find the package

Package Selection Options

--id
string
Filter by package identifier
--name
string
Filter by package name
--moniker
string
Filter by package moniker
-m, --manifest
path
Path to manifest file to display
-v, --version
string
Show specific version
-s, --source
string
Source to search for the package
-e, --exact
flag
Use exact string matching for queries
--scope
string
Scope filter: user or machine
-a, --architecture
string
Filter by architecture: x86, x64, arm, arm64
--installer-type
string
Filter by installer type
--locale
string
Filter by locale (BCP-47 format)

Display Options

--versions
flag
List all available versions for the package

Authentication

--header
string
Custom HTTP header for source requests
--authentication-mode
string
Authentication mode: silent, silentPreferred, interactive
--authentication-account
string
Account to use for authentication
--accept-source-agreements
flag
Accept all source agreements

Examples

Show package details:
winget show Microsoft.PowerToys
Show by exact ID:
winget show --id Microsoft.PowerToys --exact
Show specific version:
winget show Microsoft.PowerToys --version 0.70.0
Show from manifest file:
winget show --manifest .\manifest.yaml
List all available versions:
winget show Microsoft.PowerToys --versions
Show from specific source:
winget show 9WZDNCRFJ3T2 --source msstore

Output Format

Detailed package information includes:
Found Microsoft PowerToys [Microsoft.PowerToys]
Version: 0.71.0
Publisher: Microsoft Corporation
Author: Microsoft Corporation
Moniker: powertoys
Description: Microsoft PowerToys is a set of utilities for power users...
Homepage: https://github.com/microsoft/PowerToys
License: MIT
License Url: https://github.com/microsoft/PowerToys/blob/main/LICENSE
Copyright: Copyright (c) Microsoft Corporation
Tags:
  fancyzones
  powertoys
  utilities
Agreements:
  Category: License
  Agreement: https://github.com/microsoft/PowerToys/blob/main/LICENSE
Installer:
  Type: exe
  Download Url: https://github.com/microsoft/PowerToys/releases/...
  SHA256: abc123...
With --versions flag:
Found Microsoft PowerToys [Microsoft.PowerToys]

Version    Channel
------------------
0.71.0
0.70.1
0.70.0
0.69.1

Exit Codes

  • 0 - Success
  • 0x8A150001 - Package not found
  • 0x8A150042 - Multiple packages match (refine your query)
The show command is useful for inspecting package metadata, verifying installer types, and checking available versions before installation.

Build docs developers (and LLMs) love