Article ID: 101884
Article Last Modified on 11/19/1999
Results Errorlevel ------------------------------------------ DoubleSpace compressed drive 1 DBLSPACE.BIN is not loaded 0 Invalid drive 0 Other errors 0NOTE: ISDBL.COM tests the current drive if no drive is specified on the command line.
A 100
MOV AX,2901
MOV SI,81
MOV DI,012D
INT 21
MOV DL,[012D]
DEC DL
JGE 0119
MOV AH,19
INT 21
MOV DL,AL
MOV AX,4A11
MOV BX,1
INT 2F
MOV AX,4C00
AND BL,80
JZ 012B
INC AL
INT 21
RCX
AE
N ISDBL.COM
W
Q
NOTE: You MUST press the ENTER key twice after the last "INT 21" line
and once after the "Q" at the end of the Debug script.
DEBUG < ISDBL.SRC
Debug reads and follows the instructions in the ISDBL.SRC file. It is
recommended that you do not use this command from within Windows or
when other programs are running. If ISDBL.SRC contains an error, Debug
probably is not told when to quit; therefore, you will have to restart
your system. Debug may even be instructed to cause your system to stop
responding (hang). If this happens, restart your system and examine
ISDBL.SRC for accuracy.
<nnnn>:012B INT 21
<nnnn>:012D
-RCX
CX 0000
:AE
-N ISDBL.COM
-W
Writing 000AE bytes
-Q
@ECHO OFF REM This batch file uses ISDB.COM to test a drive to see if it REM was compressed with DoubleSpace. REM REM DBLTEST.BAT assumes that ISDBL.COM in in the current REM directory or a directory on the MS-DOS Path. REM REM The syntax for running this batch file is: REM DBLTEST <drive>: REM REM where <drive>: is the name of the drive to test, for example C: REM If no drive is specified, the current drive is tested. REM ISDBL %1 IF NOT ERRORLEVEL 1 GOTO FAILURE ECHO The drive %1 is a DoubleSpace compressed drive. GOTO END :FAILURE ECHO The drive %1 is not a DoubleSpace compressed drive. :END
Additional query words: 6.00 6.20
Keywords: KB101884