-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
winget list
and upgrade
do not match installed packages to available packages in configured sources
#5249
Comments
This issue is still occurring with the latest version of WinGet and the PowerShell module, version 1.10.340. As the related thread mentions, I'm going to see if I can update/modify some manifests in our private repo to help WinGet correlate packages accordingly. |
I think this might still require a manifest in the source with the product code or other metadata to correlate with what was installed. You might be able to add the AppsAndFeatures entries to match what is in the registry so WinGet can correlate, but it's somewhat on a package-by-package basis. |
We've found an acceptable workaround!
I personally believe this is more likely a bug with the client's ability to correlate packages from REST sources specifically rather than a fault on the REST source or manifest themselves, as we're consistently seeing this behavior across all of our manifests despite them being thoroughly cross-checked for alignment with the community manifests that are otherwise correlating without issue. |
Brief description of your issue
Description
winget list
, if called without arguments for the query parameter, fails to match an installed package with its available package from a configured source. When an installed package fails to match to an available package from a configured source, the Package ID will look like “ARP\Machine\X64...”. However, runningwinget list <search_term>
does result in the installed package matching with its appropriate available package, even if the search term is as simple as a singular letter present in the package’s ID or Name.For example, we have Git.Git version 2.48.1 available in our private repository. We only maintain one version in our private repository and remove old versions when new versions are published. If you were to have installed Git version 2.46.0 either manually or in the past from the same private source, a simple
winget list
will fail to match the packages. However,winget list g
will return several installed packages, including Git.Git, and match the packages properly.Similarly,
winget upgrade
will fail to match packages and identify an available upgrade. However, if you runwinget upgrade <search_term>
, then the packages will match appropriately so long as the desired package appears in the results.Once you’ve installed the latest version of a package from the configured source, WinGet subsequently matches packages successfully.
I've confirmed this affects Git.Git and Notepad++.Notepad++, but Microsoft.PowerShell seems to not respond to the proposed workaround.
Steps to reproduce
Environment Details
Windows 11 or Windows Server 2025
WinGet Client version 1.9.25200 (latest stable), and 1.8.1911
Private self-hosted WinGet source configured (default sources removed)
Steps
Manually install a package that is available from a configured source.
Run
winget search <query>
to find the package in question and confirm it is available in the configured source.Run
winget list
andwinget upgrade
(if the installed version is older than the available version), taking note of the resultsExpected behavior
winget list
should show all installed packages the WinGet Client can identify, including the package we’ve installed manually, with the Package ID and Package Name aligning with what is available in the configured sourcewinget upgrade
should detect an upgrade is available to the package in question, assuming a version older than the one available in the configured source is installedActual behavior
winget list
fails to match installed packages with available packages, showing a Package ID pulled from the registrywinget upgrade
fails to detect an available upgrade for the package in questionEnvironment
The text was updated successfully, but these errors were encountered: