Skip to content

Instantly share code, notes, and snippets.

@ismusidhu
Forked from sturlath/BoxtarterGist
Last active March 21, 2016 12:49
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 ismusidhu/ac7ffe72a76017b2b59b to your computer and use it in GitHub Desktop.
Save ismusidhu/ac7ffe72a76017b2b59b to your computer and use it in GitHub Desktop.
Script for setting up KashFlow Developer machine. (to be use with Boxstarter and Chocolatey)
# Install BoxStarter first from it's website http://boxstarter.org/
# then execute this batch script or paste commands in a power shell window with elevated permissions(run as administrator)
set-executionpolicy remotesigned
Import-Module Boxstarter.WinConfig
# Explorer options
Set-ExplorerOptions -showHidenFilesFoldersDrives -showFileExtensions
#Set-ExplorerOptions -showHidenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions
Enable-RemoteDesktop
# do not ask for confirmation everytime
choco feature enable -n allowGlobalConfirmation
cinst dotnet3.5
# Install SQL server 2014 developer edition at this point
# (assuming DVD is on F:)
F:\Setup.exe /ConfigurationFile=https://gist.github.com/ismusidhu/9db4fd4a83ce2b07e08e/raw/ac1e462f57ca9373f124e78641020341a60026b0/SQLServer2014InstallationConfiguration.ini
cinst VisualStudio2015Professional -packageParameters "--Features SQL"
cinst ruby
cinst nodejs.install
cinst git.install
cinst gitextensions
cinst git-credential-manager-for-windows
cinst poshgit
cinst sourcetree
cinst sublimetext3
cinst sublimetext3.packagecontrol
cinst skype
cinst hipchat
cinst firefox
cinst google-chrome-x64
cinst teamviewer
cinst p4merge
cinst conemu
cinst ethanbrown.conemuconfig
cinst 7zip
cinst paint.net
cinst linqpad
cinst fiddler4
cinst notepad2
cinst VSColorOutput
git config --global merge.tool p4merge
git config --global mergetool.p4merge.path 'C:/Program Files/Perforce/p4merge.exe'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment