https://github.com/morrisonbrett/workstationcommander.telegrambot
Workstation Commander allows you to interact with your Windows Workstation via a Telegram Bot.
https://github.com/morrisonbrett/workstationcommander.telegrambot
telegram telegram-bot
Last synced: 2 months ago
JSON representation
Workstation Commander allows you to interact with your Windows Workstation via a Telegram Bot.
- Host: GitHub
- URL: https://github.com/morrisonbrett/workstationcommander.telegrambot
- Owner: morrisonbrett
- License: mit
- Created: 2021-12-16T14:48:20.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2025-12-25T15:00:57.000Z (6 months ago)
- Last Synced: 2025-12-27T22:48:01.133Z (6 months ago)
- Topics: telegram, telegram-bot
- Language: C#
- Homepage:
- Size: 60.3 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://twitter.com/morrisonbrett)
# Workstation Commander
## 🌈 Overview
Workstation Commander allows you to interact with your Windows Workstation via a Telegram Bot.
The main technology stack platform is [.NET Core](https://dotnet.microsoft.com/) 6.0.

## 🛠 Prerequisites
* Install Visual Studio 2022 (preview) or later, or Visual Studio Code. Ensure that `$ dotnet --version` is at least 6.0.
## ⌨️ Configure and Build
Create a Telegram Bot Token from [Telegram Bot Token Creation](https://core.telegram.org/bots#6-botfather).
Create a new file at the root of WorkstationCommander.TelegramBot named `appsettings.json` and add the following, replacing the word "value" below with your token.
```json
{
"TelegramBotKey": "value"
}
```
```bash
$ dotnet restore
$ dotnet build
$ dotnet run
```
Or, open the WorkstationCommander.TelegramBot.sln solution in Visual Studio, and build and run the solution from there.
Once confirmed working, create a Task to startup at system boot or login in [Task Scheduler](https://www.howtogeek.com/tips/how-to-run-a-scheduled-task-without-a-command-window-appearing/).

## ❤️ Contributing
We welcome all contributions. Please read our [contributing guidelines](CONTRIBUTING.md) before submitting a pull request.
## 📜 License
Workstation Commander is licensed under the MIT license.
[](LICENSE)