els comandaments més utilitzats en l'Administrador de Windows achocolatada Paquet
A xocolata és un gestor de paquets per a Windows. Ideal per a una fàcil instal·lació del programari i les seves dependències. Es fa molt més fàcil el maneig de programari s'instal·la a Windows. There is no need to follow a software’s installation instructions as the installation process is always the same for any software in chocolatey. Chocolatey also allows multiple software installs with no user intervention required. Chocolatey also updates software to the latest version when they become available.
Install Chocolatey in Powershell by copy and pasting the following command
iwr https://chocolatey.org/install.ps1 -UseBasicParsing | iex
Get going by using the following commonly used commands
Search for a package with user’s string anywhere in the package name
clist {package name} exemple clist gimp
List packages that starts with specified characters
clist {package name} --id starts-with exemple clist gim --id starts-with
List packages that starts with specified characters and order by popularity
clist {package name} --id-starts-with --order-by-popularity exemple clist gim --id-starts-with --order-by-popularity
Nota: The search command is an alias for the list command
Install package
cinst {package name} exemple cinst gimp
Install particular package version
cinst {package name} --version {version #} exemple cinst gimp --version 2.8.0
Uninstall package
cuninst {package name} exemple cinst gimp
List all installed packages
clist -lo
Update all packages
cup all -y
