Installation sous CMD (admin)
@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
Mise à jour de Chocolatey
choco upgrade chocolate
Installation de logiciels
choco install mon_logiciel -y
Il est possible d’installer plusieurs logiciels en même temps en les espaçant dans la commande
Désinstallation de logiciels
choco uninstall mon_logiciel -y
Voir les logiciels non à jour
choco outdated
Mettre à jour les logiciels
choco upgrade mon_logiciel -y
choco upgrade all -y
Lister tous les paquets installés
choco list -l
Effectuer une recherche de logiciels
choco search --by-id-only mon_logiciel