Allow wildcard/regex for removal and install of packages
Description of the new feature / enhancement
loosely related to #2188 #2014, wildcard or even regex should be available not only for search und upgrade (the two issues mentioned) but also for installation and removal.
Proposed technical implementation details
winget should first list the matches and then ask whether to continue or not. There could be a switch to skip asking the user like /force or similar.
This functionality, and #2014, would greatly benefit the Microsoft.Gaming.GDK package with our SemVer format so that customers can get the latest release of an edition family and ignore the third part of our version number which is the build number.
Hi, any interest in implementing this?
It's make me malding when everytime I want to update something specifically from Microsoft, it has to be
winget list | Select-String -Pattern "Microsoft" | ForEach-Object { winget upgrade --id $_.Line.Split()[0] }