|
当U盘设置为第一启动设备
到U盘界面后选择安装win7
- title [04] 安装 Windows VISTA/WIN7/WIN2008 \n把WIN7安装文件解压缩到U盘根目录即可
- find --set-root /sources/boot.wim
- chainloader /bootmgr
- boot
复制代码
接着选择安装在C盘,复制文件,重启计算机
再从U盘启动,选择从硬盘上的win7启动
- title [10] 从硬盘启动WINDOWS VISTA/2008/WIN7
- find --set-root --devices=h /bootmgr if not exist /sources/boot.wim
- chainloader /bootmgr
- boot
复制代码
接着就出现下面的错误提示:windows安装程序无法将windows配置为此计算机的硬件上运行
如果硬盘是第一启动设备,开机按快捷键从U盘启动(比如F8)
然后第二次启动直接从硬盘启动,则不会出现此bug
这是我的grub4dos引导菜单- debug off
- color white/blue blue/yellow yellow/red 10
- graphicsmode -1 640:800 480:600 24:32
- if exist ()/BOOT/GRUB/menu.hex || find --set-root /BOOT/GRUB/menu.hex
- font /BOOT/GRUB/menu.hex
- timeout 30
- default 0
- title [01] 直接启动0PE \n直接进入0PE
- if exist ()/BOOT/GRUB/0PE.0PE || find --set-root /BOOT/GRUB/0PE.0PE
- configfile ()/BOOT/GRUB/0PE.0PE
- title [02] 启动0PE原始菜单 \n接下来3秒内按回车则直接启动0PE\n按ESC进入Grub4dos命令行\n按空格将复制0PE.ISO到内存
- if exist ()/BOOT/GRUB/MENU.0PE || find --set-root /BOOT/GRUB/MENU.0PE
- configfile ()/BOOT/GRUB/MENU.0PE
- title [03] 一步安装原版XP \n将WIN$.ISO放在任意分区根目录
- if exist ()/BOOT/GRUB/0PE.0PE || find --set-root /BOOT/GRUB/0PE.0PE
- command RUN ()/BOOT/GRUB/0PE.0PE 5
- title [04] 安装 Windows VISTA/WIN7/WIN2008 \n把WIN7安装文件解压缩到U盘根目录即可
- find --set-root /sources/boot.wim
- chainloader /bootmgr
- boot
- title [05] Windows密码破解 \n可以破解Windows 2000/XP/VISTA/WIN7/WIN7 X64
- if exist ()/BOOT/IMGS/PASSWORD.LZMA || find --set-root /BOOT/IMGS/PASSWORD.LZMA
- map --mem /BOOT/IMGS/PASSWORD.LZMA (fd0)
- map --hook
- chainloader (fd0)+1
- rootnoverify (fd0)
- title [06] Diskgenius磁盘分区 \n按F6进行快速分区
- if exist ()/BOOT/IMGS/DG.IMG || find --set-root /BOOT/IMGS/DG.lzma
- map --mem /BOOT/IMGS/DG.lzma (fd0)
- map --hook
- chainloader (fd0)+1
- rootnoverify (fd0)
- title [07] Memtest内存测试 \nMemtest86+ 4.20
- if exist ()/BOOT/IMGS/MEMTEST.GZ || find --set-root /BOOT/IMGS/MEMTEST.GZ
- map --mem /BOOT/IMGS/MEMTEST.GZ (fd0)
- map --hook
- chainloader (fd0)+1
- rootnoverify (fd0)
- title [08] MHDD \nMHDD 4.6
- if exist ()/BOOT/IMGS/MHDD.ISO || find --set-root /BOOT/IMGS/MHDD.ISO
- map /BOOT/IMGS/MHDD.ISO (0xff) || map --mem /BOOT/IMGS/MHDD.ISO (0xff)
- map --hook
- chainloader (0xff)
- title [09] WIN2K3PE \n我心如水
- if exist ()/BOOT/IMGS/2K3PE.ISO || find --set-root /BOOT/IMGS/2K3PE.ISO
- map /BOOT/IMGS/2K3PE.ISO (0xff) || map --mem /BOOT/IMGS/2K3PE.ISO (0xff)
- map --hook
- chainloader (0xff)
- title [10] 从硬盘启动WINDOWS VISTA/2008/WIN7
- find --set-root --devices=h /bootmgr if not exist /sources/boot.wim
- chainloader /bootmgr
- boot
- title [11] 从硬盘启动WINDOWS NT/2000/XP/2003
- find --set-root --ignore-floppies --ignore-cd /ntldr || find --set-root --devices=h /bootmgr if not exist /sources/boot.wim
- map () (hd0)
- map (hd0) ()
- map --rehook
- find --set-root --ignore-floppies --ignore-cd /ntldr || find --set-root --devices=h /bootmgr if not exist /sources/boot.wim
- chainloader /ntldr || chainloader /bootmgr
复制代码
[ 本帖最后由 peter1123 于 2013-2-6 22:30 编辑 ] |
|