| 
 | 
回复 #1 2011aaaaa0808 的帖子
既然用了S大的RUN,你的菜单可以更简化,不用这么多命令…… 
 
title [] Windows PE 
RUN /iso/WinPE.ISO 
boot 
 
title [] Windows 2000/2K/XP/Vista/7/2008   
RUN --nt /bootmgr /ntldr 
boot 
 
title [] Windows 通用启动器 
RUN /boot/imgs/NTBOOT.iso 
boot 
 
title [] 从光盘启动(先放光盘) 
cdrom --init 
map --hook 
chainloader (cd0) 
 
title [] 从下一个设备启动 
boot -1 
 
title 
clear 
 
title [] NT系统密码暴力清除 
RUN /boot/imgs/PASSWORD.IMG 
boot 
 
title [] NT系统绕过密码登录 
RUN /boot/imgs/NOPASSWORD.IMG 
boot 
 
title [] 清除主板CMOS 
RUN /boot/imgs/cmos.img 
boot 
 
title [] Ghost还原系统(智能搜索GHO) 
RUN /boot/imgs/xghost.IMG 
boot 
 
title [] BT4破解路由密码 
find --set-root /boot-bt4/initrd.gz 
kernel /bootboot-bt4/vmlinuz BOOT=casper boot=casper nopersistent rw quiet vga=0x317 
initrd /bootboot-bt4/initrd.gz 
 
title [] 使用firadisk + srs安装原版系统 
run --fira srs sif iso=/iso/winxp.iso 
boot 
 
title [] 使用firadisk + dpms安装原版系统 
run --fira dpms:dpms.lzma sif iso=/iso/winxp.iso 
boot |   
 
 
 
 |