我看了你的PM805.IMG,问题是,其中的TOOLS.EX_ 不是自解压文件!请看:
autoexec.bat文件:
cls
xmsdsk 6000 x: /y >nul
copy command.com x:\ >nul
path=x:\
set comspec=x:\command.com
:ERROR
IF EXIST tools.ex_ GOTO EXT
echo ERROR: tools.ex_ not found.
echo SORRY: Be will not use the disk.
echo.
GOTO QUIT
:EXT
cls
echo Preparing to start your computer.
echo This may take a few minutes. Please wait...
copy tools.ex_ x:\tools.zip >nul
copy unzip.exe x:\ >nul
x:
cd\
unzip -d tools.zip >nul
del tools.zip >nul
doskey >nul
cls
m.bat
:QUIT
它是ZIP文件噢!所以启动不了!
若TOOLS.EX_改成自解压文件,必需修改autoexec.bat,才能启动!
autoexec.bat 改成这样:
@ECHO OFF
REM Super SOS DISK 2005.12.30
REM PM 8.05t
REM http://doshome.com
REM
SET DIRCMD=/O:N
cls
xmsdsk 6000 x: /y >nul
copy command.com x:\ >nul
path=x:\
set comspec=x:\command.com
:ERROR
IF EXIST tools.ex_ GOTO EXT
echo ERROR: tools.ex_ not found.
echo SORRY: Be will not use the disk.
echo.
GOTO QUIT
:EXT
cls
echo Preparing to start your computer.
echo This may take a few minutes. Please wait...
copy tools.ex_ x:\tools.exe >nul
x:
cd\
tools.exe >nul
del tools.exe >nul
doskey >nul
cls
m.bat
:QUIT