Last active
November 29, 2016 02:43
-
-
Save andersonvom/0516a95ba2aaeb106bd34363df51d2fb to your computer and use it in GitHub Desktop.
BoxStarter .NET development box
This file contains 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
# Enable Developer Mode & Install Bash | |
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\AppModelUnlock" /t REG_DWORD /f /v "AllowDevelopmentWithoutDevLicense" /d "1" | |
# Microsoft-Windows-Subsystem-Linux doesn't seem to be working =( | |
# Enable-WindowsOptionalFeature -Online -FeatureName "Microsoft-Windows-Subsystem-Linux" -All -NoRestart | |
Enable-WindowsOptionalFeature -Online -FeatureName "TelnetClient" -All -NoRestart | |
Enable-WindowsOptionalFeature -Online -FeatureName "NetFx3" -All -NoRestart | |
Set-ExplorerOptions -showHiddenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions | |
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions | |
Set-TaskbarOptions -Size Small -Combine Full | |
Enable-RemoteDesktop | |
Disable-GameBarTips | |
Disable-BingSearch | |
# Misc Tools | |
# cinst cygwin # can't seem to make this work | |
cinst chocolatey | |
cinst jdk8 | |
cinst fiddler4 | |
cinst git.install | |
cinst git-credential-winstore | |
cinst gittfs | |
cinst notepadplusplus | |
cinst vim | |
cinst nodist | |
cinst yarn | |
cinst ConEmu | |
cinst visualstudiocode | |
cinst firefox | |
cinst googlechrome | |
cinst screenhero | |
# Microsoft Tools | |
cinst dotnet4.5.1 | |
cinst aspnetmvc4.install | |
cinst visualstudio2015professional | |
cinst mssqlservermanagementstudio2014express | |
cinst resharper | |
cinst stylecop | |
cinst IIS-WebServerRole -source windowsfeatures | |
Install-WindowsUpdate -AcceptEula |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment