Files
m365-workingwith/run.bat
2026-02-02 12:40:51 +01:00

18 lines
301 B
Batchfile

@echo off
setlocal
REM Virtuelle Umgebung aktivieren
call venv\Scripts\activate.bat
if "%1"=="" (
echo Nutzung:
echo run.bat login ^<email^>
echo run.bat manager ^<manager_email^>
echo run.bat emails ^<email1^> [^<email2^> ...]
goto :eof
)
python -m app.main %*
endlocal