Last active
June 27, 2017 19:31
-
-
Save jsmcnair/ca58f4084abc97193bd3 to your computer and use it in GitHub Desktop.
Boxstarter Setup Script
This file contains hidden or 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
Set-ExplorerOptions -showHidenFilesFoldersDrives -showFileExtensions | |
# Enable-RemoteDesktop | |
cinst cmder | |
cinst sysinternals | |
cinst rsat | |
cinst git | |
cinst git-credential-winstore | |
cinst poshgit | |
# Set up the environment to include git\bin so that ssh, etc are available | |
if($env:Path -notlike "*git\bin*") | |
{ | |
Write-Host "Adding git\bin to the path for extra goodies..." -ForegroundColor Yellow | |
$env:Path += "${env:ProgramFiles(x86)}\git\bin;" | |
SETX PATH $env:Path | |
} | |
else | |
{ | |
Write-Host "Git/bin already in PATH, not re-adding" -ForegroundColor Yellow | |
} | |
# cinst googlechrome.canary | |
cinst filezilla | |
cinst dropbox | |
cinst 7zip.install | |
cinst putty.install | |
cinst visualstudiocode | |
cinst vscode-powershell | |
cinst wireshark | |
cinst fiddler4 | |
cinst windirstat |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment