Home (All Topics) → Technology → Software → AI-Created Software
By Marios Alexandrou on September 9, 2026.
The following AI-generated aka vibe-coded software. The software is specific to my needs and my system and may not work for you or your system. Support is limited, but if you report a bug I'll certainly look into it. All code is provided in a zip file for you to review should you choose.
A lightweight, zero-dependency Windows system tray utility that silently monitors running applications and automatically terminates any processes that match a user-defined blacklist.
Built to run entirely in the background, it uses Windows Management Instrumentation (WMI) to react instantly to new processes, with a low-resource fallback polling loop to catch anything else.
.ico file on startup for seamless integration into portable environments.
You do not need Visual Studio or the .NET SDK to build this application.
ProcessSniper.cs and build.bat in a dedicated folder.build.bat. The script will use the native Windows C# compiler (csc.exe) to generate a standalone ProcessSniper.exe. It will close automatically if compilation is successful.ProcessSniper.exe to run the application.appicon.ico file.
Once running, ProcessSniper lives in your system tray (near the clock). The icon reflects the current state of the application: * 🔴 Red Circle with a Slash: Actively monitoring and terminating blacklisted processes. * ⚪ Gray Circle with a Slash: Monitoring is paused. Blacklisted processes are allowed to run.
Right-Click Menu Options: * View Stats & Logs (GUI): Opens an interactive window to review termination counts and recent activity. * Clear Stats & Logs: Prompts for confirmation and permanently deletes historical tracking data. * Edit / Reload Configuration: Open the config.txt settings in Notepad or apply saved changes instantly. * Edit / Reload Blacklist: Open the blacklist.txt rules in Notepad or apply saved changes instantly. * Pause Monitoring: Suspend the application for a specific time interval (5m, 15m, 1hr) or indefinitely. The application will automatically resume when a timed pause expires. * Run on Startup: Toggles whether the application launches automatically with Windows via the registry.
blacklist.txt)The blacklist file supports several different matching rules. The application processes this file line by line.
“`text # ========================================== # PROCESSSNIPER BLACKLIST # ========================================== # Lines starting with a hash or double-slash are ignored.
calc notepad.exe
C:.exe
background_task_v*.exe bloatware_202?.exe
telemetry.exe // Stops daily telemetry uploads C:_*.exe # Block untrusted installers


Leave a Reply