Created
October 23, 2015 14:52
-
-
Save mcwienczek/e2472a115450d84c0598 to your computer and use it in GitHub Desktop.
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
# http://boxstarter.org/package/url? | |
Set-ExplorerOptions -showHidenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions | |
Enable-RemoteDesktop | |
# It's nice to be able to browse NuGet files if necessary | |
cinstm NugetPackageExplorer | |
# If we're doing web development, we need a few browsers | |
cinstm GoogleChrome | |
cinstm Firefox | |
# Don't quite know why this is important, but I'll install silverlight and java runtime anyways | |
cinstm Silverlight | |
cinstm javaruntime | |
cinstm jdk8 | |
# Gotta have Fiddler | |
cinstm fiddler4 | |
# Editors and merge tools | |
cinstm notepadplusplus.install | |
cinstm nano | |
cinst sublimetext2 | |
# Without Git, we might as well go home. | |
cinstm git | |
cinstm poshgit | |
# Life sux without Visual Studio and the awesome extensions | |
cinstm visualstudio2015community | |
# VS related extras | |
cinstm resharper | |
# 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" | |
cinstm MarkdownPad2 -installargs "/exelang 1033" | |
# Sql Server | |
cinstm SqlServer2014Express | |
cinst 7zip | |
cinst 7zip.install | |
cinst adobereader | |
cinst Atom | |
cinst markdownpad2 | |
#cinst autohotkey.portable | |
#cinst beyondcompare | |
cinst curl | |
cinst dropbox | |
#cinst WindowsLiveWriter | |
cinst filezilla | |
#cinst git | |
#cinst git.install | |
#cinst nodejs.install | |
cinst notepad | |
#cinst NuGet.CommandLine | |
#cinst paint.net | |
#cinst PDFCreator | |
#cinst python | |
#cinst scriptcs | |
#cinst skype | |
#cinst SublimeText3 | |
#cinst SublimeText3.PackageControl | |
cinst sysinternals | |
#cinst vlc | |
#cinst Devbox-Clink | |
#cinst Wget | |
#cinst windirstat |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment