From 43ba86076f4ad4606bf52566c54b0f2d93ba2470 Mon Sep 17 00:00:00 2001 From: bin456789 Date: Tue, 28 Oct 2025 23:21:41 +0800 Subject: [PATCH] =?UTF-8?q?windows:=20=E4=BF=AE=E5=A4=8D=E6=97=A0=E6=B3=95?= =?UTF-8?q?=E6=9F=A5=E6=89=BE=20win11=20pro=20arm=20iso?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fixes #460 --- reinstall.sh | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/reinstall.sh b/reinstall.sh index e52b950..d0d15dd 100644 --- a/reinstall.sh +++ b/reinstall.sh @@ -960,8 +960,11 @@ get_windows_iso_link() { esac } - # 8.1 和 11 arm 没有每月发布 iso - # 因此优先从 msdl 下载 + # msdl 没有每月发布的 iso + # msdl 只有 consumer 版本,因此里面的 pro 版本不是 vl 版 + # 8.1 没有每月发布的 iso,因此优先从 msdl 下载 + # win10 22h2 arm 有每月发布的 iso,因此不从 msdl 下载 + # win10/11 ltsc 没有每月发布的 iso,但是 msdl 没有 ltsc 版本 get_label_msdl() { case "$version" in 8.1) @@ -969,15 +972,6 @@ get_windows_iso_link() { '' | pro) echo _ ;; esac ;; - 11) - case "$edition" in - home | 'home single language' | pro | education | 'pro education' | 'pro for workstations') - case "$arch_win" in - arm64) echo _ ;; - esac - ;; - esac - ;; esac }