start-hotmail-helper.bat 294 B

12345678910111213141516171819
  1. @echo off
  2. setlocal
  3. cd /d "%~dp0"
  4. where py >nul 2>nul
  5. if %errorlevel%==0 (
  6. py -3 scripts\hotmail_helper.py
  7. goto :eof
  8. )
  9. where python >nul 2>nul
  10. if %errorlevel%==0 (
  11. python scripts\hotmail_helper.py
  12. goto :eof
  13. )
  14. echo Python 3 not found. Please install Python 3.10+ and try again.
  15. pause