请问我的错在哪里,那时可复选的,当我只选择“SATA/CD驱动支持”时正常。当我再选择“NTFS驱动支持”,也就时复选两个时,执行时,就只执行"NTFS驱动支持"所连接的命令,就跟单选一样。请问时哪里错了呢????
------------------------------------------------------------------------------------
下面是configp.mnu的内容:
........
; CheckOption=23,6,25,75=3=ffcc00, 启动纯DOS系统
; 15LoadItem=0,1,16= SATA/CD驱动支持
; 16Item=17= NTFS驱动支持
; 17Item=2= USB驱动支持
; block=0
; block=1
; block=2
; block=3
set config=GFA
; block=4
set config=GFB
; block=5
set config=GFC
; block=6
set config=GFD
; block=7
set config=GFE
; block=8
set config=GFF
; block=9
set config=GFG
; block=10
set config=GFH
; block=11
set config=GFI
; block=12
set config=GFJ
; block=13
set config=GFK
; block=14
set config=GFL
; block=15
set config=GFM
; block=16
set config=GFN
; block=17
set config=GFO
------------------------------------------------------------------------------------
下面是autoexe.bat的内容:
@echo off
IF %config%#==GFA# GOTO DOS1
IF %config%#==GFB# GOTO DOS2
IF %config%#==GFC# GOTO DOS3
IF %config%#==GFD# GOTO DOS4
IF %config%#==GFE# GOTO DOS5
IF %config%#==GFF# GOTO DOS6
IF %config%#==GFG# GOTO DOS7
IF %config%#==GFH# GOTO DOS8
IF %config%#==GFI# GOTO DOS9
IF %config%#==GFJ# GOTO DOS10
IF %config%#==GFK# GOTO DOS11
IF %config%#==GFL# GOTO DOS12
IF %config%#==GFM# GOTO DOS13
IF %config%#==GFN# GOTO DOS14
IF %config%#==GFO# GOTO DOS15
:DOS14
md c:\abc
goto ver
:DOS15
md c:\123
goto ver
:ver
ver
------------------------------------------------------------------------------------