-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbootstrap.ps1
46 lines (34 loc) · 1.38 KB
/
bootstrap.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Allow local scripts to run unsigned
Set-ExecutionPolicy RemoteSigned
# ------------- Global Packages -------------
# Chocolatey
iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))
# PSGet
(new-object Net.WebClient).DownloadString("http://psget.net/GetPsGet.ps1") | iex
# Variables
$cores = @("nodejs")
#$packages = @()
$gits = @("git.install", "git-credential-winstore")
$editors = @("SublimeText3", "SublimeText3.PackageControl")
$browsers = @("Firefox", "GoogleChrome")
$tools = @("cmder", "dropbox")
$files = @("winrar")
$usefull = @("spotify")
# Installing Packages
foreach ($core in $cores) { choco install $core -y }
#foreach ($package in $packages) { choco install $package -y }
foreach ($git in $gits) { choco install $git -y }
foreach ($editor in $editors) { choco install $editor -y }
foreach ($browser in $browsers) { choco install $browser -y }
foreach ($tool in $tools) { choco install $tool -y }
foreach ($file in $files) { choco install $file -y }
foreach ($thing in $usefull) { choco install $thing -y }
# ------------ Bower Specific -------------
npm install -g bower
# ------------ Visual Studio --------------
#choco install visualstudio2013ultimate -y
#choco install vs2013.4 -y
# ------------- PSGet Modules -------------
$modules = ("go", "posh-git", "PSReadline")
#Installing Modules
foreach ($module in $modules) { Install-Module $module }