[紧急求助]为什么我按 http://www.wuyou.com/bootcd/menu/index.html 所提供的方法制作的启动盘,我的操作仔细查了几遍,感觉都没错.刻出光盘后却引导失败,出现了这样一段话.
ERROR:CD boot fail
Your CD is not WuYou_BOOTCD or Your Driver is not supported Press any key to restart the Computer or Press "ctrl+c" to exit
求各位大侠指点迷津.先谢过了.
看看这个chcdrom.BAT!
您就明白了!
chcdrom.BAT 如下:
:LOOP
IF %CDROM%==%1 GOTO CD
shift
GOTO LOOP
:CD
IF %1==Z GOTO ERROR
shift
CDA %1 > NUL
IF errorlevel 1 GOTO CD
IF NOT EXIST %1:\BOOT\TW.EXE GOTO CD
SET CDROM=%1
GOTO END
:ERROR
CLS
ECHO.
ECHO.
ECHO.
ECHO.
ECHO. ERROR: CD boot fail
ECHO.
ECHO Your CD is not WuYou_BOOTCD or Your Driver is not supported .
ECHO.
ECHO Press any key to restart the computer or Press "Ctrl+C" to exit .
ECHO.
ECHO.
ECHO.
PAUSE > NUL
RESTART.COM
GOTO END
:END