Last active
October 21, 2016 15:25
-
-
Save bohbra/1dbae74e6c5cde0435f6f31c51b62ead to your computer and use it in GitHub Desktop.
Dev boxstarter
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
################################# Boxstarter ###################################### | |
$Boxstarter.RebootOk=$true # Allow reboots? | |
$Boxstarter.NoPassword=$true # Is this a machine with no login password? | |
$Boxstarter.AutoLogin=$true # Save my password securely and auto-login after a reboot | |
################################# WINDOWS SETTTINGS ############################### | |
Update-ExecutionPolicy Unrestricted | |
Set-ExplorerOptions -showFileExtensions | |
Enable-RemoteDesktop | |
Disable-InternetExplorerESC | |
Disable-UAC | |
################################# SOFTWARE ######################################## | |
cinst visualstudioenterprise2015 -y -pre | |
cinst dotnet-4.6.2 -y | |
cinst googlechrome -y | |
cinst firefox -y | |
cinst notepadplusplus -y | |
cinst dropbox -y | |
cinst windirstat -y | |
cinst jdk8 -y | |
cinst paint.net -y | |
cinst 7zip -y | |
cinst hipchat -y | |
cinst vlc -y | |
cinst spotify -y | |
cinst teamviewer -y | |
cinst everything -y | |
cinst adobe-creative-cloud -y | |
cinst github -y | |
cinst vmware-workstation-player -y | |
cinst webpi -y | |
cinst wireshark -y | |
cinst virtualclonedrive =y | |
#cinst androidstudio | |
#cinst office2016 | |
# Project Specific | |
cinst rabbitmq -y | |
cinst mongodb -y | |
# VS extensions | |
Install-ChocolateyVsixPackage p4vs11 https://visualstudiogallery.msdn.microsoft.com/c42e78dd-846e-462c-bfce-6ee96b4eb7df/file/83680/29/p4vs11.vsix | |
Install-ChocolateyVsixPackage VsRestart2015 https://visualstudiogallery.msdn.microsoft.com/b4ced461-1e51-4d2b-bf6a-9144a7da16a2/file/178341/2/VsRestart2015.vsix | |
# Pin to taskbar | |
Install-ChocolateyPinnedTaskBarItem "$($Boxstarter.programFiles86)\Google\Chrome\Application\chrome.exe" | |
Install-ChocolateyPinnedTaskBarItem "$($Boxstarter.programFiles86)\Microsoft Visual Studio 12.0\Common7\IDE\devenv.exe" | |
################################# Dev Folders ##################################### | |
New-Item -path "C:\GitHub" -type directory -force | |
New-Item -path "C:\P4" -type directory -force | |
################################# Windows Update ################################## | |
Enable-MicrosoftUpdate | |
Install-WindowsUpdate -AcceptEula -GetUpdatesFromMS | |
################################# POWER SETTINGS ################################## | |
powercfg -change -monitor-timeout-ac 0 | |
powercfg -change -standby-timeout-ac 0 | |
powercfg -change -disk-timeout-ac 0 | |
powercfg -change -hibernate-timeout-ac 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment