Browse Source

add script which installs basic stuff using Chocolatey

pull/55/head
Alex Hirsch 9 years ago
parent
commit
aa4005793f
  1. 30
      scripts/install-basic-stuff.ps1

30
scripts/install-basic-stuff.ps1

@ -0,0 +1,30 @@
# 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
Loading…
Cancel
Save