| 
 | 
引导方法多种 这里我用我自己在用的方法简单说一下 
 
去下载BOOTICE 这个工具,在无忧综合区有并且还有使用说明的 
 
用BOOTICE把你的硬盘处理一下,把引导改写成Grub4Dos,在C盘根目录【也就是你处理的那个分区】放置一个grldr文件夹,文件可以在本区自己下载 
 
把文件里面的内容自己编写一下,写成下面内容 
timeout 3 
default 1 
gfxmenu /MESSAGE 
configfile(md)4+8 
 
title 【1】启动Win7/Vista 
find --set-root --ignore-floppies --ignore-cd /bootmgr 
map () (hd0) 
map (hd0) () 
map --rehook 
find --set-root --ignore-floppies --ignore-cd /bootmgr 
chainloader /bootmgr 
 
title 【2】Start WinXP/2003 
find --set-root --ignore-floppies --ignore-cd /ntldr 
map () (hd0) 
map (hd0) () 
map --rehook 
find --set-root --ignore-floppies --ignore-cd /ntldr 
chainloader /ntldr 
 
然后自己做个引导界面之类的吧 也就是MESSAGE这个文件,放到C盘根目录! |   
 
 
 
 |