29 lines
713 B
Batchfile
29 lines
713 B
Batchfile
@echo off
|
|
chcp 65001 > nul
|
|
title Bookworm Portable - 更新并启动
|
|
cd /d "%~dp0"
|
|
|
|
:: 中转站在国内,不走代理
|
|
set NO_PROXY=bww.letcareme.com,code.letcareme.com,letcareme.com,localhost,127.0.0.1
|
|
set no_proxy=%NO_PROXY%
|
|
|
|
echo.
|
|
echo ====================================
|
|
echo Bookworm Portable - 更新并启动
|
|
echo (同步最新 Skills/Hooks 后启动)
|
|
echo ====================================
|
|
echo.
|
|
|
|
where pwsh >nul 2>nul
|
|
if %errorlevel% equ 0 (
|
|
pwsh -ExecutionPolicy Bypass -File install.ps1 -AutoAccept
|
|
) else (
|
|
powershell -ExecutionPolicy Bypass -File install.ps1 -AutoAccept
|
|
)
|
|
|
|
if %errorlevel% neq 0 (
|
|
echo.
|
|
echo 启动失败,按任意键退出...
|
|
pause > nul
|
|
)
|