Compare commits

..

7 Commits

Author SHA1 Message Date
190f36d473 core: 用于引导参数时不需要判断 tty 是否存在和可写 2026-04-27 06:39:24 +08:00
f2bc04d90f core: 不重要的优化 2026-04-26 17:30:38 +08:00
e1fdbb18fa windows: 删除 ProtectYourPC 设置,使首次登录可自定义隐私选项 2026-04-26 17:30:38 +08:00
8fd50b7527 windows: 优化安装流程 2026-04-26 17:30:38 +08:00
c8c1da2dbc core: 优化 powershell 查询
- 避免 wmic where 条件有空格时报错
- 减少 ForEach-Object 以提高速度
2026-04-26 06:16:46 +08:00
b1e995a2f0 windows: 国内服务器访问 intel.cn 2026-04-26 06:16:46 +08:00
5cbc106423 core: 添加 pci-hyperv / vpci.sys 驱动
修复 Azure 安装 debian / windows 10 ltsc 时不到 nvme 硬盘
2026-04-25 23:16:52 +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 -Fiq vpci.sys; then if strings -e l "$file" | grep -iq 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