home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 December
/
simtel1292_SIMTEL_1292_Walnut_Creek.iso
/
msdos
/
sysutl
/
jobs32.arc
/
GO.BAT
< prev
next >
Wrap
DOS Batch File
|
1988-07-24
|
2KB
|
47 lines
echo off
if x%1 == x goto drs
if x%2 == x goto drs
cls
echo.
echo.
echo. Welcome to JOBS
echo. JOBS - Job Organization and Backup System
echo.
echo. The consummate disk manager!
echo.
echo. This simple batch file will un-archive the necessary files
echo. and place them on your hard disk. It will create a directory
echo. on drive %2 called \JOBS-SW. JOBS' files will be copied to
echo this directory.
echo.
echo. After the files have been copied to the %2\JOBS-SW directory,
echo. this batch operation will turn control over to JOBS-SW.EXE.
echo. JOBS' easy install procedure will guide you to a complete
echo. installation.
echo.
echo. Installing JOBS' on your hard disk can require up to 700k of
echo. free disk space. Because this simple .bat file is incapable
echo. of detecting a 'disk full' error, please be sure drive %2
echo. has 700k of empty space before pressing 'Y'.
bask "\n\n Press 'Y' to continue, 'N' to cancel this batch file. (Y/N) "
if not errorlevel 1 goto quit
cls
echo on
%2
cd \
md jobs-sw
cd \jobs-sw
%1
copy go2.bat %2\jobs-sw
%2\jobs-sw\go2 %1 %2
:drs
echo.
echo. This batch file will install JOBS-SW on your hard disk, but
echo. you must specify both the drive you are installing from and
echo. the drive you wish to install JOBS on. Example:
bask /d "\n A>GO A: C:<Enter>\n\n Where A> is the DOS prompt and <Enter> = press Enter key.\n\n"
echo. This command would install JOBS-SW on drive C: from drive A:.
echo.
echo. Notice that each drive letter must be followed by a colon.
:quit