Merge pull request 'refactor: traduire et combiner le script de base' (#1) from vlbeaudoin/refactor/traduire-et-combiner into main

Reviewed-on: #1
This commit is contained in:
Victor Lacasse-Beaudoin 2024-05-10 15:21:02 -05:00
commit 07b77598db

View file

@ -1,22 +1,31 @@
# Enable auto confirm # Script d'installation de logiciels de base pour les ordinateurs clients du
# parc informatique de l'AGECEM
## INITIALISATION
# Activer la confirmation globale
choco feature enable -n allowGlobalConfirmation choco feature enable -n allowGlobalConfirmation
# Install packages ## APPLICATIONS
# base # base
cinst vcredist-all choco install `
cinst javaruntime vcredist-all `
javaruntime
# browsers # navigateurs
cinst googlechrome choco install `
cinst firefox googlechrome `
firefox
# tools # outils
cinst 7zip choco install 7zip `
cinst imageglass imageglass `
cinst vlc vlc `
cinst lightshot lightshot `
cinst vscode vscode
# Disable auto confirm ## CLEANUP
# Désactiver la confirmation globale
choco feature disable -n allowGlobalConfirmation choco feature disable -n allowGlobalConfirmation