Files
Whatsapp-Bulk-Sender/run_windows.bat

12 lines
230 B
Batchfile
Raw Normal View History

@echo off
REM check if Python is installed
where python >nul 2>&1
if %errorlevel% == 0 (
REM run the Python script
python main.py
) else (
REM print an error message
echo Python is not installed on this system.
)