23 lines
329 B
PowerShell
23 lines
329 B
PowerShell
|
# Enable auto confirm
|
||
|
choco feature enable -n allowGlobalConfirmation
|
||
|
|
||
|
# Install packages
|
||
|
|
||
|
# base
|
||
|
cinst vcredist-all
|
||
|
cinst javaruntime
|
||
|
|
||
|
# browsers
|
||
|
cinst googlechrome
|
||
|
cinst firefox
|
||
|
|
||
|
# tools
|
||
|
cinst 7zip
|
||
|
cinst imageglass
|
||
|
cinst vlc
|
||
|
cinst lightshot
|
||
|
cinst vscode
|
||
|
|
||
|
# Disable auto confirm
|
||
|
choco feature disable -n allowGlobalConfirmation
|