This repository contains two main files:
WindowsSecurity.py– Python script that simulates natural mouse movements and detects user activity.systemUpdater.exe– Executable version of theWindowsSecurity.pyscript.
-
Install Dependencies:
pip install pyautogui keyboard pywin32
-
Run the script:
python WindowsSecurity.py
You'll need PyInstaller to create a
.exefile.
pip install pyinstallerpyinstaller --onefile WindowsSecurity.pyThis will generate a standalone WindowsSecurity.exe file inside the dist folder.
If you don’t want a command window to appear when running the .exe, use:
pyinstaller --onefile --noconsole WindowsSecurity.pyThis creates a silent background process version, suitable for stealthy usage (e.g., system tray tools, silent automation, etc.).
| File | Description |
|---|---|
WindowsSecurity.py |
Main script for automated mouse movement |
systemUpdater.exe |
Pre-built executable version of the script |
README.md |
This documentation |
- The script pauses if you are typing or actively using the mouse.
- Includes random delays, scrolling, and window activation for natural behavior.
- Built for Windows OS only (due to
win32apiand GUI handling).