|
我按网上的教程做了个IMG 可以正确引导进去,问题是我想要先跳到选择界面 可是现在是直接进GHOST,怎么样可以让它先停在菜单上让我选择好后在进
这个是AUTOEXEC.bat
@echo off
set EXPAND=YES
set temp=c:\
set tmp=c:\
mouse > NUL
cls
xmsdsk 4096 /y > NUL
cls
findramd >nul
path=%RAMDRIVE%\;a:\
123.bat
CONFIG.SYS
device=himem.sys /testmem:off
device=emm386.exe noems novcpi i=b000-b7ff
files=10
buffers=10
dos=high,umb
stacks=9,256
lastdrive=z
123.bat
@echo off
echo Copyright
tw >nul
cls
choice /c:y /n /t:y,1 >nul
copy a:\findcd.exe %RAMDRIVE%\ >nul
cls
@echo off
echo.
echo ☆※※※※※※※☆☆※※※※※※※※☆
echo ※ ※
echo ☆※※※※※※※☆☆※※※※※※※※☆
echo.
echo →☆→☆→☆→☆→☆→☆→☆→☆→
echo ※ ①按“1”键,进入单机GHOST模式 ※
echo.
echo ※ ②按“2”键,全自动一键备份C盘 ※
echo.
echo ※ ③按“3”键,全自动一键恢复C盘 ※
echo.
echo ※ ④按“4”键,进入网刻GHOST模式 ※
echo.
echo ※ ⑤按“5”键,全盘对拷(慎重使用) ※
echo.
echo →☆→☆→☆→☆→☆→☆→☆→☆→
echo.
echo
echo.
choice/c:12345 /t:1,30 ☆请在30秒内做好选择,否则将自动启动GHOST系统☆
if errorlevel 5 goto duikao
if errorlevel 4 goto network
if errorlevel 3 goto Rept
if errorlevel 2 goto back
if errorlevel 1 goto ghost
:ghost
cls
call ghost.bat
goto end
:back
cls
call back.bat
goto end
:Rept
cls
call Rept.bat
goto end
:network
cls
call network.bat
goto end
:duikao
cls
call duikao.bat
goto end |
|