You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
630 B
30 lines
630 B
# Description:
|
|
# This script will use Windows package manager manager to bootstrap chocolatey
|
|
# and install a list of packages.
|
|
|
|
$packages = @(
|
|
"7zip.install"
|
|
"notepadplusplus.install"
|
|
#"aimp"
|
|
#"audacity"
|
|
#"autoit"
|
|
#"filezilla"
|
|
#"gimp"
|
|
#"google-chrome-x64"
|
|
#"imgburn"
|
|
#"keepass.install"
|
|
#"paint.net"
|
|
#"putty"
|
|
#"python"
|
|
#"qbittorrent"
|
|
#"thunderbird"
|
|
#"vlc"
|
|
#"windirstat"
|
|
#"wireshark"
|
|
)
|
|
|
|
echo "Setting up Chocolatey"
|
|
Get-PackageProvider -Name chocolatey -Force
|
|
|
|
echo "Installing Packages"
|
|
Install-Package -Name $packages -Force
|
|
|