echo off if "%1" == "" goto def if "%1" == "go" goto go if exist MTE.EXE goto xinst :def echo !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! echo . echo You must be "logged" onto the MTE disk echo and specify which drive to install onto. echo For example, to install MTE into drive C: echo from drive A: Type: echo . echo A:[cr] echo . echo then echo . echo INSTALL C:[CR] echo . echo !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! goto end :xinst if "%1" == "a:" goto app if "%1" == "A:" goto app if "%1" == "b:" goto app if "%1" == "B:" goto app if "%1" == "c:" goto app if "%1" == "C:" goto app if "%1" == "d:" goto app if "%1" == "D:" goto app if "%1" == "e:" goto app if "%1" == "E:" goto app if "%1" == "f:" goto app if "%1" == "F:" goto app if "%1" == "g:" goto app if "%1" == "G:" goto app if "%1" == "h:" goto app if "%1" == "H:" goto app goto def :app echo Installing MTE into %1\MTE md %1\MTE >nul md %1\MTE\SEND >nul md %1\MTE\RECV >nul copy *.* %1\MTE >nul %1 cd %1\MTE echo . echo . echo MTE is Now Installed in %1\MTE echo . echo TYPE READ.ME (at the DOS Prompt) for the latest MTE updates echo and features too new to be included in the MTE Users Manual. echo . echo Press ENTER to Start MTE or Ctrl-C to Cancel echo . pause install go :go mte :end