From 9e0968eabd7928c71f64b9087788d293d84a5c1a Mon Sep 17 00:00:00 2001 From: bin456789 Date: Tue, 4 Nov 2025 22:15:18 +0800 Subject: [PATCH] =?UTF-8?q?windows:=20=E4=BB=8E=E7=BD=91=E9=A1=B5=E8=8E=B7?= =?UTF-8?q?=E5=8F=96=20intel=20vmd=20=E9=A9=B1=E5=8A=A8=E6=9C=80=E6=96=B0?= =?UTF-8?q?=E9=93=BE=E6=8E=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- trans.sh | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/trans.sh b/trans.sh index 8703704..c5baf9f 100644 --- a/trans.sh +++ b/trans.sh @@ -6615,12 +6615,17 @@ EOF done if ! $is_gen11 && [ "$build_ver" -ge 19041 ]; then - url=https://downloadmirror.intel.com/865363/SetupRST.exe # RST v20 + # RST v20 + local page=https://www.intel.com/content/www/us/en/download/849936.html elif [ "$build_ver" -ge 15063 ]; then - url=https://downloadmirror.intel.com/849934/SetupRST.exe # RST v19 + # RST v19 + local page=https://www.intel.com/content/www/us/en/download/849933.html else error_and_exit "can't find suitable vmd driver" fi + local url + url=$(wget -U curl/7.54.1 "$page" -O- | + grep -Eio -m1 "\"https://.+/SetupRST\.exe\"" | tr -d '"' | grep .) # 注意 intel 禁止了 aria2 下载 download $url $drv/SetupRST.exe