23 lines
347 B
PowerShell
23 lines
347 B
PowerShell
# Enable auto confirm
|
|
choco feature enable -n allowGlobalConfirmation
|
|
|
|
# Install packages
|
|
|
|
# base
|
|
cinst vcredist-all
|
|
cinst office-tool
|
|
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
|