|
3#

楼主 |
发表于 2009-4-28 16:35:44
|
只看该作者
谢谢楼上的指点!
现在一个奇怪的问题,我将红叶的原菜单加上几条(原来是5个选择,我加到9-10个选择),竟然不能启动GHOST,而是退回到 那个中文帮助界面。等会再试一下。
下面是,是原来的(一字未动):
------
@echo off
tw /q>nul
cls
echo.
ECHO Ghost Menu - Choose Language
echo.
ECHO ========================================
ECHO C. Run Ghost Guidance in Chinese
echo.
ECHO E. Run Ghost Guidance in English
ECHO -----------------------------------------
ECHO Q. Quit
echo.
choice /C:CEQ Please Select:
if errorlevel 3 goto end
if errorlevel 2 goto en_start
if errorlevel 1 goto cn_start
:cn_start
tw /ns>nul
cls
echo.
ECHO Ghost 自定义映像分卷选择程序
echo.
ECHO 深山红叶制作
ECHO ========================================
ECHO 1. 按 690MB 拆分映像(适合 700MB 光盘刻录)
ECHO 2. 按 640MB 拆分映像(适合 650MB 光盘刻录)
ECHO -----------------------------------------
ECHO 3. 最大压缩比运行 GHOST
ECHO 4. 直接运行 GHOST(无参数)
ECHO 5. 完全 GHOST(按扇区无条件克隆,带 -ia 参数)
ECHO -----------------------------------------
ECHO 0. 放弃并退出
echo.
choice /C:123450 请选择:
if errorlevel 6 goto cn_end
if errorlevel 5 goto cn_ib
if errorlevel 4 goto cn_nul
if errorlevel 3 goto cn_z9
if errorlevel 2 goto cn_650
if errorlevel 1 goto cn_700
:cn_700
tw /q
cls
\ghost\GHOST.EXE -split=690 -Z9
goto cn_start
:cn_650
tw /q
cls
\ghost\GHOST.EXE -split=640 -Z9
goto cn_start
:cn_z9
tw /q
cls
\ghost\GHOST.EXE -Z9
goto cn_start
:cn_nul
tw /q
cls
\ghost\GHOST.EXE
goto cn_start
:cn_ib
tw /q
cls
\ghost\GHOST.EXE -ia
goto cn_start
:cn_end
tw /q
cls
goto end
:en_start
tw /q>nul
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 "-ia"
ECHO -----------------------------------------
ECHO 0. Quit
echo.
choice /C:123450 Make our choice,please:
if errorlevel 6 goto end
if errorlevel 5 goto default3
if errorlevel 4 goto default2
if errorlevel 3 goto default
if errorlevel 2 goto 650
if errorlevel 1 goto 700
:700
\ghost\GHOST.EXE -split=690 -Z9
goto en_start
:650
\ghost\GHOST.EXE -split=640 -Z9
goto en_start
:default
\ghost\GHOST.EXE -Z9
goto en_start
:default2
\ghost\GHOST.EXE
goto en_start
:default3
\ghost\GHOST.EXE -ia
goto en_start
:end
cls
call a:\h.bat
-------------------- |
|