Skip to content

Instantly share code, notes, and snippets.

@cbilson
Created June 11, 2014 15:54
Show Gist options
  • Save cbilson/5270f5d352a368538544 to your computer and use it in GitHub Desktop.
Save cbilson/5270f5d352a368538544 to your computer and use it in GitHub Desktop.
Boxstarter DevBox script
Update-ExecutionPolicy Unrestricted
if (!(Test-Path $env:UserProfile\OneDrive\Documents)) {
New-Item -Force -Path $env:UserProfile\OneDrive\Documents -Type Directory
}
Move-LibraryDirectory "Personal" "$env:UserProfile\OneDrive\Documents"
Set-ExplorerOptions -ShowHidenFilesFoldersDrives -ShowProtectedOSFiles -ShowFileExtensions
Set-TaskbarSmall
Enable-RemoteDesktop
cinst ConEmu
cinst Git
cinst Fiddler4
cinst vim
cinst Emacs
cinst WinDbg
cinst SysInternals
cinst VisualStudio2013Ultimate
# cinst aspell
# cinst racket
cinst JavaRuntime
cinst WindowsAzurePowershell
cinst Microsoft-Hyper-V-All -source windowsFeatures
cinst IIS-WebServerRole -source windowsfeatures
cinst IIS-HttpCompressionDynamic -source windowsfeatures
#Install-ChocolateyPinnedTaskBarItem "$env:windir\system32\mstsc.exe"
#Install-ChocolateyPinnedTaskBarItem "$env:programfiles\console\console.exe"
#Copy-Item (Join-Path -Path (Get-PackageRoot($MyInvocation)) -ChildPath 'ConEmu.xml') -Force $env:appdata\console\console.xml
#Install-ChocolateyVsixPackage vsvim http://visualstudiogallery.msdn.microsoft.com/59ca71b3-a4a3-46ca-8fe1-0e90e3f79329/file/6390/50/VsVim.vsix
Install-WindowsUpdate -AcceptEula
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment