How do you list available updates including pinned, like winget upgrade
?
#4376
o-l-a-v
started this conversation in
PowerShell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Related to #4375.
How do you even list available updates with
Microsoft.WinGet.Client
? Including pinned?Here's the available cmdlets in v1.7.10861:
Before posting I found this:
That does not seem like a complete solution. For instance, you can't do
--include-pinned
or--include-unknown
, likewinget upgrade
. Withwinget upgrade --include-pinned
I get:With
Get-WinGetPackage -Source 'WinGet' | Where-Object -Property 'IsUpdateAvailable'
I get nothing.Get-WinGetPackage -Source 'WinGet' -Id 'Discord.Discord'
does not list a newer available version, likewinget upgrade --include-pinned
does.Beta Was this translation helpful? Give feedback.
All reactions