« Winget » : différence entre les versions

De Banane Atomic
Aller à la navigationAller à la recherche
(Page créée avec « Category:Windows = [https://docs.microsoft.com/en-us/windows/package-manager/ Description] = The {{boxx|winget}} command line tool calls the Windows Package Manager.… »)
 
 
(8 versions intermédiaires par le même utilisateur non affichées)
Ligne 4 : Ligne 4 :


= [https://docs.microsoft.com/en-us/windows/package-manager/winget/#commands Commands] =
= [https://docs.microsoft.com/en-us/windows/package-manager/winget/#commands Commands] =
<kode lang='ps'>
# list packages installed with winget
winget list | findstr winget
# list outdated packages
winget upgrade
# upgrade all the outdated packages
winget upgrade --all
</kode>
{| class="wikitable wtp wtmono1"  
{| class="wikitable wtp wtmono1"  
! Command
! Command
Ligne 10 : Ligne 21 :
| search || searches for an application
| search || searches for an application
|-
|-
| install / uninstall || installs / uninstalls the specified application
| install / uninstall || installs / uninstalls the specified application<br>{{boxx|--version 1.2.3}} installs a specific version
|-
|-
| list || display installed packages
| list || display installed packages
Ligne 16 : Ligne 27 :
| show || displays details for the specified application
| show || displays details for the specified application
|-
|-
| upgrade || upgrades the given package
| upgrade || upgrades the given package<br>{{boxx|--version 1.2.3}} upgrades to a specific version<br>{{boxx|--all}} upgrades all apps
|}
 
= Useful packages =
{| class="wikitable wtp"
! Name
! Id
|-
| 7zip || 7zip.7zip
|-
| AutoHotkey || AutoHotkey.AutoHotkey
|-
| Firefox || Mozilla.Firefox
|-
| Git || Git.Git
|-
| GitKraken|| Axosoft.GitKraken
|-
| gsudo || gerardog.gsudo
|-
| KeePass || DominikReichl.KeePass
|-
| MariaDB || MariaDB.Server
|-
| Postman || Postman.Postman
|-
| PowerShell 7 || Microsoft.PowerShell
|-
| SSMS || Microsoft.SQLServerManagementStudio
|-
| WinDirStat || WinDirStat.WinDirStat
|-
| Windows Terminal || Microsoft.WindowsTerminal
|}
|}

Dernière version du 1 février 2024 à 17:42

Description

The winget command line tool calls the Windows Package Manager.

Commands

Ps.svg
# list packages installed with winget
winget list | findstr winget

# list outdated packages
winget upgrade

# upgrade all the outdated packages
winget upgrade --all
Command Description
search searches for an application
install / uninstall installs / uninstalls the specified application
--version 1.2.3 installs a specific version
list display installed packages
show displays details for the specified application
upgrade upgrades the given package
--version 1.2.3 upgrades to a specific version
--all upgrades all apps

Useful packages

Name Id
7zip 7zip.7zip
AutoHotkey AutoHotkey.AutoHotkey
Firefox Mozilla.Firefox
Git Git.Git
GitKraken Axosoft.GitKraken
gsudo gerardog.gsudo
KeePass DominikReichl.KeePass
MariaDB MariaDB.Server
Postman Postman.Postman
PowerShell 7 Microsoft.PowerShell
SSMS Microsoft.SQLServerManagementStudio
WinDirStat WinDirStat.WinDirStat
Windows Terminal Microsoft.WindowsTerminal