All Projects → EvotecIT → PSDiscord

EvotecIT / PSDiscord

Licence: other
Simple PowerShell module allowing to send messages to Discord Channel over webhooks

Programming Languages

powershell
5483 projects

Projects that are alternatives of or similar to PSDiscord

Twitch4j
Modular Async/Sync/Reactive Twitch API Client / IRC Client
Stars: ✭ 209 (+514.71%)
Mutual labels:  webhook
signalilo
Forward alerts from Prometheus Alertmanager to Icinga2 via Webhooks
Stars: ✭ 57 (+67.65%)
Mutual labels:  webhook
YappyGitLab
A GitLab monitor bot for Discord
Stars: ✭ 51 (+50%)
Mutual labels:  webhook
Harpoon
GitHub WebHook server written in Go
Stars: ✭ 240 (+605.88%)
Mutual labels:  webhook
SmsForwarder
短信转发器——监控Android手机短信、来电、APP通知,并根据指定规则转发到其他手机:钉钉群自定义机器人、钉钉企业内机器人、企业微信群机器人、飞书机器人、企业微信应用消息、邮箱、bark、webhook、Telegram机器人、Server酱、PushPlus、手机短信等。包括主动控制服务端与客户端,让你轻松远程发短信、查短信、查通话、查话簿、查电量等。(V3.0 新增)PS.这个APK主要是学习与自用,如有BUG请提ISSUE,同时欢迎大家提PR指正
Stars: ✭ 8,386 (+24564.71%)
Mutual labels:  webhook
wp-trigger-netlify-build
A WordPress plugin to automatically rebuild a Netlify site when content is updated.
Stars: ✭ 80 (+135.29%)
Mutual labels:  webhook
Telegrambots
Java library to create bots using Telegram Bots API
Stars: ✭ 2,728 (+7923.53%)
Mutual labels:  webhook
rocketchat-uptimerobot
Uptime Robot integration for Rocket.Chat
Stars: ✭ 34 (+0%)
Mutual labels:  webhook
appveyor-discord-webhook
⛓ Here's your serverless solution for sending build status from AppVeyor to Discord as webhooks.
Stars: ✭ 52 (+52.94%)
Mutual labels:  webhook
webhook-tunnel
A little HTTP proxy suitable to create tunnels for webhook endpoints protected behind a firewall or a VPN
Stars: ✭ 63 (+85.29%)
Mutual labels:  webhook
Git Auto Deploy
Deploy your GitHub, GitLab or Bitbucket projects automatically on Git push events or web hooks
Stars: ✭ 251 (+638.24%)
Mutual labels:  webhook
rss2hook
POST to webhook(s) when new feed-items appear.
Stars: ✭ 33 (-2.94%)
Mutual labels:  webhook
chathooks
Service to convert webhook messages to your favorite chat / team messaging format. Run transparently as a formatting webhook proxy.
Stars: ✭ 39 (+14.71%)
Mutual labels:  webhook
Example Bot
[WIP] An A-Z example of a PHP Telegram Bot.
Stars: ✭ 211 (+520.59%)
Mutual labels:  webhook
MailHookBundle
A bundle to catch API webhook from different mail service
Stars: ✭ 36 (+5.88%)
Mutual labels:  webhook
Webhook.site
⚓️ Easily test HTTP webhooks with this handy tool that displays requests instantly.
Stars: ✭ 2,842 (+8258.82%)
Mutual labels:  webhook
ServiceStack.Webhooks
Add Webhooks to your ServiceStack services
Stars: ✭ 26 (-23.53%)
Mutual labels:  webhook
discord
GitHub webhook that analyzes pull requests and adds comments about incompatible CSS
Stars: ✭ 29 (-14.71%)
Mutual labels:  webhook
MsftTeams
Module for Posting messages to MSTeams via Webhook
Stars: ✭ 35 (+2.94%)
Mutual labels:  webhook
Self-Hosted-Asp.Net-WebHooks
Self hosted custom webhook receiver and sender
Stars: ✭ 50 (+47.06%)
Mutual labels:  webhook

PSDiscord - PowerShell Module

PSDiscord 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 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

Install-Module PSDiscord
#Install-Module PSPSDiscord -Scope CurrentUser

Updating on Windows / Linux / MacOS

Update-Module PSDiscord

Usage

$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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].