Files
Whatsapp-Bulk-Sender/run_windows.bat
nanometer5088 c368270cf2 README + launch scripts
Signed-off-by: nanometer5088 <code.deleo@simplelogin.com>
2023-05-02 20:07:56 -03:00

12 lines
230 B
Batchfile

@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.
)