|
4#
楼主 |
发表于 2014-11-20 16:45:15
|
只看该作者
本帖最后由 gmy 于 2014-11-20 16:54 编辑
- title GHOST, DISKGEN, HDDREG, MHDD, DOS
- map --mem /1KG/ghost.img (fd0)
- map --hook
- chainloader (fd0)+1
- rootnoverify (fd0)
- title WinXP/2000/2003
- find --set-root /ntldr
- chainloader (hd1,0)/ntldr
- title Win7/Vista/Win8
- find --set-root /bootmgr
- chainloader /bootmgr
- title Win98/95/ME/DOS
- find --set-root /io.sys
- chainloader /io.sys
- title CD/DVD 1
- cdrom --init
- map --hook
- chainloader (cd0)
- boot
- title CD/DVD 2
- cdrom --init
- map --hook
- chainloader (cd1)
- boot
- title Myiso.iso
- map --mem /1KG/myiso.iso (hd32)
- map --hook
- chainloader (hd32)
- boot
- title Myimg.img
- map --mem /1KG/myimg.img (fd0)
- map --hook
- chainloader (fd0)+1
- rootnoverify (fd0)
- title My_iso_and_img
- run --automenu-all show.iso.img (hd0,0)/1KG/
- title Restart
- reboot
- title Shutdown
- halt
复制代码
以上代码是U盘(USB HDD+模式),存在在U盘根目录下的 1KG/menu.lst。
问题1:如果按上下键,“My_iso_and_img”这一行被跳过了。如果按左右键就正常。
问题2:My_iso_and_img 这段代码是网友提供的,没成功,我想实现浏览所有的/1KG/*.iso 和 *.img,可选任意一个映像启动。
问题3:WinXP/2000/2003 这一段 在U盘上无法通过,现象是:无提示返回本菜单,应该是进入硬盘的XP才对。
问题4:Myiso.iso 这一段在有些电脑上不成功。
|
|