Created
August 2, 2018 21:45
-
-
Save adampats/f4f971c579f3f8fee5942c9c0e31a591 to your computer and use it in GitHub Desktop.
Windoze dev setup
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
mkdir temp | |
cd temp | |
# Configure Windows | |
Set-WindowsExplorerOptions ` | |
-EnableShowHiddenFilesFoldersDrives ` | |
-EnableShowProtectedOSFiles ` | |
-EnableShowFileExtensions ` | |
-EnableShowFullPathInTitleBar | |
# Update-ExecutionPolicy Unrestricted | |
Set-ExecutionPolicy Unrestricted -Scope CurrentUser | |
# Enable WSL | |
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux | |
# Download Ubuntu - is this necessary? | |
$ProgressPreference = 'SilentlyContinue' | |
Invoke-WebRequest -Uri https://aka.ms/wsl-ubuntu-1604 -OutFile Ubuntu.appx -UseBasicParsing | |
# Install Chocolatey | |
Set-ExecutionPolicy Bypass -Scope Process -Force | |
iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) | |
# Install packages | |
choco install -y ` | |
7zip.install ` | |
atom ` | |
awscli ` | |
awstools.powershell ` | |
azure-cli ` | |
conemu ` | |
docker-for-windows ` | |
Firefox ` | |
git.install ` | |
Git-Credential-Manager-for-Windows ` | |
github ` | |
googlechrome ` | |
Gow ` | |
notepadplusplus ` | |
pip ` | |
python ` | |
python2 ` | |
ruby ` | |
ruby.devkit ` | |
sysinternals ` | |
vagrant ` | |
virtualbox ` | |
virtualbox.extensionpack ` | |
vlc ` | |
vscode ` | |
# Pinning Things | |
Install-ChocolateyPinnedTaskBarItem "$env:programfiles\Google\Chrome\Application\chrome.exe" | |
# Let's get Updates, too | |
Install-WindowsUpdate -acceptEula | |
if (Test-PendingReboot) { Invoke-Reboot } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment