|
|
发表于 2005-8-2 09:15:04
|
显示全部楼层
[注意]深山红叶启动光盘(WinPE&PE Builder)讨论专帖(违令者必删)
[这个贴子最后由peak8在 2005/08/02 12:43pm 第 4 次编辑]
修改后的 ghost.bat (英文提示,但也一看便知)
修改了其中的一些语句,测试了一下,没错误了,大家可以试试看
@echo off
%cdrom%:
cd \
cd tools
:start
cls
echo.
ECHO Ghost Guidance(produced by yll)
echo.
ECHO ========================================
ECHO 1. Run Ghost with switch "-split=690"
ECHO 2. Run Ghost with switch "-split=640"
ECHO -----------------------------------------
ECHO 3. Run Ghost with switch "-Z9"
ECHO 4. Run Ghost without any switches (default)
ECHO 5. Run Ghost with switch "-ib"
ECHO -----------------------------------------
ECHO 0. Quit
echo.
choice /C:012345 Make our choice,please:
if errorlevel 6 goto default3
if errorlevel 5 goto default2
if errorlevel 4 goto default
if errorlevel 3 goto 650
if errorlevel 2 goto 700
if errorlevel 1 goto end
:700
GHOST_.EXE -split=690 -Z9
goto end
:650
GHOST_.EXE -split=640 -Z9
goto end
:default
GHOST_.EXE -Z9
goto end
:default2
GHOST_.EXE
goto end
:default3
GHOST_.EXE -ib
goto end
:end
cls
exit
[UploadFile=GHOST_1122957663.rar] |
|