-
-
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)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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