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: 5 days ago
JSON representation
Send SYSLOG messages from PowerShell
- Host: GitHub
- URL: https://github.com/poshsecurity/Posh-SYSLOG
- Owner: poshsecurity
- License: mit
- Created: 2013-10-30T02:24:46.000Z (over 11 years ago)
- Default Branch: main
- Last Pushed: 2024-07-24T12:19:03.000Z (9 months ago)
- Last Synced: 2024-11-07T00:42:54.164Z (5 months ago)
- Topics: powershell, powershell-gallery, security, syslog, syslog-messages
- Language: PowerShell
- Homepage: http://poshsecurity.com
- Size: 160 KB
- Stars: 92
- Watchers: 15
- Forks: 19
- Open Issues: 6
-
Metadata Files:
- Readme: README.MD
- Contributing: contributing.md
- License: LICENSE.MD
- Code of conduct: code-of-conduct.md
Awesome Lists containing this project
- jimsghstars - poshsecurity/Posh-SYSLOG - Send SYSLOG messages from PowerShell (PowerShell)
README
# Posh-SYSLOG
[](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)
[](https://dev.azure.com/poshsecurity/PowerShell/_build/latest?definitionId=40&branchName=master)
[](http://makeapullrequest.com)
[](https://www.powershellgallery.com/packages/Posh-SYSLOG)
[](https://www.powershellgallery.com/packages/Posh-SYSLOG)
[](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).