Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/evotecit/psdiscord
Simple PowerShell module allowing to send messages to Discord Channel over webhooks
https://github.com/evotecit/psdiscord
discord hacktoberfest linux macos powershell webhook
Last synced: about 2 months ago
JSON representation
Simple PowerShell module allowing to send messages to Discord Channel over webhooks
- Host: GitHub
- URL: https://github.com/evotecit/psdiscord
- Owner: EvotecIT
- Created: 2018-12-30T16:32:02.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-02-04T18:48:19.000Z (almost 2 years ago)
- Last Synced: 2024-10-29T21:06:11.656Z (about 2 months ago)
- Topics: discord, hacktoberfest, linux, macos, powershell, webhook
- Language: PowerShell
- Size: 43 KB
- Stars: 47
- Watchers: 3
- Forks: 7
- Open Issues: 2
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# PSDiscord - PowerShell Module
[PSDiscord](https://evotec.xyz/hub/scripts/psdiscord-powershell-module/) is a **PowerShell Module** working on **Windows** / **Linux** and **Mac**. It allows to send notifications to *Discord*. It's pretty flexible and provides of easy to use cmdlets.
For description and **advanced** usage visit [PSDiscord](https://evotec.xyz/hub/scripts/psdiscord-powershell-module/) dedicated page.
## Updates
- 0.2.4 / 2021.06.06
- Replaced [RGBColors] with [string] and defined 800+ colors in New-DiscordSection
- 0.2.3 / 2021.06.01
- Supports UTF8 chars/emoji
- 0.0.6 / 2019.01.01
- small improvements
- 0.0.5 / 2018.12.30
- first release## Installing on Windows / Linux / MacOS
```powershell
Install-Module PSDiscord
#Install-Module PSPSDiscord -Scope CurrentUser
```## Updating on Windows / Linux / MacOS
```powershell
Update-Module PSDiscord
```## Usage
```powershell
$Uri = 'https://discordapp.com/api/webhooks/5083323013'$Author = New-DiscordAuthor -Name 'PSBlacklistChecker' -IconUrl "https://raw.githubusercontent.com/EvotecIT/PSDiscord/master/Links/Asset%20130.png"
$Fact = New-DiscordFact -Name 'Blacklisted IP 89.74.48.97' -Value 'Found on blacklist dnsbl.sorbs.net' -Inline $false
$Thumbnail = New-DiscordThumbnail -Url "https://raw.githubusercontent.com/EvotecIT/PSDiscord/master/Links/Asset%20130.png"
$Section = New-DiscordSection -Title 'Everybody panic!' -Description '' -Facts $Fact, $Fact, $Fact -Color BlueViolet -Author $Author -Thumbnail $Thumbnail -Image $Thumbnail
Send-DiscordMessage -WebHookUrl $Uri -Sections $Section -AvatarName 'PSBlackListChecker' -AvatarUrl "https://raw.githubusercontent.com/EvotecIT/PSDiscord/master/Links/Asset%20130.png"
```## How does it look like?
![image](https://evotec.xyz/wp-content/uploads/2019/01/img_5c3089ad7e553.png)