choco/base.ps1

23 lines
329 B
PowerShell
Raw Normal View History

2023-03-28 19:14:05 -04:00
# 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