refactor: traduire et combiner le script de base

This commit is contained in:
Victor Lacasse-Beaudoin 2024-05-10 16:14:30 -04:00
parent 93d7a277b5
commit 5f97970c7b

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