Skip to content

Instantly share code, notes, and snippets.

@stefanprodan
Last active August 29, 2015 14:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stefanprodan/eee6e815156cb440dffb to your computer and use it in GitHub Desktop.
Save stefanprodan/eee6e815156cb440dffb to your computer and use it in GitHub Desktop.
Boxstarter script for DevLab project.
# NUC workstation setup
# VeriTech Solution @ 2015
# https://veritech.io/
# START http://boxstarter.org/package/nr/url?http://bit.ly/1IMTQcD
# enable reboot
$Boxstarter.RebootOk=$true
$Boxstarter.NoPassword=$false
$Boxstarter.AutoLogin=$true
# PS and win explorer
Update-ExecutionPolicy Unrestricted
Set-ExplorerOptions -showFileExtensions
Enable-RemoteDesktop
Disable-InternetExplorerESC
Disable-UAC
Set-NetFirewallProfile -Profile Domain,Public,Private -Enabled False
if (Test-PendingReboot) { Invoke-Reboot }
# OS updates
Install-WindowsUpdate -AcceptEula
if (Test-PendingReboot) { Invoke-Reboot }
# essential dev tools
choco install git.install -y
choco install notepadplusplus.install -y
choco install procexp -y
choco install conemu -y
# Servers
choco install tomcat -y
choco install nodejs.install -y
# Java tools
choco install eclipse -version 4.5.20150719 -y
choco install androidstudio -y
# VS
choco install visualstudiocode -version 0.5.0.0 - y
#choco install visualstudio2015community -y
# Browsers
choco install google-chrome-x64 -y
choco install firefox -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment