home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Final Windows Shareware CD
/
_.img
/
winshare
/
general
/
taskm11
/
install.bat
< prev
next >
Wrap
DOS Batch File
|
1993-03-28
|
878b
|
51 lines
@echo off
cls
echo Intalling "Task Master"
echo.
echo.
if not %1z == z goto yep
echo This will copy the files in the A: disk drive to a directory
echo named \TM on drive C:.
echo.
echo If you wish to install from a drive other than A: or to a different
echo destination drive use:
echo INSTALL [form drive letter:] [to drive letter:]
echo.
echo Do you want to continue? [No]
confirm
if errorlevel == 1 goto :yep
goto :skipit
:yep
if %2z == z goto :nodr
%2
goto mkdirect
:nodr
cls
echo.
echo Will install "Task Master" on C:\TM correct? (Y or N)
confirm
if not errorlevel == 1 goto :skipit
c:
:mkdirect
if exist tm\taskm.exe goto :gotit
cd \
md tm
cd \tm
:gotit
cls
echo.
echo.
echo Copying "Task Master," one moment please ...
if %1z == z goto usea
copy %1*.*
goto done
:usea
copy a:*.*
:done
tm_1st
:skipit