2023-06-18 21:27:22 +08:00
|
|
|
|
@echo off
|
|
|
|
|
setlocal EnableDelayedExpansion
|
2023-11-28 22:24:44 +08:00
|
|
|
|
set confhome=https://raw.githubusercontent.com/bin456789/reinstall/main
|
2023-12-12 13:09:03 +08:00
|
|
|
|
set github_proxy=raw.fgit.cf
|
2023-06-18 21:27:22 +08:00
|
|
|
|
|
2023-06-21 23:22:37 +08:00
|
|
|
|
:: Windows 7 SP1 winhttp 默认不支持 tls 1.2
|
|
|
|
|
:: https://support.microsoft.com/en-us/topic/update-to-enable-tls-1-1-and-tls-1-2-as-default-secure-protocols-in-winhttp-in-windows-c4bd73d2-31d7-761e-0178-11268bb10392
|
|
|
|
|
:: 有些系统根证书没更新
|
|
|
|
|
:: 所以不要用https
|
2023-06-18 21:27:22 +08:00
|
|
|
|
:: 进入脚本目录
|
|
|
|
|
cd /d %~dp0
|
|
|
|
|
|
|
|
|
|
:: 检查是否有管理员权限
|
|
|
|
|
openfiles 1>nul 2>&1
|
|
|
|
|
if not !errorlevel! == 0 (
|
2023-11-01 22:19:48 +08:00
|
|
|
|
echo Please run as administrator^^!
|
2023-11-03 23:55:04 +08:00
|
|
|
|
exit /b
|
2023-06-18 21:27:22 +08:00
|
|
|
|
)
|
|
|
|
|
|
2023-11-07 22:35:46 +08:00
|
|
|
|
:: 有时 %tmp% 带会话 id,且文件夹不存在
|
|
|
|
|
:: https://learn.microsoft.com/troubleshoot/windows-server/shell-experience/temp-folder-with-logon-session-id-deleted
|
|
|
|
|
if not exist %tmp% (
|
|
|
|
|
md %tmp%
|
|
|
|
|
)
|
|
|
|
|
|
2023-11-01 22:19:48 +08:00
|
|
|
|
:: 检查是否国内
|
|
|
|
|
if not exist %tmp%\geoip (
|
2023-11-16 21:44:09 +08:00
|
|
|
|
call :download http://www.cloudflare.com/cdn-cgi/trace %tmp%\geoip
|
2023-11-01 22:19:48 +08:00
|
|
|
|
)
|
|
|
|
|
findstr /c:"loc=CN" %tmp%\geoip >nul
|
|
|
|
|
if !errorlevel! == 0 (
|
2023-11-16 21:44:09 +08:00
|
|
|
|
:: mirrors.tuna.tsinghua.edu.cn 会强制跳转 https
|
2023-11-01 22:19:48 +08:00
|
|
|
|
set mirror=http://mirror.nju.edu.cn
|
|
|
|
|
|
2023-11-28 22:24:44 +08:00
|
|
|
|
if defined github_proxy (
|
|
|
|
|
echo !confhome! | findstr /c:"://raw.githubusercontent.com/" >nul
|
|
|
|
|
if !errorlevel! == 0 (
|
2023-12-12 13:09:03 +08:00
|
|
|
|
rem set confhome=!github_proxy!/!confhome!
|
|
|
|
|
set confhome=!confhome:raw.githubusercontent.com=%github_proxy%!
|
2023-11-28 22:24:44 +08:00
|
|
|
|
)
|
2023-11-01 22:19:48 +08:00
|
|
|
|
)
|
|
|
|
|
) else (
|
2024-01-26 21:42:09 +08:00
|
|
|
|
set mirror=http://mirrors.kernel.org
|
2023-11-01 22:19:48 +08:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
2023-06-18 21:27:22 +08:00
|
|
|
|
:: pkgs 改动了才重新运行 Cygwin 安装程序
|
2023-10-22 18:43:54 +08:00
|
|
|
|
set pkgs="curl,cpio,p7zip,bind-utils,ipcalc"
|
2023-06-18 21:27:22 +08:00
|
|
|
|
set tags=%tmp%\cygwin-installed-!pkgs!
|
|
|
|
|
if not exist !tags! (
|
|
|
|
|
:: 检查32/64位
|
2023-11-01 22:19:48 +08:00
|
|
|
|
wmic os get osarchitecture | findstr /c:"64" >nul
|
2023-06-18 21:27:22 +08:00
|
|
|
|
if !errorlevel! == 0 (
|
|
|
|
|
set arch=x86_64
|
|
|
|
|
set dir=/sourceware/cygwin
|
|
|
|
|
) else (
|
|
|
|
|
set arch=x86
|
|
|
|
|
set dir=/sourceware/cygwin-archive/20221123
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
:: 下载 Cygwin
|
2023-11-01 22:20:30 +08:00
|
|
|
|
call :download http://www.cygwin.com/setup-!arch!.exe %tmp%\setup-cygwin.exe
|
2023-06-18 21:27:22 +08:00
|
|
|
|
|
|
|
|
|
:: 安装 Cygwin
|
2023-11-01 22:19:48 +08:00
|
|
|
|
set site=!mirror!!dir!
|
2023-06-18 21:27:22 +08:00
|
|
|
|
%tmp%\setup-cygwin.exe --allow-unsupported-windows^
|
|
|
|
|
--quiet-mode^
|
|
|
|
|
--only-site^
|
|
|
|
|
--site !site!^
|
|
|
|
|
--root %SystemDrive%\cygwin^
|
|
|
|
|
--local-package-dir %tmp%\cygwin-local-package-dir^
|
|
|
|
|
--packages !pkgs!^
|
2023-11-03 23:55:04 +08:00
|
|
|
|
&& type nul >!tags!
|
2023-06-18 21:27:22 +08:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
:: 下载 reinstall.sh
|
|
|
|
|
if not exist reinstall.sh (
|
2023-11-01 22:20:30 +08:00
|
|
|
|
call :download %confhome%/reinstall.sh %~dp0reinstall.sh
|
2023-06-18 21:27:22 +08:00
|
|
|
|
)
|
|
|
|
|
|
2023-12-25 22:05:24 +08:00
|
|
|
|
:: 为每个参数添加引号,使参数正确传递到 bash
|
|
|
|
|
for %%a in (%*) do (
|
|
|
|
|
set "param=!param! "%%~a""
|
|
|
|
|
)
|
|
|
|
|
|
2023-11-02 20:56:55 +08:00
|
|
|
|
:: 在c盘根目录下执行 cygpath -ua . 会得到 /cygdrive/c,因此末尾要有 /
|
|
|
|
|
for /f %%a in ('%SystemDrive%\cygwin\bin\cygpath -ua ./') do set thisdir=%%a
|
2023-06-18 21:27:22 +08:00
|
|
|
|
|
2023-12-25 22:05:24 +08:00
|
|
|
|
:: 方法1
|
|
|
|
|
%SystemDrive%\cygwin\bin\bash -l -c '%thisdir%reinstall.sh !param!'
|
|
|
|
|
|
|
|
|
|
:: 方法2
|
2023-06-18 21:27:22 +08:00
|
|
|
|
:: %SystemDrive%\cygwin\bin\bash reinstall.sh %*
|
2023-12-25 22:05:24 +08:00
|
|
|
|
:: 再在 reinstall.sh 里运行 source /etc/profile
|
2023-06-18 21:27:22 +08:00
|
|
|
|
exit /b !errorlevel!
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
:download
|
2023-11-01 22:20:30 +08:00
|
|
|
|
:: bits 要求有 Content-Length 才能下载
|
|
|
|
|
:: https://learn.microsoft.com/en-us/windows/win32/bits/http-requirements-for-bits-downloads
|
2023-10-22 18:43:54 +08:00
|
|
|
|
:: certutil 会被 windows Defender 报毒
|
2023-11-01 22:20:30 +08:00
|
|
|
|
echo Download: %~1 %~2
|
|
|
|
|
certutil -urlcache -f -split %~1 %~2
|
2023-06-18 21:27:22 +08:00
|
|
|
|
exit /b !errorlevel!
|