{"id":20452767,"url":"https://github.com/tinuwalther/psoctomes","last_synced_at":"2026-04-09T16:54:14.495Z","repository":{"id":65313618,"uuid":"583428098","full_name":"tinuwalther/PSOctomes","owner":"tinuwalther","description":"PowerShell Script to send messages to multiple messenger","archived":false,"fork":false,"pushed_at":"2023-05-01T12:30:43.000Z","size":557,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-01T10:25:54.102Z","etag":null,"topics":["discord","mastodon","powershell","telegram","twitter"],"latest_commit_sha":null,"homepage":"","language":"PowerShell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tinuwalther.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2022-12-29T18:46:53.000Z","updated_at":"2024-05-31T02:29:11.000Z","dependencies_parsed_at":"2023-09-21T20:13:21.777Z","dependency_job_id":null,"html_url":"https://github.com/tinuwalther/PSOctomes","commit_stats":{"total_commits":45,"total_committers":1,"mean_commits":45.0,"dds":0.0,"last_synced_commit":"9865093f31cbb9d35266acbc76fb6259748b2550"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/tinuwalther/PSOctomes","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tinuwalther%2FPSOctomes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tinuwalther%2FPSOctomes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tinuwalther%2FPSOctomes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tinuwalther%2FPSOctomes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tinuwalther","download_url":"https://codeload.github.com/tinuwalther/PSOctomes/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tinuwalther%2FPSOctomes/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273547663,"owners_count":25125116,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-04T02:00:08.968Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["discord","mastodon","powershell","telegram","twitter"],"created_at":"2024-11-15T11:10:19.901Z","updated_at":"2026-04-09T16:54:14.417Z","avatar_url":"https://github.com/tinuwalther.png","language":"PowerShell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# PSOctomes\n\nPowerShell Module to send messages to multiple messenger.\n\n![Image](img/PSOctomes.jfif)\n\n## Supported Messenger\n\n- Discord\n- Telegram\n- Twitter\n- Mastodon\n\n## How to configure Discord\n\nFound on [my Blog](https://it.martin-walther.ch/discord/) (in german).\n\n## How to configure Telegram\n\nFound on [my Blog](https://it.martin-walther.ch/telegram/) (in german).\n\n## How to configure Twitter\n\nFound on the Blog of [Harm Veenstra](https://github.com/HarmVeenstra): [Create a Tweet on Twitter using PowerShell](https://powershellisfun.com/2022/08/01/create-a-tweet-on-twitter-using-powershell/)\n\n## How to configure Mastodon\n\nYou need an access token that has at least write access to your status\n\n- Go to Preferences -\u003e settings -\u003e Development\n- Click \"New Application\"\n- Enter a name\n- Allow \"write:statuses\n- Click Submit\n- Click on the new application to review the keys\n- Copy and securely store the \"Access token\" for your script.\n\n## How to use\n\nClone the GitHub-Repository\n\n````powershell\ngit clone https://github.com/tinuwalther/PSOctomes\ncd ./PSOctomes\n````\n\nInstall-Modules:\n\n````powershell\nInstall-Module Microsoft.PowerShell.SecretManagement, BluebirdPS -Verbose\nImport-Module ./PSOctomes/ -Force\n````\n\nRegister SecretVault:\n\nCreate your credential as Secrets with the following entries:\n\n- Discord_Token, URL, Token as Password\n- Mastodon_Token, URL, Token as Password\n- Telegram_Token, URL, Token as Password\n- Telegram_ChatId, Id as Password\n\n````powershell\nNew-PSSecretStore -Register -Discord -Telegram -Mastodon -Twitter\n````\n\nTest the access to the KeePass Vault:\n\n````powershell\nGet-SecretInfo -Vault PSOctomes | Select-Object Name, @{N='URL';E={$_.Metadata.values}}\n````\n\nand execute the command Send-PSOctoMessage\n\n````powershell\n$Message = @\"\nHi #PowerShell folks\nI send this message to multiple messenger with #PowerShell and #PSOctomes.\nhttps://github.com/tinuwalther/PSOctomes\n\"@\n\nSend-PSOctoMessage -Message $Message -SendToTelegram -SendToDiscord -SendToMastodon -SendToTwitter\n````\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftinuwalther%2Fpsoctomes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftinuwalther%2Fpsoctomes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftinuwalther%2Fpsoctomes/lists"}