I Built Windows11Alert — A Windows Utility That Sends Telegram Alerts When My PC Turns On
Windows11Alert is a lightweight utility designed to send Telegram alerts when a Windows PC starts or restarts. The application retrieves previous shutdown or restart events from Windows Event Logs and reports them upon the next startup. It provides essential system details in the notifications, making it a simple yet effective monitoring tool.
- ▪Windows11Alert sends Telegram notifications when a PC turns on or restarts.
- ▪It retrieves previous shutdown or restart events from Windows Event Logs.
- ▪The utility provides detailed system information in the alerts.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 3901865) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Akshay Posted on May 18 I Built Windows11Alert — A Windows Utility That Sends Telegram Alerts When My PC Turns On #python #microsoft #telegram #automation Sometimes the best projects are not huge. Sometimes they are small utilities that solve one specific problem really well. I wanted a simple way to know when my Windows PC turns on, restarts, or was previously shut down. I did not want a heavy monitoring dashboard or an enterprise-level monitoring tool.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).