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:

43,618

Downloads of v 1.9.0:

10,483

Last Update:

12 Aug 2022

Package Maintainer(s):

Software Author(s):

  • Zarunbal Previous:Hagen Raab

Tags:

logexpert windows tail logging viewer troubleshooting

LogExpert

  • 1
  • 2
  • 3

1.9.0 | Updated: 12 Aug 2022

Downloads:

43,618

Downloads of v 1.9.0:

10,483

Maintainer(s):

Software Author(s):

  • Zarunbal Previous:Hagen Raab

LogExpert 1.9.0

  • 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 LogExpert, run the following command from the command line or from PowerShell:

>

To upgrade LogExpert, run the following command from the command line or from PowerShell:

>

To uninstall LogExpert, 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 logexpert -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 logexpert -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 logexpert
  win_chocolatey:
    name: logexpert
    version: '1.9.0'
    source: INTERNAL REPO URL
    state: present

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


chocolatey_package 'logexpert' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '1.9.0'
end

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


cChocoPackageInstaller logexpert
{
    Name     = "logexpert"
    Version  = "1.9.0"
    Source   = "INTERNAL REPO URL"
}

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


package { 'logexpert':
  ensure   => '1.9.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 as a trusted package on 12 Aug 2022.

Description

LogExpert is a Windows tail program (a GUI replacement for the Unix tail command).

Summary of (most) features:

  • Tail mode

  • MDI-Interface with Tabs

  • Search function (including RegEx)

  • Bookmarks

  • A very flexible filter view and possibility to filter to tab

  • Highlighting lines via search criteria

  • Triggers (e.g. create Bookmark or execute a plugin) via search criteria

  • Columnizers: Plugins which split log lines into columns

  • Unicode support

  • log4j XML file support

  • 3rd party plugin support

  • Plugin API for more log file data sources
    From bennewcomb:
    [** FOR Chocolatey ONLY **]
    I've found this to be a worthy and necessary tool job after job, computer after computer. Is it bug-hunting season? This is a low investment-high return application that, if added to your stack, will enhance application debugging with minimal time and effort. You can watch multiple files at once and determine quickly when each is updated, optionally tailing them all so you can watch the logging output as it's being written. You can also set editor formatting rules to decorate useful sections to visually separate groups of text while reviewing the file, and even have it stop when it finds something of interest. This tool saves me time and helps me highlight certain files in the forest of log file statements for easier visibility and faster identification of relevant log lines. A tail program, if you're not a superuser or sysadmin, is software that appears to continually scroll to the bottom of any file you load, making the newest updates immediately visible on the screen withing requiring you to refresh the file.

    Installation Directory: $(Split-Path -parent $MyInvocation.MyCommand.Definition)
    On my computer, it lands in {chocolatey}\lib\logexpert.1.9.0


tools\ColumnizerLib.dll
md5: F1BA9E565080D58C841DD22D403669D5 | sha1: 1FFA7264837D2E155FA3307B2976377807C97C9A | sha256: EBFBF42826044ED9B73BB3E216B20C70490B6EC81981AE300D2D8E937E32B86A | sha512: 815563C6019D8B570AFF72B7A35DBF6B239C53011BAA97DA18A5926790C681A92F0B3FAAB8CA24A1C26C03AAB35ACC9E415FC2C1CB79F98FD8CFB334DB84F9FE
tools\LICENSE.txt
From: https://cdn.rawgit.com/zarunbal/LogExpert/v1.9.0/LICENSE

LICENSE

MIT License

Original work Copyright (c) 2011 Hagen Raab
Modified work Copyright (c) 2017 Zarunbal 

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

tools\Licenses\Nlog.license.txt
Copyright (c) 2004-2017 Jaroslaw Kowalski <[email protected]>, Kim Christensen, Julian Verdurmen

All rights reserved.

Redistribution and use in source and binary forms, with or without 
modification, are permitted provided that the following conditions 
are met:

* Redistributions of source code must retain the above copyright notice, 
  this list of conditions and the following disclaimer. 

* Redistributions in binary form must reproduce the above copyright notice,
  this list of conditions and the following disclaimer in the documentation
  and/or other materials provided with the distribution. 

* Neither the name of Jaroslaw Kowalski nor the names of its 
  contributors may be used to endorse or promote products derived from this
  software without specific prior written permission. 

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF 
THE POSSIBILITY OF SUCH DAMAGE.
tools\Licenses\WinformsUI.Docking.license.txt
The MIT License

Copyright (c) 2007 Weifen Luo (email: [email protected])

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
tools\LogExpert.exe
md5: 67F1FDDDD12DCC52464F2A0B93516389 | sha1: D82D1B002302A3665D8968AACEDE60C956670486 | sha256: E04E1D43B82A6F04A4C4C3C3ECD6574E197B0EC05B22CCA1026E4C52828445B3 | sha512: BE2FBC40BB9AEC8BE974B4FFAB7ED13FA5A182D02AAC61DB1A5C12126EDB85E7CD206CFB73C34A17AF3CD4480DF733AB541634EF35BF02DCFF89706156D13491
tools\LogExpert.exe.config
<?xml version="1.0" encoding="utf-8"?>
<configuration>

  <configSections>
    <section name="nlog" type="NLog.Config.ConfigSectionHandler, NLog"/>
  </configSections>

  <nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.nlog-project.org/schemas/NLog.xsd NLog.xsd" autoReload="true" throwExceptions="false" throwConfigExceptions="false" internalLogLevel="Off" internalLogFile="c:\temp\nlog-internal.log">

    <targets>
      <target name="logfile" xsi:type="File" fileName="${specialfolder:folder=ApplicationData}\LogExpert\logs\logexpert.log" layout="${longdate}|${level:uppercase=true}|${logger}|${message}${exception:innerFormat=Type,ToString:${newline}maxInnerExceptionLevel=10:innerExceptionSeparator=-----------------------:format=Message,Type,ToString}" encoding="utf-8" archiveEvery="Day" archiveFileName="${specialfolder:folder=ApplicationData}\LogExpert\logs\Archiv\logexpert{#}.log" archiveDateFormat="yyyyMMdd" maxArchiveFiles="5" createDirs="true"/>
    </targets>

    <rules>
      <logger name="Program" minlevel="Info" writeTo="logfile"/>
      <logger name="*" minlevel="Warn" writeTo="logfile"/>
    </rules>
  </nlog>
  
  <!--Uncomment to run remote dlls in full trust-->
  <!--<runtime>
    <loadFromRemoteSources enabled="true"/>
  </runtime>-->

  <startup>
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2"/>
  </startup>
</configuration>
tools\LogExpert.exe.gui
 
tools\Newtonsoft.Json.dll
md5: 081D9558BBB7ADCE142DA153B2D5577A | sha1: 7D0AD03FBDA1C24F883116B940717E596073AE96 | sha256: B624949DF8B0E3A6153FDFB730A7C6F4990B6592EE0D922E1788433D276610F3 | sha512: 2FDF035661F349206F58EA1FEED8805B7F9517A21F9C113E7301C69DE160F184C774350A12A710046E3FF6BAA37345D319B6F47FD24FBBA4E042D54014BEE511
tools\NLog.config
<?xml version="1.0" encoding="utf-8" ?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://www.nlog-project.org/schemas/NLog.xsd NLog.xsd"
      autoReload="true"
      throwExceptions="false"
      internalLogLevel="Off" internalLogFile="c:\temp\nlog-internal.log">

  <!-- optional, add some variables
  https://github.com/nlog/NLog/wiki/Configuration-file#variables
  -->
  <variable name="myvar" value="myvalue"/>

  <!--
  See https://github.com/nlog/nlog/wiki/Configuration-file
  for information on customizing logging rules and outputs.
   -->
  <targets>

    <!--
    add your targets here
    See https://github.com/nlog/NLog/wiki/Targets for possible targets.
    See https://github.com/nlog/NLog/wiki/Layout-Renderers for the possible layout renderers.
    -->

    <!--
    Write events to a file with the date in the filename.
    <target xsi:type="File" name="f" fileName="${basedir}/logs/${shortdate}.log"
            layout="${longdate} ${uppercase:${level}} ${message}" />
    -->
  </targets>

  <rules>
    <!-- add your logging rules here -->

    <!--
    Write all events with minimal level of Debug (So Debug, Info, Warn, Error and Fatal, but not Trace)  to "f"
    <logger name="*" minlevel="Debug" writeTo="f" />
    -->
  </rules>
</nlog>
tools\NLog.dll
md5: 7016A88D4FD8120E96E5BEAC4619A7C2 | sha1: 16971B72CAFD36007DB2A9442504C8CDAD84CDA9 | sha256: 82CFBFE7BAFBE8981718B278884239692F814B240CEDB5644D24FCCFAA094197 | sha512: 6F31A47CC84E77935E57CCC12C430C6D867DC4C83F8EAB5CABB2FD8466ED7515766550C17A46945905744953F3F71A49D393D04B6789A7064550663E85014E56
tools\plugins\AutoColumnizer.dll
md5: 336730C463AEF47D9649A153FF667912 | sha1: 282ACE826199C0DC893E76A98F035F7A36B06CE6 | sha256: 8A9835BB7E2339587034EC9B128978566CFE30B38CEBF3BE8CBAD6BCDDCA0510 | sha512: 7219D9723A368CEFB8A60B7C1ACA53ED3170247CDE6380D03D3F2E2B87E1883D22CE5DE174100378B351793288956F462CAEC4545F00C2040533F4A6E0C87B2E
tools\plugins\ColumnizerLib.dll
md5: F1BA9E565080D58C841DD22D403669D5 | sha1: 1FFA7264837D2E155FA3307B2976377807C97C9A | sha256: EBFBF42826044ED9B73BB3E216B20C70490B6EC81981AE300D2D8E937E32B86A | sha512: 815563C6019D8B570AFF72B7A35DBF6B239C53011BAA97DA18A5926790C681A92F0B3FAAB8CA24A1C26C03AAB35ACC9E415FC2C1CB79F98FD8CFB334DB84F9FE
tools\plugins\CsvColumnizer.dll
md5: 9EFDBC4E4A98302405E99A10A109F2BF | sha1: 86D079408E88EA86FF45B269BEC71CA6D36F9343 | sha256: 35FA794E79F27BDAAAB28B180B1751BBD581B98E059731CDD92E394D78C3EB42 | sha512: F60F8A6C441221308777D7B2A6B1335E3C2135A6475FCAC826EBBCE650F7F6713843E30B053D59E06BD87FE30FEF513778523A9A67B346115BC54CC296BB675F
tools\plugins\DefaultPlugins.dll
md5: FBFA2FB6007DC21C95B144C9EF3B971B | sha1: 8BFB4CC581E728D65796317B35437A9CCBB2777B | sha256: 6ED332102563F82885306F359E065D1167CD72D6C4DEED86F1DE199E8D0934F3 | sha512: 33D6A51741296D96A293FB2D02DD8C7F5FF5816801C9035379483669EC1F048EAF47C09E075749F67CB04E023D5012B4C3F7AB415D338D20B6564596CA04E8E7
tools\plugins\FlashIconHighlighter.dll
md5: 2CCF507801AA55D21B4C56DA2723ED95 | sha1: 92A6313BCA9C539FBC70EBC62D65CCD26D5BDDE0 | sha256: 92D2AFE758914F9510AAD42D2DD02ACAB2DF0EDA712BE019EDDA30A4F3EC05D2 | sha512: D127A1E673A90823AE9105CC72967FC4AE59D92E40F743118B9DBC9AE07B0C24FF33C136C23B3BD39ED898D389DFB2326C562184F011FF29C7128BF67CDD58D4
tools\plugins\GlassfishColumnizer.dll
md5: 429EA60F6A296CBEBB87A073A9BEBD9E | sha1: 74B527ED9656403B530000E7A06AA3FE1F8E0A34 | sha256: 54189DD88494A80EF2325177E4E2D4D705DAC6151DEBC6EACEFDFF8A5FD9B960 | sha512: BEF84922D7C86B94CA8D20CFDCFAFCB655835B135A5EA74C1CEDB67A4C02F7A5CA8DA23B2749975CBB8389CC6DC00207D8B8EC620D1824AD359439E054AAF839
tools\plugins\JsonColumnizer.dll
md5: BE5B5470E5726E1CC7626148097DECB9 | sha1: 9979C89FA085FBE5926C57718BD55C4A2D4AFED2 | sha256: D7163EA2D1B024D40C27C89F586F1495FDCBCB339837CB94C3DCDB4712CE0700 | sha512: 0578269E9416CCB80C841D1152074E31CA4079D35CC9329D14436096567C1F16CA45FAE376B1DB55632F9D03DAB4E6BD422CEB494D5BB27A71A8BF48B2995DC3
tools\plugins\JsonCompactColumnizer.dll
md5: 62603ED9FAF37EAB5CC4A068A15EF913 | sha1: A24A0384BABF015C952EF4F72C05FADCC6D1397B | sha256: 0C2D98F4413957770ACEAD40B12EB652A6F4AF2E0944E96EC41B4F1632162191 | sha512: FDC953883E7C953E01021D5814ADF49CE58FEE653F531864D8E8487B284CF51A818806E66C675F56E7A605F1CE112E248062E6551D6C1DA363B2BBFA44C24680
tools\plugins\Log4jXmlColumnizer.dll
md5: 09AF5C9B20AA78A4B41500B09ACC06A2 | sha1: 98BB25AE9ADEC5A09C84D00C9CD50AB0FA5F40CC | sha256: 359FE14920E7204E9642401C9AB44DAA801DC9D9D65A42A92822336DF58A3E37 | sha512: 2E4D40D9E8FAFA353BAE6C2B4FBA1E0379EBDBAF020D412323E0BA75BED25B9EBB58F8A548FC46AAC7F0C9595D7D312343FF0533E4CA63137AE430E049B77BD8
tools\plugins\LumenWorks.Framework.IO.dll
md5: 2EEB18815258B8B4BE0C9C539101455A | sha1: 5271C8BB1965FF05817D1FE20FDF81DD3C5F2D60 | sha256: A6B951AFC7936099BA7A396B3F33E98E501CAFFAFA4046AF63E17BBFD6EE4499 | sha512: 872DDC9931791F38B9C64BA5D82FA2730F1DF472D21F48B455D7F0C0A7D6A2848CE71214F0CE6AA472B4C60EF1B636BCE5DD0ED8220F42B9762E3CAC7DC3485E
tools\plugins\Newtonsoft.Json.dll
md5: 081D9558BBB7ADCE142DA153B2D5577A | sha1: 7D0AD03FBDA1C24F883116B940717E596073AE96 | sha256: B624949DF8B0E3A6153FDFB730A7C6F4990B6592EE0D922E1788433D276610F3 | sha512: 2FDF035661F349206F58EA1FEED8805B7F9517A21F9C113E7301C69DE160F184C774350A12A710046E3FF6BAA37345D319B6F47FD24FBBA4E042D54014BEE511
tools\plugins\RegexColumnizer.dll
md5: 8549556D82C5DD211338629848F5C12A | sha1: 74229187C0B870C7162C06D25ED37C65F21B1DD9 | sha256: 88A242C31046DABA6AF85B05875819F3F31018F975D2C96AB9072F0DF3CB70D7 | sha512: F1484EDBEB6412D7D1CB4BCC962A013867ECFFD3ED2C21A050E7DAF74CD79DEB5CE8522127081AB07E889E3F68B2A99CFF833E7C8CD9F9D06B30192BC74EB700
tools\Start.cmd
# Set compatibilty flag so the application does not crash on e.g. Drag&Drop
set __COMPAT_LAYER=DisableUserCallbackException
echo %cd%
start "" logexpert.exe
exit
tools\VERIFICATION.txt
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
 Package can be verified like this:

1. Go to
    https://github.com/zarunbal/LogExpert/releases/download/v1.9.0/logexpert.1.9.0.nupkg
   to download the package.

2. You can use one of the following methods to obtain the SHA256 checksum:
   - Use powershell function 'Get-FileHash'
   - Use Chocolatey utility 'checksum.exe'

3. Verify that the files have the same checksum

File 'license.txt' is obtained from:
   https://cdn.rawgit.com/zarunbal/LogExpert/v1.9.0/LICENSE
tools\WeifenLuo.WinFormsUI.Docking.dll
md5: C7F575AD44FF55B839C534F50B68EF14 | sha1: 79A0AC7D02AB6C7AD8499AC8186E796109E9BD23 | sha256: 4149543024BBD12E433EC1AB947F3EA6DCE8C9B51E28B380387D1A33A5987E1C | sha512: 350378B51407BCD0FAB99D56E0694CF021666B15B4771F438257C74B5B556B7DA385ABD37D7B16CD9F552D5668EB803EFF8B7EA2203E19C502B76580EB20B1AA

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
LogExpert 1.8.7 17738 Sunday, May 10, 2020 Approved
LogExpert 1.8.5 1616 Friday, January 31, 2020 Approved
LogExpert 1.8.2 1895 Tuesday, October 8, 2019 Approved
LogExpert 1.8.1 670 Sunday, September 15, 2019 Approved
LogExpert 1.7.1 1208 Monday, June 10, 2019 Approved
LogExpert 1.7.0 804 Thursday, May 9, 2019 Approved
LogExpert 1.6.13 3146 Tuesday, May 22, 2018 Approved
LogExpert 1.6.10 870 Wednesday, March 14, 2018 Approved
LogExpert 1.4.4566.2 3990 Friday, September 6, 2013 Approved
LogExpert 1.4.4566.1 521 Thursday, August 29, 2013 Approved
LogExpert 1.4.4566 522 Thursday, August 29, 2013 Approved

Discussion for the LogExpert Package

Ground Rules:

  • This discussion is only about LogExpert and the LogExpert 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 LogExpert, 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