refactor: traduire et combiner le script de base
This commit is contained in:
parent
93d7a277b5
commit
5f97970c7b
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
|
||||
|
||||
# Install packages
|
||||
## APPLICATIONS
|
||||
|
||||
# base
|
||||
cinst vcredist-all
|
||||
cinst javaruntime
|
||||
choco install `
|
||||
vcredist-all `
|
||||
javaruntime
|
||||
|
||||
# browsers
|
||||
cinst googlechrome
|
||||
cinst firefox
|
||||
# navigateurs
|
||||
choco install `
|
||||
googlechrome `
|
||||
firefox
|
||||
|
||||
# tools
|
||||
cinst 7zip
|
||||
cinst imageglass
|
||||
cinst vlc
|
||||
cinst lightshot
|
||||
cinst vscode
|
||||
# outils
|
||||
choco install 7zip `
|
||||
imageglass `
|
||||
vlc `
|
||||
lightshot `
|
||||
vscode
|
||||
|
||||
# Disable auto confirm
|
||||
## CLEANUP
|
||||
|
||||
# Désactiver la confirmation globale
|
||||
choco feature disable -n allowGlobalConfirmation
|
||||
|
|
Loading…
Reference in a new issue