Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/poshsecurity/Posh-SYSLOG

Send SYSLOG messages from PowerShell
https://github.com/poshsecurity/Posh-SYSLOG

powershell powershell-gallery security syslog syslog-messages

Last synced: 2 months ago
JSON representation

Send SYSLOG messages from PowerShell

Awesome Lists containing this project

README

        

# Posh-SYSLOG

[![Codacy Badge](https://api.codacy.com/project/badge/Grade/108fce1968bc40e689ef8053bc3d1e78)](https://app.codacy.com/app/kjacobsen/Posh-SYSLOG?utm_source=github.com&utm_medium=referral&utm_content=poshsecurity/Posh-SYSLOG&utm_campaign=Badge_Grade_Dashboard)
[![Build Status](https://dev.azure.com/poshsecurity/PowerShell/_apis/build/status/Posh-SYSLOG?branchName=master)](https://dev.azure.com/poshsecurity/PowerShell/_build/latest?definitionId=40&branchName=master)
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)
[![PowerShell Gallery](https://img.shields.io/powershellgallery/v/posh-syslog.svg)](https://www.powershellgallery.com/packages/Posh-SYSLOG)
[![PowerShell Gallery](https://img.shields.io/powershellgallery/p/posh-syslog.svg)](https://www.powershellgallery.com/packages/Posh-SYSLOG)
[![PowerShell Gallery](https://img.shields.io/powershellgallery/dt/posh-syslog.svg)](https://www.powershellgallery.com/packages/Posh-SYSLOG)

## Description

A module for sending SYSLOG messages from PowerShell.

The module supports RFC5424 and RFC3164, and can send messages via TCP and UDP.

Authored by Kieran Jacobsen

## Installing

The easiest way to get Posh-SYSLOG is using the [PowerShell Gallery](https://powershellgallery.com/packages/Posh-SYSLOG/)!

### Inspecting the module

Best practice is that you inspect modules prior to installing them. You can do this by saving the module to a local path:

``` PowerShell
PS> Save-Module -Name Posh-SYSLOG -Path
```

### Installing the module

Once you trust a module, you can install it using:

``` PowerShell
PS> Install-Module -Name Posh-SYSLOG
```

### Updating Posh-SYSLOG

Once installed from the PowerShell Gallery, you can update it using:

``` PowerShell
PS> Update-Module -Name Posh-SYSLOG
```

### Uninstalling Posh-SYSLOG

To remove Posh-SYSLOG:

``` PowerShell
PS> Uninstall-Module -Name Posh-SYSLOG
```

## Contributing to Posh-SYSLOG

Interested in contributing? Read how you can [Contribute](contributing.md) to Posh-SYSLOG

This project maintains a [Code of Conduct](code-of-conduct.md) that establishes how the project is governed and how everyone involved is expected to behave. You can report unacceptable behavior to [[email protected]](mailto:[email protected]).

## Release History

A detailed release history is contained in the [Change Log](CHANGELOG.md).

## License

Posh-SYSLOG is provided under the [MIT license](LICENSE.md).