Compare commits

..

7 Commits

Author SHA1 Message Date
047b82aaa0 core: 用于引导参数时不需要判断 tty 是否存在和可写 2026-04-28 07:33:09 +08:00
0db534c4fd core: 不重要的优化 2026-04-28 07:33:09 +08:00
07b46d78b0 windows: 删除 ProtectYourPC 设置,使首次登录可自定义隐私选项 2026-04-28 07:33:09 +08:00
0b1a0d2f69 windows: 优化安装流程 2026-04-28 07:33:08 +08:00
c3a5fff760 core: 优化 powershell 查询
- 避免 wmic where 条件有空格时报错
- 减少 ForEach-Object 以提高速度
2026-04-28 07:33:08 +08:00
4bb20b81eb windows: 国内服务器访问 intel.cn 2026-04-28 07:33:08 +08:00
86d6976d96 core: 添加 pci-hyperv / vpci.sys 驱动
修复 Azure 安装 debian / windows 10 ltsc 时不到 nvme 硬盘
2026-04-28 07:33:07 +08:00

View File

@ -7036,7 +7036,7 @@ EOF
# .cat # .cat
apk add binutils apk add binutils
for file in "$(get_path_in_correct_case '/wim-tmp/Windows/System32/CatRoot/{F750E6C3-38EE-11D1-85E5-00C04FC295EE}/')"*; do for file in "$(get_path_in_correct_case '/wim-tmp/Windows/System32/CatRoot/{F750E6C3-38EE-11D1-85E5-00C04FC295EE}/')"*; do
if strings -e l "$file" | grep -iq vpci.sys; then if strings -e l "$file" | grep -Fiq vpci.sys; then
cp -fv "$file" "$(get_path_in_correct_case '/wim/Windows/System32/CatRoot/{F750E6C3-38EE-11D1-85E5-00C04FC295EE}/')" cp -fv "$file" "$(get_path_in_correct_case '/wim/Windows/System32/CatRoot/{F750E6C3-38EE-11D1-85E5-00C04FC295EE}/')"
fi fi
done done