Last active
August 29, 2015 14:06
-
-
Save ThaddParker/543228b70fdafcee8183 to your computer and use it in GitHub Desktop.
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
# there will have to be a separate PS script to run specific nuget packages | |
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions | |
Enable-RemoteDesktop | |
Disable-InternetExplorerESC | |
# dev tools | |
cinst console-devel | |
cinst dotpeek | |
cinst sysinternals | |
cinst fiddler4 | |
cinst GoogleChrome | |
cinst Firefox | |
cinst notepadplusplus.install | |
cinst javaruntime | |
# cinst apache-tomcat -source \\W8DJ0-OGQ3A3D\DevSources -ia '/S' # this is will have to be done manually for now. | |
cinst 7zip.install | |
cinst winmerge | |
cinst linqpad4 | |
cinst pscx | |
cinst PowerGUI | |
cinst powershell4 | |
cinst SQL2012.PowerShell | |
cinst sqljdbc | |
# java script functionality | |
cinst PhantomJS | |
cinst nodejs.install | |
# $nodePath = Join-Path $env:programfiles 'nodejs' | |
# $is64bit = (Get-WmiObject Win32_Processor).AddressWidth -eq 64 | |
# if ($is64bit) {$nodePath = Join-Path ${env:ProgramFiles(x86)} 'nodejs'} | |
# $env:Path = "$($env:Path);$nodePath" | |
# Write-Output $env:Path | |
# npm install -g autosave | |
# npm install -g weyland | |
# cinst weyland -source 'http://www.nuget.org/api/v2/Packages' | |
# server roles | |
cinst IIS-WebServerRole -source windowsfeatures | |
cinst Web-Net-Ext -source windowsfeatures | |
cinst IIS-HttpCompressionDynamic -source windowsfeatures | |
cinst IIS-ManagementScriptingTools -source windowsfeatures | |
cinst IIS-WindowsAuthentication -source windowsfeatures | |
cinst IIS-WebServer -source windowsfeatures | |
cinst IIS-WebServerManagementTools -source windowsfeatures | |
cinst IIS-RequestFiltering -source windowsfeatures | |
cinst IIS-HttpRedirect -source windowsfeatures | |
cinst IIS-ASPNET45 -source windowsfeatures | |
cinst IIS-ASPNET -source windowsfeatures | |
cinst IIS-Metabase -source windowsfeatures | |
# visual studio | |
cinst VisualStudio2012Premium | |
cinst VS2012.4 | |
#visual studio tools | |
cinst typescript.vs | |
cinst SqlServerDataTools.2012 | |
# cinst WebEssentials2012 # this has an issue with a keyword not found in the current chocolatey version | |
cinst vscommands2012 | |
cinst tfsSidekicks2012 | |
cinst msbuild.extensionpack | |
cinst stylecop | |
# cinst HotTowel -source 'http://www.nuget.org/api/v2/Packages' | |
#sql server | |
# rabbitmq should be last due to all of the reboots that occur | |
cinst rabbitmq |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment