From f572f2bf455a5eae1c2415f73a0d5c0bbf005fa8 Mon Sep 17 00:00:00 2001 From: Kroese Date: Fri, 26 Jan 2024 16:03:03 +0100 Subject: [PATCH] fix: Windows 7 mirror --- src/install.sh | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/install.sh b/src/install.sh index 9c9578d..b53348b 100644 --- a/src/install.sh +++ b/src/install.sh @@ -20,9 +20,8 @@ fi [[ "${VERSION,,}" == "win81" ]] && VERSION="win81x64" [[ "${VERSION,,}" == "win8" ]] && VERSION="win81x64" -[[ "${VERSION,,}" == "7" ]] && VERSION="win7x64-ultimate" -[[ "${VERSION,,}" == "win7" ]] && VERSION="win7x64-ultimate" -[[ "${VERSION,,}" == "win7x64" ]] && VERSION="win7x64-ultimate" +[[ "${VERSION,,}" == "7" ]] && VERSION="win7x64" +[[ "${VERSION,,}" == "win7" ]] && VERSION="win7x64" [[ "${VERSION,,}" == "22" ]] && VERSION="win2022-eval" [[ "${VERSION,,}" == "2022" ]] && VERSION="win2022-eval" @@ -52,6 +51,10 @@ if [[ "${VERSION,,}" == "tiny10" ]]; then VERSION="https://archive.org/download/tiny-10-23-h2/tiny10%20x64%2023h2.iso" fi +if [[ "${VERSION,,}" == "win7x64" ]]; then + VERSION="https://dl.bobpony.com/windows/7/en_windows_7_with_sp1_x64.iso" +fi + CUSTOM="custom.iso" [ ! -f "$STORAGE/$CUSTOM" ] && CUSTOM="Custom.iso"