Skip to content

Instantly share code, notes, and snippets.

@ngm
Last active April 1, 2016 14:42
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 ngm/82afd908ace3e9976247913d8a475887 to your computer and use it in GitHub Desktop.
Save ngm/82afd908ace3e9976247913d8a475887 to your computer and use it in GitHub Desktop.
Boxstarter Script
# 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