Skip to content

Instantly share code, notes, and snippets.

@DamianStanger
Last active March 24, 2016 17:10
Show Gist options
  • Save DamianStanger/826899318bdca2dad33e to your computer and use it in GitHub Desktop.
Save DamianStanger/826899318bdca2dad33e to your computer and use it in GitHub Desktop.
new server setup
iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))
choco install gitextensions -y
choco install tortoisesvn -y
choco install baretail -y
choco install sublimetext3 -y
choco install googlechrome -y
choco install procexp -y
choco install Silverlight -y
choco install 7zip -y
mkdir c:\nuget -ErrorAction SilentlyContinue
$client = new-object System.Net.WebClient
$client.DownloadFile("http://nuget.org/nuget.exe", "c:\nuget\nuget.exe")
cd \nuget\
.\nuget install nservicebus.powershell
Import-Module .\NServiceBus.PowerShell.4.3.0\lib\net40\NServiceBus.PowerShell.dll
Install-NServiceBusDtc
Install-NServiceBusMsmq
Install-NServiceBusRavenDB
Install-NServiceBusPerformanceCounters
$client.DownloadFile("https://download.go.cd/binaries/16.2.1-3027/win/go-server-16.2.1-3027-setup.exe", "C:\Users\goadmin\Downloads\go-server-16.2.1-3027-setup.exe")
$client.DownloadFile("https://download.go.cd/binaries/16.2.1-3027/win/go-agent-16.2.1-3027-setup.exe", "C:\Users\goadmin\Downloads\go-agent-16.2.1-3027-setup.exe")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment