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:

2,203

Downloads of v 7.15.1-beta:

71

Last Update:

15 Oct 2021

Package Maintainer(s):

Software Author(s):

  • Elasticsearch

Tags:

msi winlogbeat beat beats elastic admin

winlogbeat (Install)

This is a prerelease version of winlogbeat (Install).

  • 1
  • 2
  • 3

7.15.1-beta | Updated: 15 Oct 2021

Downloads:

2,203

Downloads of v 7.15.1-beta:

71

Software Author(s):

  • Elasticsearch

winlogbeat (Install) 7.15.1-beta

This is a prerelease version of winlogbeat (Install).

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install winlogbeat (Install), run the following command from the command line or from PowerShell:

>

To upgrade winlogbeat (Install), run the following command from the command line or from PowerShell:

>

To uninstall winlogbeat (Install), 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 winlogbeat.install -y --source="'INTERNAL REPO URL'" --version="'7.15.1-beta'" --prerelease [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 winlogbeat.install -y --source="'INTERNAL REPO URL'" --version="'7.15.1-beta'" --prerelease
$exitCode = $LASTEXITCODE

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

Exit $exitCode

- name: Install winlogbeat.install
  win_chocolatey:
    name: winlogbeat.install
    version: '7.15.1-beta'
    source: INTERNAL REPO URL
    state: present
    allow_prerelease: yes

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


chocolatey_package 'winlogbeat.install' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '7.15.1-beta'
  options  '--prerelease'
end

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


cChocoPackageInstaller winlogbeat.install
{
    Name        = "winlogbeat.install"
    Version     = "7.15.1-beta"
    Source      = "INTERNAL REPO URL"
    chocoParams = "--prerelease"
}

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


package { 'winlogbeat.install':
  ensure          => '7.15.1-beta',
  install_options => ['--prerelease'],
  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.

NOTE

Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...

NOTE

This package is likely a meta/virtual (*) or an installer (*.install) or portable (*.portable) application package.

  • Meta/virtual (*) - has a dependency on the *.install or the *.portable package - it is provided for discoverability and for other packages to take a dependency on.
  • Portable (*.portable/*.commandline (deprecated naming convention)/*.tool (deprecated naming convention)) - usually zips or archives that require no administrative access to install.
  • Install (*.install/*.app (deprecated naming convention)) - uses native installers, usually requires administrative access to install.

Learn more about chocolatey's distinction of installed versus portable apps and/or learn about this kind of package.

WARNING

This package is exempt from moderation. While it is likely safe for you, there is more risk involved.

Description

Collect Windows Event Logs

Harness the richness of system, application, and security information from Windows event logs using a lightweight Winlogbeat data collector. Ship events directly to Elasticsearch or parse and enrich them using Logstash prior to visualizing results in Kibana.


tools\chocolateyinstall.ps1

$ErrorActionPreference = 'Stop';

$packageName  = 'winlogbeat.install'
$toolsDir     = "$(Split-Path -Parent $MyInvocation.MyCommand.Definition)"
$url          = 'https://artifacts.elastic.co/downloads/beats/winlogbeat/winlogbeat-7.15.1-windows-x86.msi'
$url64        = 'https://artifacts.elastic.co/downloads/beats/winlogbeat/winlogbeat-7.15.1-windows-x86_64.msi'

$packageArgs = @{
  packageName    = $packageName
  fileType       = 'msi'
  url            = $url
  url64bit       = $url64
  silentArgs     = "/qn /norestart"
  validExitCodes = @(0, 3010, 1641)
  softwareName   = 'Beats winlogbeat*'
  checksum       = '1c2f890faf02fde895d3ac502522bb1285558afd1b04b6a0ce32b9b8fdeff7c88617ebc79992397ab4d0093ef89b5a6c16f12db5e522224efb92600075c12649'
  checksumType   = 'sha512'
  checksum64     = 'abea96a2da2b7dafcbc74fcbf9d611e29b483ddebf82d3febee99812c6da4c1cde3fa9d14fd4de6fb6bb401b93d8d6925e424e58aedc8abceac02ac81b76e7d8'
  checksumType64 = 'sha512'
}

Install-ChocolateyPackage @packageArgs
tools\chocolateyuninstall.ps1
$ErrorActionPreference = 'Stop'; # stop on all errors

$packageName = 'winlogbeat.install'
$softwareName = 'Beats winlogbeat*' #part or all of the Display Name as you see it in Programs and Features. It should be enough to be unique
$installerType = 'MSI'
$silentArgs = '/qn /norestart'
# https://msdn.microsoft.com/en-us/library/aa376931(v=vs.85).aspx
$validExitCodes = @(0, 3010, 1605, 1614, 1641)

$uninstalled = $false
# Get-UninstallRegistryKey is new to 0.9.10, if supporting 0.9.9.x and below,
# take a dependency on "chocolatey-uninstall.extension" in your nuspec file.
# This is only a fuzzy search if $softwareName includes '*'. Otherwise it is
# exact. In the case of versions in key names, we recommend removing the version
# and using '*'.
[array]$key = Get-UninstallRegistryKey -SoftwareName $softwareName

if ($key.Count -eq 1) {
  $key | ForEach-Object {
    $file = "$($_.UninstallString)"

    if ($installerType -eq 'MSI') {
      # The Product Code GUID is all that should be passed for MSI, and very
      # FIRST, because it comes directly after /x, which is already set in the
      # Uninstall-ChocolateyPackage msiargs (facepalm).
      $silentArgs = "$($_.PSChildName) $silentArgs"

      # Don't pass anything for file, it is ignored for msi (facepalm number 2)
      # Alternatively if you need to pass a path to an msi, determine that and
      # use it instead of the above in silentArgs, still very first
      $file = ''
    }

    Uninstall-ChocolateyPackage -PackageName $packageName `
      -FileType $installerType `
      -SilentArgs "$silentArgs" `
      -ValidExitCodes $validExitCodes `
      -File "$file"
  }
}
elseif ($key.Count -eq 0) {
  Write-Warning "$packageName has already been uninstalled by other means."
}
elseif ($key.Count -gt 1) {
  Write-Warning "$key.Count matches found!"
  Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
  Write-Warning "Please alert package maintainer the following keys were matched:"
  $key | ForEach-Object { Write-Warning "- $_.DisplayName" }
}
tools\ELASTIC-LICENSE.txt
ELASTIC LICENSE AGREEMENT

PLEASE READ CAREFULLY THIS ELASTIC LICENSE AGREEMENT (THIS "AGREEMENT"), WHICH
CONSTITUTES A LEGALLY BINDING AGREEMENT AND GOVERNS ALL OF YOUR USE OF ALL OF
THE ELASTIC SOFTWARE WITH WHICH THIS AGREEMENT IS INCLUDED ("ELASTIC SOFTWARE")
THAT IS PROVIDED IN OBJECT CODE FORMAT, AND, IN ACCORDANCE WITH SECTION 2 BELOW,
CERTAIN OF THE ELASTIC SOFTWARE THAT IS PROVIDED IN SOURCE CODE FORMAT. BY
INSTALLING OR USING ANY OF THE ELASTIC SOFTWARE GOVERNED BY THIS AGREEMENT, YOU
ARE ASSENTING TO THE TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE
WITH SUCH TERMS AND CONDITIONS, YOU MAY NOT INSTALL OR USE THE ELASTIC SOFTWARE
GOVERNED BY THIS AGREEMENT. IF YOU ARE INSTALLING OR USING THE SOFTWARE ON
BEHALF OF A LEGAL ENTITY, YOU REPRESENT AND WARRANT THAT YOU HAVE THE ACTUAL
AUTHORITY TO AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT ON BEHALF OF
SUCH ENTITY.

Posted Date: April 20, 2018

This Agreement is entered into by and between Elasticsearch BV ("Elastic") and
You, or the legal entity on behalf of whom You are acting (as applicable,
"You").

1. OBJECT CODE END USER LICENSES, RESTRICTIONS AND THIRD PARTY OPEN SOURCE
SOFTWARE

  1.1 Object Code End User License. Subject to the terms and conditions of
  Section 1.2 of this Agreement, Elastic hereby grants to You, AT NO CHARGE and
  for so long as you are not in breach of any provision of this Agreement, a
  License to the Basic Features and Functions of the Elastic Software.

  1.2 Reservation of Rights; Restrictions. As between Elastic and You, Elastic
  and its licensors own all right, title and interest in and to the Elastic
  Software, and except as expressly set forth in Sections 1.1, and 2.1 of this
  Agreement, no other license to the Elastic Software is granted to You under
  this Agreement, by implication, estoppel or otherwise. You agree not to: (i)
  reverse engineer or decompile, decrypt, disassemble or otherwise reduce any
  Elastic Software provided to You in Object Code, or any portion thereof, to
  Source Code, except and only to the extent any such restriction is prohibited
  by applicable law, (ii) except as expressly permitted in this Agreement,
  prepare derivative works from, modify, copy or use the Elastic Software Object
  Code or the Commercial Software Source Code in any manner; (iii) except as
  expressly permitted in Section 1.1 above, transfer, sell, rent, lease,
  distribute, sublicense, loan or otherwise transfer, Elastic Software Object
  Code, in whole or in part, to any third party; (iv) use Elastic Software
  Object Code for providing time-sharing services, any software-as-a-service,
  service bureau services or as part of an application services provider or
  other service offering (collectively, "SaaS Offering") where obtaining access
  to the Elastic Software or the features and functions of the Elastic Software
  is a primary reason or substantial motivation for users of the SaaS Offering
  to access and/or use the SaaS Offering ("Prohibited SaaS Offering"); (v)
  circumvent the limitations on use of Elastic Software provided to You in
  Object Code format that are imposed or preserved by any License Key, or (vi)
  alter or remove any Marks and Notices in the Elastic Software. If You have any
  question as to whether a specific SaaS Offering constitutes a Prohibited SaaS
  Offering, or are interested in obtaining Elastic's permission to engage in
  commercial or non-commercial distribution of the Elastic Software, please
  contact [email protected].

  1.3 Third Party Open Source Software. The Commercial Software may contain or
  be provided with third party open source libraries, components, utilities and
  other open source software (collectively, "Open Source Software"), which Open
  Source Software may have applicable license terms as identified on a website
  designated by Elastic. Notwithstanding anything to the contrary herein, use of
  the Open Source Software shall be subject to the license terms and conditions
  applicable to such Open Source Software, to the extent required by the
  applicable licensor (which terms shall not restrict the license rights granted
  to You hereunder, but may contain additional rights). To the extent any
  condition of this Agreement conflicts with any license to the Open Source
  Software, the Open Source Software license will govern with respect to such
  Open Source Software only. Elastic may also separately provide you with
  certain open source software that is licensed by Elastic. Your use of such
  Elastic open source software will not be governed by this Agreement, but by
  the applicable open source license terms.

2. COMMERCIAL SOFTWARE SOURCE CODE

  2.1 Limited License. Subject to the terms and conditions of Section 2.2 of
  this Agreement, Elastic hereby grants to You, AT NO CHARGE and for so long as
  you are not in breach of any provision of this Agreement, a limited,
  non-exclusive, non-transferable, fully paid up royalty free right and license
  to the Commercial Software in Source Code format, without the right to grant
  or authorize sublicenses, to prepare Derivative Works of the Commercial
  Software, provided You (i) do not hack the licensing mechanism, or otherwise
  circumvent the intended limitations on the use of Elastic Software to enable
  features other than Basic Features and Functions or those features You are
  entitled to as part of a Subscription, and (ii) use the resulting object code
  only for reasonable testing purposes.

  2.2 Restrictions. Nothing in Section 2.1 grants You the right to (i) use the
  Commercial Software Source Code other than in accordance with Section 2.1
  above, (ii) use a Derivative Work of the Commercial Software outside of a
  Non-production Environment, in any production capacity, on a temporary or
  permanent basis, or (iii) transfer, sell, rent, lease, distribute, sublicense,
  loan or otherwise make available the Commercial Software Source Code, in whole
  or in part, to any third party. Notwithstanding the foregoing, You may
  maintain a copy of the repository in which the Source Code of the Commercial
  Software resides and that copy may be publicly accessible, provided that you
  include this Agreement with Your copy of the repository.

3. TERMINATION

  3.1 Termination. This Agreement will automatically terminate, whether or not
  You receive notice of such Termination from Elastic, if You breach any of its
  provisions.

  3.2 Post Termination. Upon any termination of this Agreement, for any reason,
  You shall promptly cease the use of the Elastic Software in Object Code format
  and cease use of the Commercial Software in Source Code format. For the
  avoidance of doubt, termination of this Agreement will not affect Your right
  to use Elastic Software, in either Object Code or Source Code formats, made
  available under the Apache License Version 2.0.

  3.3 Survival. Sections 1.2, 2.2. 3.3, 4 and 5 shall survive any termination or
  expiration of this Agreement.

4. DISCLAIMER OF WARRANTIES AND LIMITATION OF LIABILITY

  4.1 Disclaimer of Warranties. TO THE MAXIMUM EXTENT PERMITTED UNDER APPLICABLE
  LAW, THE ELASTIC SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
  AND ELASTIC AND ITS LICENSORS MAKE NO WARRANTIES WHETHER EXPRESSED, IMPLIED OR
  STATUTORY REGARDING OR RELATING TO THE ELASTIC SOFTWARE. TO THE MAXIMUM EXTENT
  PERMITTED UNDER APPLICABLE LAW, ELASTIC AND ITS LICENSORS SPECIFICALLY
  DISCLAIM ALL IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
  PURPOSE AND NON-INFRINGEMENT WITH RESPECT TO THE ELASTIC SOFTWARE, AND WITH
  RESPECT TO THE USE OF THE FOREGOING. FURTHER, ELASTIC DOES NOT WARRANT RESULTS
  OF USE OR THAT THE ELASTIC SOFTWARE WILL BE ERROR FREE OR THAT THE USE OF THE
  ELASTIC SOFTWARE WILL BE UNINTERRUPTED.

  4.2 Limitation of Liability. IN NO EVENT SHALL ELASTIC OR ITS LICENSORS BE
  LIABLE TO YOU OR ANY THIRD PARTY FOR ANY DIRECT OR INDIRECT DAMAGES,
  INCLUDING, WITHOUT LIMITATION, FOR ANY LOSS OF PROFITS, LOSS OF USE, BUSINESS
  INTERRUPTION, LOSS OF DATA, COST OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY
  SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES OF ANY KIND, IN CONNECTION WITH
  OR ARISING OUT OF THE USE OR INABILITY TO USE THE ELASTIC SOFTWARE, OR THE
  PERFORMANCE OF OR FAILURE TO PERFORM THIS AGREEMENT, WHETHER ALLEGED AS A
  BREACH OF CONTRACT OR TORTIOUS CONDUCT, INCLUDING NEGLIGENCE, EVEN IF ELASTIC
  HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.

5. MISCELLANEOUS

  This Agreement completely and exclusively states the entire agreement of the
  parties regarding the subject matter herein, and it supersedes, and its terms
  govern, all prior proposals, agreements, or other communications between the
  parties, oral or written, regarding such subject matter. This Agreement may be
  modified by Elastic from time to time, and any such modifications will be
  effective upon the "Posted Date" set forth at the top of the modified
  Agreement. If any provision hereof is held unenforceable, this Agreement will
  continue without said provision and be interpreted to reflect the original
  intent of the parties. This Agreement and any non-contractual obligation
  arising out of or in connection with it, is governed exclusively by Dutch law.
  This Agreement shall not be governed by the 1980 UN Convention on Contracts
  for the International Sale of Goods. All disputes arising out of or in
  connection with this Agreement, including its existence and validity, shall be
  resolved by the courts with jurisdiction in Amsterdam, The Netherlands, except
  where mandatory law provides for the courts at another location in The
  Netherlands to have jurisdiction. The parties hereby irrevocably waive any and
  all claims and defenses either might otherwise have in any such action or
  proceeding in any of such courts based upon any alleged lack of personal
  jurisdiction, improper venue, forum non conveniens or any similar claim or
  defense. A breach or threatened breach, by You of Section 2 may cause
  irreparable harm for which damages at law may not provide adequate relief, and
  therefore Elastic shall be entitled to seek injunctive relief without being
  required to post a bond. You may not assign this Agreement (including by
  operation of law in connection with a merger or acquisition), in whole or in
  part to any third party without the prior written consent of Elastic, which
  may be withheld or granted by Elastic in its sole and absolute discretion.
  Any assignment in violation of the preceding sentence is void. Notices to
  Elastic may also be sent to [email protected].

6. DEFINITIONS

  The following terms have the meanings ascribed:

  6.1 "Affiliate" means, with respect to a party, any entity that controls, is
  controlled by, or which is under common control with, such party, where
  "control" means ownership of at least fifty percent (50%) of the outstanding
  voting shares of the entity, or the contractual right to establish policy for,
  and manage the operations of, the entity.

  6.2 "Basic Features and Functions" means those features and functions of the
  Elastic Software that are eligible for use under a Basic license, as set forth
  at https://www.elastic.co/subscriptions, as may be modified by Elastic from
  time to time.

  6.3 "Commercial Software" means the Elastic Software Source Code in any file
  containing a header stating the contents are subject to the Elastic License or
  which is contained in the repository folder labeled "x-pack", unless a LICENSE
  file present in the directory subtree declares a different license.

  6.4 "Derivative Work of the Commercial Software" means, for purposes of this
  Agreement, any modification(s) or enhancement(s) to the Commercial Software,
  which represent, as a whole, an original work of authorship.

  6.5 "License" means a limited, non-exclusive, non-transferable, fully paid up,
  royalty free, right and license, without the right to grant or authorize
  sublicenses, solely for Your internal business operations to (i) install and
  use the applicable Features and Functions of the Elastic Software in Object
  Code, and (ii) permit Contractors and Your Affiliates to use the Elastic
  software as set forth in (i) above, provided that such use by Contractors must
  be solely for Your benefit and/or the benefit of Your Affiliates, and You
  shall be responsible for all acts and omissions of such Contractors and
  Affiliates in connection with their use of the Elastic software that are
  contrary to the terms and conditions of this Agreement.

  6.6 "License Key" means a sequence of bytes, including but not limited to a
  JSON blob, that is used to enable certain features and functions of the
  Elastic Software.

  6.7 "Marks and Notices" means all Elastic trademarks, trade names, logos and
  notices present on the Documentation as originally provided by Elastic.

  6.8 "Non-production Environment" means an environment for development, testing
  or quality assurance, where software is not used for production purposes.

  6.9 "Object Code" means any form resulting from mechanical transformation or
  translation of Source Code form, including but not limited to compiled object
  code, generated documentation, and conversions to other media types.

  6.10 "Source Code" means the preferred form of computer software for making
  modifications, including but not limited to software source code,
  documentation source, and configuration files.

  6.11 "Subscription" means the right to receive Support Services and a License
  to the Commercial Software.

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
winlogbeat (Install) 7.17.9-beta 48 Friday, February 3, 2023 Exempted
winlogbeat (Install) 7.17.7-beta 40 Wednesday, October 26, 2022 Exempted
winlogbeat (Install) 7.17.0-beta 77 Wednesday, February 2, 2022 Exempted
winlogbeat (Install) 7.16.3-beta 74 Friday, January 14, 2022 Exempted
winlogbeat (Install) 7.16.2-beta 78 Monday, December 20, 2021 Exempted
winlogbeat (Install) 7.16.1-beta 59 Tuesday, December 14, 2021 Exempted
winlogbeat (Install) 7.16.0-beta 56 Wednesday, December 8, 2021 Exempted
winlogbeat (Install) 7.15.2-beta 83 Thursday, November 11, 2021 Exempted
winlogbeat (Install) 7.15.1-beta 71 Friday, October 15, 2021 Exempted
winlogbeat (Install) 7.15.0-beta 61 Thursday, September 23, 2021 Exempted
winlogbeat (Install) 7.14.2-beta 66 Wednesday, September 22, 2021 Exempted
winlogbeat (Install) 7.14.1-beta 75 Thursday, September 2, 2021 Exempted
winlogbeat (Install) 7.14.0-beta 89 Wednesday, August 4, 2021 Exempted
winlogbeat (Install) 7.13.4-beta 72 Wednesday, July 21, 2021 Exempted
winlogbeat (Install) 7.13.3-beta 78 Thursday, July 8, 2021 Exempted
winlogbeat (Install) 7.13.2-beta 71 Tuesday, June 15, 2021 Exempted
winlogbeat (Install) 7.13.1-beta 74 Thursday, June 3, 2021 Exempted
winlogbeat (Install) 7.13.0-beta 67 Wednesday, May 26, 2021 Exempted
winlogbeat (Install) 7.12.1-beta 83 Wednesday, April 28, 2021 Exempted
winlogbeat (Install) 7.12.0-beta 101 Saturday, April 3, 2021 Exempted
winlogbeat (Install) 7.11.2-beta 73 Thursday, March 11, 2021 Exempted
winlogbeat (Install) 7.11.1-beta 99 Thursday, February 18, 2021 Exempted
winlogbeat (Install) 7.11.0-beta 74 Thursday, February 11, 2021 Exempted
winlogbeat (Install) 7.10.2-beta 157 Friday, January 15, 2021 Exempted
winlogbeat (Install) 7.10.1-beta 91 Friday, December 11, 2020 Exempted
winlogbeat (Install) 7.10.0-beta 110 Monday, November 23, 2020 Exempted
winlogbeat (Install) 7.9.3-beta 90 Friday, October 23, 2020 Exempted
winlogbeat (Install) 7.9.2-beta 86 Sunday, September 27, 2020 Exempted

This package has no dependencies.

Discussion for the winlogbeat (Install) Package

Ground Rules:

  • This discussion is only about winlogbeat (Install) and the winlogbeat (Install) 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 winlogbeat (Install), 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