windows: 使用新方法绕过 win11 硬件要求

This commit is contained in:
bin456789
2023-09-28 23:51:30 +08:00
parent b34af7a164
commit 2fcb6d2a9c
2 changed files with 13 additions and 19 deletions

View File

@ -1240,6 +1240,15 @@ install_windows() {
echo $image_name | grep -iEw '^Windows (7|Server 2008 R2)'
}
is_win11() {
echo $image_name | grep -iEw '^Windows 11'
}
# 跳过 win11 硬件限制
if is_win11; then
wiminfo "$install_wim" "$image_name" --image-property WINDOWS/INSTALLATIONTYPE=Server
fi
# 变量名 使用场景
# arch_uname uname -m x86_64 aarch64
# arch_wim wiminfo x86 x86_64 ARM64