Last active
August 29, 2015 14:02
-
-
Save dclucas/d264585ca4ad239d2b3c to your computer and use it in GitHub Desktop.
Chocolatey std setup
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
cinst binroot | |
cinst GoogleChrome | |
cinst 7zip.install | |
cinst javaruntime | |
cinst powershell4 | |
cinst git | |
cinst hg | |
cinst SublimeText3 | |
#cinst virtualbox | |
#cinst vagrant | |
#cinst VirtualCloneDrive | |
#cinst vlc | |
cinst lockhunter | |
cinst SublimeText3.PackageControl | |
cinst SublimeText3.PowershellAlias | |
cinst putty | |
cinst beyondcompare | |
git config --global diff.tool bc4 | |
git config --global difftool.bc4.cmd '"\"c:/program files (x86)/beyond compare 4/bcomp.exe\" \"$LOCAL\" \"$REMOTE\"' | |
#vagrant plugin install vagrant-cachier | |
#vagrant plugin install vagrant-multi-putty | |
# Script taken from this SO answer: http://stackoverflow.com/questions/4491999/configure-windows-explorer-folder-options-through-powershell | |
$key = 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced' | |
Set-ItemProperty $key Hidden 1 | |
Set-ItemProperty $key HideFileExt 0 | |
Set-ItemProperty $key ShowSuperHidden 1 | |
Stop-Process -processname explorer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment