31 lines
535 B
PowerShell
31 lines
535 B
PowerShell
# 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
|
|
|
|
## APPLICATIONS
|
|
|
|
# base
|
|
choco install `
|
|
vcredist-all `
|
|
javaruntime
|
|
|
|
# navigateurs
|
|
choco install `
|
|
googlechrome `
|
|
firefox
|
|
|
|
# outils
|
|
choco install 7zip `
|
|
imageglass `
|
|
vlc `
|
|
lightshot `
|
|
vscode
|
|
|
|
## CLEANUP
|
|
|
|
# Désactiver la confirmation globale
|
|
choco feature disable -n allowGlobalConfirmation
|