2023-06-18 21:27:22 +08:00
@ echo off
2024-03-22 20:05:53 +08:00
mode con cp select=437 > nul
2023-06-18 21:27:22 +08:00
setlocal EnableDelayedExpansion
2024-03-19 21:36:21 +08:00
2023-11-28 22:24:44 +08:00
set confhome = https://raw.githubusercontent.com/bin456789/reinstall/main
2024-12-18 23:43:34 +08:00
set confhome_cn = https://jihulab.com/bin456789/reinstall/-/raw/main
rem set confhome_cn=https://www.ghproxy.cc/https://raw.githubusercontent.com/bin456789/reinstall/main
2023-06-18 21:27:22 +08:00
2024-03-22 20:05:53 +08:00
rem 65001 代码页会乱码
2024-01-28 00:00:21 +08:00
rem 不要用 :: 注释
rem 否则可能会出现 系统找不到指定的驱动器
rem Windows 7 SP1 winhttp 默认不支持 tls 1.2
rem 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
rem 有些系统根证书没更新
rem 所以不要用https
rem 进入脚本目录
2023-06-18 21:27:22 +08:00
cd /d %~dp0
2024-01-28 00:00:21 +08:00
rem 检查是否有管理员权限
2024-03-25 23:34:38 +08:00
fltmc > nul 2 >& 1
if errorlevel 1 (
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
)
2024-01-28 00:00:21 +08:00
rem 有时 %tmp% 带会话 id, 且文件夹不存在
rem https://learn.microsoft.com/troubleshoot/windows-server/shell-experience/temp-folder-with-logon-session-id-deleted
2023-11-07 22:35:46 +08:00
if not exist %tmp% (
md %tmp%
)
2024-01-28 00:00:21 +08:00
rem 检查是否国内
2024-11-23 23:50:12 +08:00
if not exist geoip (
2024-03-01 22:01:22 +08:00
rem 部分地区 www.cloudflare.com 被墙
2024-11-23 23:50:12 +08:00
call : download http://dash.cloudflare.com/cdn-cgi/trace %~dp0 geoip || goto : download_failed
2023-11-01 22:19:48 +08:00
)
2024-11-23 23:50:12 +08:00
findstr /c:" loc=CN " geoip > nul
2024-03-25 23:34:38 +08:00
if not errorlevel 1 (
2024-01-28 00:00:21 +08:00
rem mirrors.tuna.tsinghua.edu.cn 会强制跳转 https
2023-11-01 22:19:48 +08:00
set mirror = http://mirror.nju.edu.cn
2024-07-20 21:14:03 +08:00
if defined confhome_cn (
set confhome = !confhome_cn!
) else if defined github_proxy (
2023-11-28 22:24:44 +08:00
echo !confhome! | findstr /c:" ://raw.githubusercontent.com/ " > nul
2024-03-25 23:34:38 +08:00
if not errorlevel 1 (
2024-04-05 19:23:55 +08:00
set confhome = !confhome:http://=https://!
set confhome = !confhome:https://raw.githubusercontent.com=%github_proxy%!
2023-11-28 22:24:44 +08:00
)
2023-11-01 22:19:48 +08:00
)
) else (
2024-05-22 22:32:43 +08:00
rem 服务器在美国 equinix 机房,不是 cdn
2024-01-26 21:42:09 +08:00
set mirror = http://mirrors.kernel.org
2023-11-01 22:19:48 +08:00
)
2024-01-28 00:00:21 +08:00
rem pkgs 改动了才重新运行 Cygwin 安装程序
2024-10-13 22:58:12 +08:00
set pkgs = curl,cpio,p7zip,bind-utils,ipcalc,dos2unix,binutils,jq,xz,gzip,zstd,openssl,libiconv
set tags = %tmp% \cygwin-installed-%pkgs%
if not exist " %tags% " (
2024-01-28 00:00:21 +08:00
rem win10 arm 支持运行 x86 软件
rem win11 arm 支持运行 x86 和 x86_64 软件
2024-03-15 00:01:34 +08:00
rem wmic os get osarchitecture 显示中文
rem wmic ComputerSystem get SystemType 显示英文
2024-11-23 23:50:11 +08:00
rem SystemType
rem windows 11 24h2 没有 wmic
rem 有的系统精简了 powershell
where wmic > nul 2 >& 1
if not errorlevel 1 (
for /f " tokens=* " %% a in ( 'wmic ComputerSystem get SystemType ^| find /i "based"' ) do (
set " SystemType= %% a "
)
) else (
for /f " delims= " %% a in ( 'powershell -NoLogo -NoProfile -NonInteractive -Command "(Get-WmiObject win32_computersystem).SystemType"' ) do (
set " SystemType= %% a "
)
)
rem BuildNumber
for /f " tokens=3 " %% a in ( 'reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v CurrentBuildNumber' ) do (
set /a BuildNumber =%% a
2024-03-15 00:01:34 +08:00
)
set CygwinEOL = 1
2024-11-23 23:50:11 +08:00
echo !SystemType! | find " ARM " > nul
2024-01-27 23:08:34 +08:00
if not errorlevel 1 (
if !BuildNumber! GEQ 22000 (
2024-03-15 00:01:34 +08:00
set CygwinEOL = 0
2024-01-27 23:08:34 +08:00
)
) else (
2024-11-23 23:50:11 +08:00
echo !SystemType! | find " x64 " > nul
2024-01-27 23:08:34 +08:00
if not errorlevel 1 (
2024-03-15 00:01:34 +08:00
if !BuildNumber! GEQ 9600 (
set CygwinEOL = 0
)
2024-01-27 23:08:34 +08:00
)
)
2024-03-15 00:01:34 +08:00
rem win7/8 cygwin 已 EOL, 不能用最新 cygwin 源,而要用 Cygwin Time Machine 源
rem 但 Cygwin Time Machine 没有国内源
rem 为了保证国内下载速度, cygwin EOL 统一使用 cygwin-archive x86 源
2024-03-25 23:22:22 +08:00
if !CygwinEOL! == 1 (
2024-03-15 00:01:34 +08:00
set CygwinArch = x86
2023-06-18 21:27:22 +08:00
set dir = /sourceware/cygwin-archive/20221123
2024-03-15 00:01:34 +08:00
) else (
set CygwinArch = x86_64
set dir = /sourceware/cygwin
2023-06-18 21:27:22 +08:00
)
2024-01-28 00:00:21 +08:00
rem 下载 Cygwin
2024-11-23 23:50:12 +08:00
if not exist setup-!CygwinArch!.exe (
call : download http://www.cygwin.com/setup-!CygwinArch!.exe %~dp0 setup-!CygwinArch!.exe || goto : download_failed
)
2023-06-18 21:27:22 +08:00
2024-01-28 00:00:21 +08:00
rem 安装 Cygwin
2023-11-01 22:19:48 +08:00
set site = !mirror! !dir!
2024-11-23 23:50:12 +08:00
start /wait setup-!CygwinArch!.exe ^
--allow-unsupported-windows ^
--quiet-mode ^
--only-site ^
--site !site! ^
--root %SystemDrive% \cygwin ^
--local-package-dir %tmp% \cygwin-local-package-dir ^
--packages %pkgs% ^
&& type nul > " %tags% "
if errorlevel 1 (
echo " Failed to install Cygwin. "
exit /b 1
)
2023-06-18 21:27:22 +08:00
)
2024-10-19 00:42:29 +08:00
rem 在c盘根目录下执行 cygpath -ua . 会得到 /cygdrive/c, 因此末尾要有 /
for /f %% a in ( ' %SystemDrive% \cygwin\bin\cygpath -ua ./' ) do set thisdir = %% a
2024-01-28 00:00:21 +08:00
rem 下载 reinstall.sh
2023-06-18 21:27:22 +08:00
if not exist reinstall.sh (
2024-11-23 23:50:12 +08:00
call : download_with_curl %confhome% /reinstall.sh %thisdir% reinstall.sh || goto : download_failed
2024-10-19 00:42:29 +08:00
call : chmod a+x %thisdir% reinstall.sh
2023-06-18 21:27:22 +08:00
)
2024-01-28 00:00:21 +08:00
rem 为每个参数添加引号,使参数正确传递到 bash
2023-12-25 22:05:24 +08:00
for %% a in ( %* ) do (
set " param=!param! " %% ~a" "
)
2024-01-28 00:00:21 +08:00
rem 方法1
2024-03-25 23:34:38 +08:00
%SystemDrive% \cygwin\bin\dos2unix -q '%thisdir% reinstall.sh'
2023-12-25 22:05:24 +08:00
%SystemDrive% \cygwin\bin\bash -l -c '%thisdir% reinstall.sh !param! '
2024-01-28 00:00:21 +08:00
rem 方法2
rem %SystemDrive%\cygwin\bin\bash reinstall.sh %*
rem 再在 reinstall.sh 里运行 source /etc/profile
2024-03-25 23:34:38 +08:00
exit /b
2023-06-18 21:27:22 +08:00
: download
2024-01-28 00:00:21 +08:00
rem bits 要求有 Content-Length 才能下载
2024-11-23 23:50:12 +08:00
rem 据说如果网络设为“按流量计费” bits 也无法下载
2024-01-28 00:00:21 +08:00
rem https://learn.microsoft.com/en-us/windows/win32/bits/http-requirements-for-bits-downloads
rem certutil 会被 windows Defender 报毒
2024-04-10 21:43:49 +08:00
rem windows server 2019 要用第二条 certutil 命令
2023-11-01 22:20:30 +08:00
echo Download: %~1 %~2
2024-10-13 22:58:12 +08:00
del /q " %~2 " 2 > nul
if exist " %~2 " ( echo Cannot delete %~2 & exit /b 1)
if not exist " %~2 " certutil -urlcache -f -split " %~1 " " %~2 " > nul
if not exist " %~2 " certutil -urlcache -split " %~1 " " %~2 " > nul
if not exist " %~2 " exit /b 1
2024-03-25 23:34:38 +08:00
exit /b
2024-10-13 22:58:12 +08:00
2024-10-19 00:42:29 +08:00
: download_with_curl
2024-11-23 23:50:12 +08:00
rem 加 --insecure 防止以下错误
rem curl: (77) error setting certificate verify locations:
rem CAfile: /etc/ssl/certs/ca-certificates.crt
rem CApath: none
2024-10-19 00:42:29 +08:00
echo Download: %~1 %~2
2024-11-23 23:50:12 +08:00
%SystemDrive% \cygwin\bin\curl -L --insecure " %~1 " -o " %~2 "
2024-10-19 00:42:29 +08:00
exit /b
: chmod
%SystemDrive% \cygwin\bin\chmod " %~1 " " %~2 "
exit /b
2024-10-13 22:58:12 +08:00
: download_failed
echo Download failed.
exit /b 1