Created
January 20, 2019 12:49
-
-
Save jetstreamin/838a508e83ca44f1bf44d6e8dd57de7e to your computer and use it in GitHub Desktop.
This is my script for installing a dev box. It uses chocolaty and a couple other package managers for Windows 10.
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
REM Dev Box Setup | |
REM This script sets up my dev boxes for virtual machines that I use. | |
REM It will go through and 1st install Chocolatey, then it will installs extensions for vs code and perform various | |
REM other setup functions. | |
REM M. Mahon | |
REM @jetstreamin | |
REM Chocolaty Command Reference: https://chocolatey.org/docs/commands-reference | |
@echo off | |
REM Install Chocolatey on the target machine | |
@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin" | |
REM Upgrade JIC | |
choco upgrade chocolatey | |
REM Install packages | |
chocolatey-core.extension -y | |
ConEmu -y | |
DotNet4.5.2 -y | |
git -y | |
git.install -y | |
GoogleChrome -y | |
greenshot -y | |
jre8 -y | |
nmap -y | |
nodejs -y | |
nodejs.install -y | |
notepadplusplus -y | |
notepadplusplus.install -y | |
choco install virtualbox -y | |
choco install vscode -y | |
REM Config VS Code for React Development | |
code --list-extensions > c:\Code\Gists\react-vscode-extensions.bat | |
code --install-extension angryobject.react-pure-to-class-vscode | |
code --install-extension aws-amplify.aws-amplify-vscode | |
code --install-extension aws-scripting-guy.cform | |
code --install-extension beaugunderson.solidity-extended | |
code --install-extension bierner.github-markdown-preview | |
code --install-extension bierner.lit-html | |
code --install-extension bierner.markdown-checkbox | |
code --install-extension bierner.markdown-emoji | |
code --install-extension bierner.markdown-preview-github-styles | |
code --install-extension bierner.markdown-yaml-preamble | |
code --install-extension blanu.vscode-styled-jsx | |
code --install-extension burkeholland.simple-react-snippets | |
code --install-extension chenxsan.vscode-standardjs | |
code --install-extension christian-kohler.npm-intellisense | |
code --install-extension CoenraadS.bracket-pair-colorizer | |
code --install-extension cssho.vscode-svgviewer | |
code --install-extension DanielThielking.aws-cloudformation-yaml | |
code --install-extension dbaeumer.vscode-eslint | |
code --install-extension deerawan.vscode-faker | |
code --install-extension dsznajder.es7-react-js-snippets | |
code --install-extension eamodio.gitlens | |
code --install-extension EditorConfig.EditorConfig | |
code --install-extension eg2.vscode-npm-script | |
code --install-extension EQuimper.react-native-react-redux | |
code --install-extension erd0s.terraform-autocomplete | |
code --install-extension esbenp.prettier-vscode | |
code --install-extension formulahendry.auto-rename-tag | |
code --install-extension formulahendry.code-runner | |
code --install-extension Fr43nk.seito-openfile | |
code --install-extension giancarlopro.faker-snippets | |
code --install-extension HookyQR.beautify | |
code --install-extension hosho.solidity-debugger | |
code --install-extension idleberg.icon-fonts | |
code --install-extension idrabenia.solidity-solhint | |
code --install-extension IoliteLabs.solidity-windows | |
code --install-extension itayadler.terraform-ssm | |
code --install-extension jasonnutter.search-node-modules | |
code --install-extension jawandarajbir.react-vscode-extension-pack | |
code --install-extension JuanBlanco.solidity | |
code --install-extension karigari.chat | |
code --install-extension kodebox.solidity-language-server | |
code --install-extension loganarnett.lambda-snippets | |
code --install-extension mark-tucker.aws-cli-configure | |
code --install-extension maty.vscode-mocha-sidebar | |
code --install-extension mgmcdermott.vscode-language-babel | |
code --install-extension ms-vscode.vs-keybindings | |
code --install-extension msjsdiag.debugger-for-chrome | |
code --install-extension niradler.prettierthis | |
code --install-extension paulshestakov.aws-step-functions-constructor | |
code --install-extension redhat.vscode-yaml | |
code --install-extension ritwickdey.LiveServer | |
code --install-extension rokoroku.vscode-theme-darcula | |
code --install-extension Rubymaniac.vscode-paste-and-indent | |
code --install-extension shardulm94.trailing-spaces | |
code --install-extension sidthesloth.html5-boilerplate | |
code --install-extension sleistner.vscode-fileutils | |
code --install-extension spoonscen.es6-mocha-snippets | |
code --install-extension vscode-aws-console.vscode-aws-console | |
code --install-extension xabikos.JavaScriptSnippets | |
code --install-extension yatki.vscode-surround | |
code --install-extension Zignd.html-css-class-completion | |
code --install-extension litleleprikon.socket-io-vscode |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment