|
7#
楼主 |
发表于 2010-8-27 19:46:46
|
只看该作者
确定是用MKISOFS封装的 :并且封装成功。
如果没有任何改动的话,封装完后,菜单是可以使用的,
为什么更改了以后就不行了呢?
代码如下:- CLS
- COLOR 2F
- Title %Prog%——重新封装光盘 ISOLINUX 模式
- echo "%~dp0">tempriso.tx
- type tempriso.tx | find /I "\MyFeng\Boot" >nul
- If not "%Errorlevel%"=="0" (Echo.&&Echo.&&Echo 请先将ISO或U盘内所有文件复制到 MyFeng 文件夹下再进行封装,按任意键退出 。。。 &&del tempriso.tx /q>nul 2>nul&PAUSE>NUL 2>NUL&&Exit)
- del tempriso.tx /q>nul 2>nul
- Echo.&&Echo.&&Echo 正在重新封装ISOLINUX 模式,请稍候 。。。
- Echo.
- copy ..\boot\ISOLINUX.BIN ..\iso.bif /y>NUL 2>NUL
- %DelATTR% grldr >NUL 2>NUL & %DelATTR% ..\*.* >NUL 2>NUL
- If not Exist ..\grldr copy grldr ..\ /y>NUL 2>NUL&&del ..\AUTOEXEC.BAT /q >NUL 2>NUL&&del ..\COMMAND.COM /q >NUL 2>NUL&&del ..\IO.SYS /q >NUL 2>NUL&&del ..\MSDOS.SYS /q >NUL 2>NUL&&del ..\grub.exe /q >NUL 2>NUL
- If Exist ..\ntldr del ..\ntldr /q >NUL 2>NUL
- If not Exist ..\AUTORUN.INF copy Ins\AUTORUN.INF ..\ /y>NUL 2>NUL
- Ins\MKISOFS -R -b iso.bif -no-emul-boot -boot-load-size 4 -V MyFeng -hide iso.bif -hide-joliet iso.bif -hide boot.catalog -hide-joliet boot.catalog -p yuanwen -o ..\..\MyFeng.ISO ..
- Echo.&&Echo.&&Echo ISOLINUX模式光盘封装完成,已在 MyFeng 文件夹同级目录下重新生成 MyFeng.ISO。
- Echo.&&Echo.&&Echo 请按任意键退出 。。。
- del ..\iso.bif /q >NUL 2>NUL
- PAUSE>NUL 2>NUL
- Exit
复制代码 |
|