home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DOS/V Power Report 1999 July
/
VPR9907B.BIN
/
DRIVER
/
IBM
/
IER108WJ
/
ier1081.exe
/
MAKENW.BAT
< prev
next >
Wrap
DOS Batch File
|
1998-12-16
|
1KB
|
59 lines
echo off
cls
rem makedisk batch for NetWare files.
rem created 5/6/98
rem last modified 12/16/98
rem minimum requirements MSDOS 6.22 or NT 3.51 or Window95 or newer
rem Check that source (%1) and destination (%2) are supplied
if "%1" == "" goto USAGE
if "%2" == "" goto USAGE
rem Echo what we are about to do
echo This batch file will copy the NetWare files from %1 to %2
echo press CTRL-C if this is NOT correct, otherwise,
pause
cls
echo.
echo Copying NetWare files from %1 to %2
echo.
:makedirs
md %2\DOS
md %2\NWSERVER
md %2\INFO
:copyfile
xcopy %1\D100DISK %2\
xcopy %1\README.BAT %2\
copy %1\READMENW.LST %2\README.LST
xcopy %1\MICROSFT.LST %2\
xcopy %1\NOVELL.LST %2\
xcopy %1\OTHER.LST %2\
xcopy %1\SETUP.EXE %2\
xcopy %1\FILES.TXT %2\
xcopy %1\NWSERVER\*.* %2\NWSERVER /S /E /V
xcopy %1\DOS\*.* %2\DOS /S /E /V
xcopy %1\INFO\*.* %2\INFO /S /E /V
cls
echo.
echo.
echo PLEASE LABEL YOUR DISKETTE
echo Intel(R) PRO/100+ LAN Adapter Configuration
echo and NetWare Drivers Diskette Release (release # from your CD label)
goto END
:usage
echo %0 [source] [destination]
echo
echo where [source] is the drive letter with the colon and path of the source files (such as D:)
echo and where [destination] is the drive letter with the colon (such as A:)
echo [destination] is also expected to be a formatted disk.
echo
echo for example:
echo %0 D: A:
goto END
:END