Files
pptopic/setup.bat

25 lines
543 B
Batchfile
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@echo off
chcp 65001 >nul
echo.
echo ========================================
echo pptopic 一键安装程序
echo ========================================
echo.
echo 即将自动安装uv、Python 3.13、pngquant 和 pptopic
echo 安装过程中请勿关闭此窗口...
echo.
powershell -ExecutionPolicy Bypass -File "%~dp0setup.ps1" %*
if %errorlevel% neq 0 (
echo.
echo 安装过程中出现错误,请查看上方提示。
echo.
pause
exit /b %errorlevel%
)
echo.
echo 按任意键关闭此窗口...
pause >nul