Skip to content

Instantly share code, notes, and snippets.

@jsmcnair
Last active June 27, 2017 19:31
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 jsmcnair/ca58f4084abc97193bd3 to your computer and use it in GitHub Desktop.
Save jsmcnair/ca58f4084abc97193bd3 to your computer and use it in GitHub Desktop.
Boxstarter Setup Script
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