Skip to content

Instantly share code, notes, and snippets.

@cfbarbero
Last active August 29, 2015 14:09
Show Gist options
  • Select an option

  • Save cfbarbero/96b24803028583c75751 to your computer and use it in GitHub Desktop.

Select an option

Save cfbarbero/96b24803028583c75751 to your computer and use it in GitHub Desktop.
#Environment Setup
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions
Enable-RemoteDesktop
Update-ExecutionPolicy RemoteSigned
# Dev Tools
cinst notepadplusplus
cinst fiddler4
cinst git-credential-winstore
cinst GoogleChrome
cinst Firefox
cinst linqpad4
cinst 7zip
cinst NugetPackageExplorer
# VS
#cinst VisualStudio2013Professional -InstallArguments "/Features:'WebTools SQL'"
# VS Extensions
Install-ChocolateyVsixPackage WebEssentials2013 https://visualstudiogallery.msdn.microsoft.com/56633663-6799-41d7-9df7-0f2a504ca361/file/105627/39/WebEssentials2013.vsix
Install-ChocolateyVsixPackage SlowCheetah https://visualstudiogallery.msdn.microsoft.com/69023d00-a4f9-4a34-a6cd-7e854ba318b5/file/55948/26/SlowCheetah.vsix
Install-ChocolateyVsixPackage ChutzpahTestAdapter https://visualstudiogallery.msdn.microsoft.com/f8741f04-bae4-4900-81c7-7c9bfb9ed1fe/file/66979/28/Chutzpah.VS2012.vsix
Install-ChocolateyVsixPackage ChutzpahTestRunnerContextMenu https://visualstudiogallery.msdn.microsoft.com/71a4e9bd-f660-448f-bd92-f5a65d39b7f0/file/52593/33/chutzpah.visualstudio.vsix
# Enable OTJ Nuget Fee
cinst NuGet.CommandLine
nuget sources add -Name OTJ -Source http://nuget.ontargetjobs.com
cinst nservicebus.dtc.install
cinst nservicebus.msmq.install
cinst Microsoft-Hyper-V-All -source windowsFeatures
cinst IIS-WebServerRole -source windowsfeatures
$privateQueueNames = `
'otj.alerting.messageservice',`
'otj.emailservice',`
'otj.jobseeker.messageservice',`
'otj.employer.messageservice',`
'partner.input',`
'salesforce.svc.ontargetjobs.local.input'
foreach($privateQueueName in $privateQueueNames)
{
if (!(Get-MsmqQueue $privateQueueName)){
Write-Host 'Creating Queue $privateQueueName'
New-MsmqQueue $privateQueueName
}
}
Write-ChocolateySuccess 'Enterprise Win81'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment