- 積分
- 8666
- 最後登入
- 1970-1-1
- 閱讀權限
- 150
- 積分
- 8666
- 帖子
- 精華
升級
100%
|
本帖最後由 bv6f1 於 2013-11-18 21:20 編輯
這麼久了我自己也忘了,其實都一樣只是內容不一樣而已
舊的
@echo off
for %%a in (c d e f g h i j k l m n o p q r s t u v w y z) do (if exist %%a:\win8\install.wim x:\sources\8setup.exe /installfrom:%%a:\win8\install.wim)
exit
新的 自動先搜索 install.wim ,如果找不到,會再找 install.esd 或 install.swm、1nstall2.swm...。
@echo off
for %%a in (c d e f g h i j k l m n o p q r s t u v w y z) do (if exist %%a:\sources\win8\install.wim x:\sources\8setup.exe /installfrom:%%a:\sources\win8\install.wim &exit)
for %%k in (c d e f g h i j k l m n o p q r s t u v w y z) do (if exist %%k:\sources\win8\install.esd x:\sources\8setup.exe /installfrom:%%k:\sources\win8\install.esd &exit)
for %%b in (c d e f g h i j k l m n o p q r s t u v w y z) do (if exist %%b:\sources\win8\install.swm x:\sources\8setup.exe /installfrom:%%b:\sources\win8\install.swm)
exit
|
|