Last active
April 1, 2016 14:42
-
-
Save ngm/82afd908ace3e9976247913d8a475887 to your computer and use it in GitHub Desktop.
Boxstarter Script
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
# antivirus | |
cinst autohotkey # avg installer uses autohotkey... | |
cinst avgantivirusfree | |
# windows updates + reboot | |
Install-WindowsUpdate -acceptEula | |
if (Test-PendingReboot) { Invoke-Reboot } | |
# iis | |
cinst IIS-WebServerRole -source windowsfeatures | |
if (Test-PendingReboot) { Invoke-Reboot } | |
# dev apps | |
cinst git | |
cinst git-credential-winstore | |
# editors | |
cinst vim | |
### clone dotfiles from github rebo... | |
# Visual Studio | |
choco install VisualStudio2015Enterprise -y -InstallArguments WebTools | |
### install vsvim | |
### install power tools | |
### install web essentials | |
### install codemaid | |
# Windows Options | |
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions | |
Enable-RemoteDesktop | |
# disable defrag because I have an SSD | |
Get-ScheduledTask -TaskName *defrag* | Disable-ScheduledTask | |
# Browsers | |
cinst googlechrome -y | |
cinst firefox -y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://github.com/robertbird/robertbird.devenvironment/tree/master/MachineBuilds