Last active
January 2, 2017 00:04
-
-
Save ballPointPenguin/8cfc9c97e0fbb074ffa30a721d0ac57b to your computer and use it in GitHub Desktop.
My Windows 10 Pro development laptop Boxstarter 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
# Configure Windows | |
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions -EnableShowFullPathInTitleBar | |
Enable-RemoteDesktop | |
## Git | |
cinst -y git | |
cinst -y --ignore-checksums poshgit | |
cinst -y --ignore-checksums git-credential-manager-for-windows | |
cinst -y --ignore-checksums github | |
cinst -y --ignore-checksums sourcetree | |
## Node, npm | |
cinst -y --ignore-checksums nodejs.install | |
# npm install -g npm-windows-upgrade | |
# npm-windows-upgrade | |
## Unix-y goodness | |
cinst -y conemu | |
cinst -y --ignore-checksums cygwin | |
cinst -y cyg-get | |
cinst -y --ignore-checksums gow | |
## Visual Studio 2015 | |
cinst -y cmake.portable | |
cinst -y --ignore-checksums visualstudio2015community | |
cinst -y --ignore-checksums visualstudiocode | |
## Python | |
cinst -y python | |
cinst -y pip | |
## Basics | |
cinst -y 7zip.install | |
cinst -y --ignore-checksums vlc | |
cinst -y --ignore-checksums GoogleChrome | |
cinst -y --ignore-checksums sysinternals | |
# Windows Features | |
cinst Microsoft-Hyper-V-All -source windowsFeatures | |
if (Test-PendingReboot) { Invoke-Reboot } | |
# Let's get Updates, too | |
Install-WindowsUpdate -acceptEula |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment