choco/base.ps1

32 lines
535 B
PowerShell
Raw Permalink Normal View History

# Script d'installation de logiciels de base pour les ordinateurs clients du
# parc informatique de l'AGECEM
## INITIALISATION
# Activer la confirmation globale
2023-03-28 19:14:05 -04:00
choco feature enable -n allowGlobalConfirmation
## APPLICATIONS
2023-03-28 19:14:05 -04:00
# base
choco install `
vcredist-all `
javaruntime
# navigateurs
choco install `
googlechrome `
firefox
2023-03-28 19:14:05 -04:00
# outils
choco install 7zip `
imageglass `
vlc `
lightshot `
vscode
2023-03-28 19:14:05 -04:00
## CLEANUP
2023-03-28 19:14:05 -04:00
# Désactiver la confirmation globale
2023-03-28 19:14:05 -04:00
choco feature disable -n allowGlobalConfirmation