Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

600

Downloads of v 1.0.0:

600

Last Update:

25 Jul 2016

Package Maintainer(s):

Software Author(s):

  • Riccardo Di Nuzzo

Tags:

EventStore Tools ServiceHost

  • 1
  • 2
  • 3

1.0.0 | Updated: 25 Jul 2016

Downloads:

600

Downloads of v 1.0.0:

600

Maintainer(s):

Software Author(s):

  • Riccardo Di Nuzzo

Tags:

EventStore Tools ServiceHost 1.0.0

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Failed

Details

Scan Testing Resulted in Flagged:

This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.

We recommend clicking the "Details" link to make your own decision on installing this package.

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install EventStore Tools ServiceHost, run the following command from the command line or from PowerShell:

>

To upgrade EventStore Tools ServiceHost, run the following command from the command line or from PowerShell:

>

To uninstall EventStore Tools ServiceHost, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade eventstore-servicehost -y --source="'INTERNAL REPO URL'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade eventstore-servicehost -y --source="'INTERNAL REPO URL'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install eventstore-servicehost
  win_chocolatey:
    name: eventstore-servicehost
    version: '1.0.0'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'eventstore-servicehost' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '1.0.0'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller eventstore-servicehost
{
    Name     = "eventstore-servicehost"
    Version  = "1.0.0"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'eventstore-servicehost':
  ensure   => '1.0.0',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved by moderator ferventcoder on 11 Aug 2016.

Description

Simple process that can host app-service plugins interacting with an EventStore


tools\ChocolateyInstall.ps1
$packageName = 'EventStore-ServiceHost' 
$serviceFileName = "EventStore.Tools.ServiceHost.exe"

try { 
  
  $installDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)" 
  $fileToInstall = Join-Path $installDir $serviceFileName
  . $fileToInstall install
  . $fileToInstall start

  Write-ChocolateySuccess "$packageName"
} catch {
  Write-ChocolateyFailure "$packageName" "$($_.Exception.Message)"
  throw 
}
tools\ChocolateyUninstall.ps1
$packageName = 'EventStore-ServiceHost' 
$serviceFileName = "EventStore.Tools.ServiceHost.exe"

try { 
  
  $installDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)" 
  $fileToInstall = Join-Path $installDir $serviceFileName
  . $fileToInstall uninstall

  Write-ChocolateySuccess "$packageName"
} catch {
  Write-ChocolateyFailure "$packageName" "$($_.Exception.Message)"
  throw 
}
tools\EventStore.ClientAPI.dll
md5: A05169D434A09FC9F93519AC12DCBA38 | sha1: A254277B30A85068873DE0D262CE5042BE749FCE | sha256: 5E048C1C663EE6FCB109B81BD3474F71F377F886A5BA9E5DE57D6B6D33BA1C55 | sha512: 35ACF752B84E83F2FAE2E861431250CD8F7E13491494F5CF018FD3E568EE970D14E77DC372887CBEA59376AE00B38CC5D10DE5A7D3F99C551705ABF004609EB1
tools\EventStore.Tools.PluginModel.dll
md5: 8F266861C2EC1E56632E0F906A87A3BB | sha1: BC77E23787EC91074F70E5B73D4E7901B3B9F144 | sha256: 7DBE53D01EE3DC88A64E6753BF14973462E9DFD4ED051062135B73EDE7CD46E6 | sha512: D79F4327E42BC26AFC9114381DC9F765144AB0BACF3775DA47B0B31D9968D2F660589F554221376A7FA7712B8DE49595F16EE25A28FEEB15B785EBF537AD9CAE
tools\EventStore.Tools.PluginModel.pdb
 
tools\EventStore.Tools.ServiceHost.exe
md5: 8D0E6E4755A2282677E964B5B6FE41A4 | sha1: E074AD3095F78EF04CACA1A2EFF3B9FC1F8D0C2C | sha256: 818EF278C11B95AB0E62F98480DE650E0A0C3BD6133BE767C0CD3609A9DA1ACA | sha512: EE98F344AE6EFE5015D10340D81EBD975E71F83DE4418BB8205041ADDED487B040ED334F8AA82CEEC6B0DF1F720C7759AA03746A7B191CD882834A94EDEB318F
tools\EventStore.Tools.ServiceHost.exe.config
<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <configSections>
    <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net"/>
  </configSections>
    <startup> 
        <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
    </startup>
  <log4net>
    <appender name="ConsoleAppender" type="log4net.Appender.ConsoleAppender">
      <layout type="log4net.Layout.PatternLayout">
        <conversionPattern value="%message%newline"/>
      </layout>
      <filter type="log4net.Filter.LevelRangeFilter">
        <levelMin value="INFO"/>
        <levelMax value="FATAL"/>
      </filter>
    </appender>
    <appender name="FileAppender" type="log4net.Appender.FileAppender">
      <file value="logs/server.log"/>
      <appendToFile value="true"/>
      <layout type="log4net.Layout.PatternLayout">
        <conversionPattern value="%date [%thread] %-5level %logger [%property{NDC}] - %message%newline"/>
      </layout>
      <filter type="log4net.Filter.LevelRangeFilter">
        <levelMin value="WARN"/>
        <levelMax value="FATAL"/>
      </filter>
    </appender>
    <root>
      <level value="DEBUG"/>
      <appender-ref ref="ConsoleAppender"/>
      <appender-ref ref="FileAppender"/>
    </root>
  </log4net>
</configuration>
tools\EventStore.Tools.ServiceHost.pdb
 
tools\EventStore.Tools.ServiceHost.vshost.exe
md5: FC9F896933B6123ABEBB21C8476448EC | sha1: 0B6C847FC185A2D232CF487B94A9B5FBBD207096 | sha256: CC0D4C85639DD5E8D68C4B356C9DCF9C501BAE0190A08376BCED2BCC85E2CF79 | sha512: C8C8D40404C1EA8B54832133FDB00B7A12636D15319D46AA3C0C1845FB3C1F01070DF35B1E0CCF72B2E2F9D1F7BFE9B076D0201383104AAF4646AEAC7B732193
tools\EventStore.Tools.ServiceHost.vshost.exe.config
<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <configSections>
    <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net"/>
  </configSections>
    <startup> 
        <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
    </startup>
  <log4net>
    <appender name="ConsoleAppender" type="log4net.Appender.ConsoleAppender">
      <layout type="log4net.Layout.PatternLayout">
        <conversionPattern value="%message%newline"/>
      </layout>
      <filter type="log4net.Filter.LevelRangeFilter">
        <levelMin value="INFO"/>
        <levelMax value="FATAL"/>
      </filter>
    </appender>
    <appender name="FileAppender" type="log4net.Appender.FileAppender">
      <file value="logs/server.log"/>
      <appendToFile value="true"/>
      <layout type="log4net.Layout.PatternLayout">
        <conversionPattern value="%date [%thread] %-5level %logger [%property{NDC}] - %message%newline"/>
      </layout>
      <filter type="log4net.Filter.LevelRangeFilter">
        <levelMin value="WARN"/>
        <levelMax value="FATAL"/>
      </filter>
    </appender>
    <root>
      <level value="DEBUG"/>
      <appender-ref ref="ConsoleAppender"/>
      <appender-ref ref="FileAppender"/>
    </root>
  </log4net>
</configuration>
tools\EventStore.Tools.ServiceHost.vshost.exe.manifest
 
tools\log4net.dll
md5: B3ACA977A4FE04D36B0CD42E8B8CADFA | sha1: 9C273E6754EF08F69048802C3A2F614F1264681D | sha256: F47B872821DFA6A4CFFBA5A02367200391B5476986676ED32B5EF8E4EE81FEB2 | sha512: F0F3F0C2CD7297D71D0115A080204FE009DCD4D73FAD5C59EA79B212B342B6E93DAC744C715EBF5C1E371E14D1B73BCF4038DFEE67C94B9929B96B89906DE6DB
tools\Topshelf.dll
md5: 2C57857A672E57E79790C4324CE62FE5 | sha1: 8974EA0171B1C9D561504F6926C2783147B8623C | sha256: 79036662C985CD2CE60EA2573BD155E65B46BA65F47A62E82BA503643D56FCCE | sha512: 2BCD8B4500D6BFE2DAD73FD41B7BC5DFAC29AD7D38BCF393513F25ED4C2626E127F82156B55E35070D042657A51E472A0792DD87BEFA00B702258FF3F1DFC805
tools\Topshelf.Log4Net.dll
md5: C789A39410477B1E541FA9DA14350C1A | sha1: E8A89F95650C93A9F5C153762CE7E6977750DC80 | sha256: AF174FE9650246C8DCBA3BD229E564D14F82D57628071015563FB2E9289B1BF8 | sha512: 49F50987EBF4FC9A6A9139570D222B068EAAE54E4E107B9DDD5FB40A53B49146C018867F1293D88B56DA6A6B9D71D15EEFCBD3FE6BCF9C3758F0D30B1FC4224F

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status

This package has no dependencies.

Discussion for the EventStore Tools ServiceHost Package

Ground Rules:

  • This discussion is only about EventStore Tools ServiceHost and the EventStore Tools ServiceHost package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or EventStore Tools ServiceHost, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus