Last active
August 29, 2015 14:06
-
-
Save Orcomp/767df2bb07a4e034168c to your computer and use it in GitHub Desktop.
Boxtarter 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
| # http://boxstarter.org/package/url? | |
| ##################### | |
| # BEGIN CONFIGURATION | |
| ##################### | |
| #region Initial Windows Config | |
| # Install-WindowsUpdate -AcceptEula | |
| # Update-ExecutionPolicy Unrestricted | |
| # Set-ExplorerOptions -showHidenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions | |
| # Set-StartScreenOptions -EnableBootToDesktop -EnableDesktopBackgroundOnStart -EnableShowStartOnActiveScreen -EnableShowAppsViewOnStartScreen -EnableSearchEverywhereInAppsView -EnableListDesktopAppsFirst | |
| # Enable-RemoteDesktop | |
| #endregion | |
| # Let's get the latest version of powershell and .net frameworks | |
| #cinst PowerShell | |
| #cinst DotNet4.0 | |
| #cinst DotNet4.5 | |
| #======================== | |
| # Screenshot tool | |
| cinst greenshot | |
| # If we're doing web development, we need a few browsers | |
| cinst GoogleChrome | |
| cinst Firefox | |
| # Don't quite know why this is important, but I'll install silverlight and java runtime anyways | |
| cinst Silverlight | |
| cinst javaruntime | |
| # General | |
| cinst vlc | |
| cinst f.lux | |
| cinst TeraCopy | |
| cinst Clover | |
| cinst processhacker | |
| cinst windirstat | |
| cinst keepass | |
| # Dev tools | |
| cinst notepadplusplus.install | |
| cinst mysql.workbench | |
| cinst InnoSetup | |
| cinst notepad2-mod | |
| cinst linqpad4 | |
| cinst 7zip | |
| # Without Git, we might as well go home. | |
| cinst poshgit | |
| cinst git-credential-winstore -Version 1.2.0.0 | |
| cinst gitextensions | |
| # Fix SSH-Agent error by adding the bin directory to the `Path` environment variable | |
| # $env:PSModulePath = $env:PSModulePath + ";C:\Program Files (x86)\Git\bin" | |
| # Markdown is how documentation becomes awesomenes | |
| # Unfortunately I'm installing this at the end because it doesn't seem to work unattended... it requires the user to press "ok" | |
| # cinst MarkdownPad2 -installargs "/exelang 1033" | |
| # VPN Client | |
| # cinst ShrewSoftVpn | |
| # Sql Server | |
| # cinst SqlServer2012Express | |
| # Install-ChocolateyPinnedTaskBarItem "$($Boxstarter.programFiles86)\Google\Chrome\Application\chrome.exe" | |
| # Left to install manually | |
| # Visual Studio | |
| # Sql Server | |
| # Resharper | |
| # YourKit | |
| # Fences | |
| # Nitro Reader | |
| # Anti virus |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment