-
Notifications
You must be signed in to change notification settings - Fork 2
/
boxstarter.ps1
39 lines (35 loc) · 1.7 KB
/
boxstarter.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
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions -EnableShowFullPathInTitleBar
Set-TaskbarOptions -Size Small -Lock -Dock Bottom
choco install microsoft-build-tools -y
choco install MsSqlServer2012Express -y
choco install visualstudio2015enterprise -y -InstallArguments "/Features:WebTools SQL"
choco install netfx-4.5.2-devpack -y
choco install tfs2013powertools -y
choco install vs2015.vscommands -y
choco install resharper -y
choco install ncrunch-vs2015 -y
(new-object -c shell.application).namespace("${env:SystemRoot}\system32\WindowsPowerShell\v1.0\").parsename("powershell.exe").invokeverb("taskbarpin")
Install-WindowsFeature FileAndStorage-Services
Install-WindowsFeature File-Services
Install-WindowsFeature Storage-Services
Install-WindowsFeature NET-Framework-Features
Install-WindowsFeature NET-Framework-Core
Install-WindowsFeature NET-Framework-45-Features
Install-WindowsFeature NET-Framework-45-Core
Install-WindowsFeature NET-Framework-45-ASPNET
Install-WindowsFeature NET-WCF-Services45
Install-WindowsFeature NET-WCF-Pipe-Activation45
Install-WindowsFeature NET-WCF-TCP-PortSharing45
Install-WindowsFeature FS-SMB1
Install-WindowsFeature User-Interfaces-Infra
Install-WindowsFeature Server-Gui-Mgmt-Infra
Install-WindowsFeature Server-Gui-Shell
Install-WindowsFeature Windows-Identity-Foundation
Install-WindowsFeature PowerShellRoot
Install-WindowsFeature PowerShell
Install-WindowsFeature PowerShell-V2
Install-WindowsFeature WAS
Install-WindowsFeature WAS-Process-Model
Install-WindowsFeature WAS-Config-APIs
Install-WindowsFeature WoW64-Support
Install-WindowsUpdate -AcceptEula