将hotmail支持本地和远程两种,远程不一定合适,可能考虑远程需要自行修改适配

This commit is contained in:
QLHazyCoder
2026-04-13 16:28:01 +08:00
parent 36aeecf214
commit e46f861045
8 changed files with 1119 additions and 95 deletions
+19
View File
@@ -0,0 +1,19 @@
@echo off
setlocal
cd /d "%~dp0"
where py >nul 2>nul
if %errorlevel%==0 (
py -3 scripts\hotmail_helper.py
goto :eof
)
where python >nul 2>nul
if %errorlevel%==0 (
python scripts\hotmail_helper.py
goto :eof
)
echo Python 3 not found. Please install Python 3.10+ and try again.
pause