rem config.sys
[menu]
menuitem=dospm, Pure MS-DOS Mode
menuitem=restore,Restore
menuitem=backup,Backup
menuitem=ghost,GHOST (manu)
menudefault=dospm,20
menucolor=7,0
[dospm]
[restore]
[backup]
[ghost]
--------------------
rem autoexec.bat
@ECHO OFF
IF "%config%"=="dospm" GOTO dospm
IF "%config%"=="restore" GOTO restore
IF "%config%"=="backup" GOTO backup
IF "%config%"=="ghost" GOTO ghost
GOTO QUIT
:dospm
cls
goto quit
:restore
if exist c:\huifu.bat huifu.bat
GOTO QUIT
:backup
if exist c:\beifen.bat beifen.bat
GOTO QUIT
:ghost
ghost.exe
GOTO QUIT
:QUIT