refactor: traduire et combiner le script de base #1
1 changed files with 23 additions and 14 deletions
37
base.ps1
37
base.ps1
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue