CODE: [Copy to clipboard]
@echo off
cls
echo 欢迎使用::零点网吧磁盘维护系统::
echo.
echo 请选择下列选项进行操作.
echo.
echo ***************1.全盘******************
echo.
echo ***************2.网络******************
echo.
echo ***************3.备份******************
echo.
echo ***************4.还原******************
echo.
:start
choice /C:1234 请输入您的选项
if errorlevel == 4 goto 4
if errorlevel == 3 goto 3
if errorlevel == 2 goto 2
if errorlevel == 1 goto 1
echo.
echo 您并未做任何选择,请重新输入您的选择。
goto start
:1
call c:\sys\copysys.bat
goto end
:2
call c:\sys\netsys.bat
goto end
:3
call c:\sys\bf.bat
goto end
:4
call c:\sys\hy.bat
goto end
:end