home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Troubleshooting Netware Systems
/
CSTRIAL0196.BIN
/
attach
/
pcc
/
v08n03
/
netwrk.exe
/
WDPOST.ZIP
/
WDPOST.TAR
/
wdpost.dir
/
super
/
hinstall.bat
next >
Wrap
DOS Batch File
|
1988-06-21
|
1KB
|
43 lines
echo=off
cls
echo .
echo == HINSTALL.BAT ==
echo This program copies all the drivers from this diskette
echo (the "source-drive") to a new subdirectory named "WDPLUS"
echo that it creates on a hard disk (or floppy disk) in
echo another drive (the "destination-drive").
echo .
echo The correct format for executing this installation program is:
echo .
echo HINSTALL source-drive destination-drive [Enter]
echo .
echo The source-drive that you selected is %1
echo The destination-drive that you selected is %2
echo .
echo If you have not entered the command correctly, terminate this
echo program now by pressing CTRL+BREAK.
echo .
pause
echo Making directories ...
md %2\wdplus
md %2\wdplus\netwar20
md %2\wdplus\netwar21
md %2\wdplus\netbios
md %2\wdplus\3plus
md %2\wdplus\pcnfs
md %2\wdplus\decnet
md %2\wdplus\unix53
md %2\wdplus\diag
echo Copying files from driver disk ...
copy %1\*.* %2\wdplus
copy %1\netwar20\*.* %2\wdplus\netwar20
copy %1\netwar21\*.* %2\wdplus\netwar21
copy %1\netbios\*.* %2\wdplus\netbios
copy %1\3plus\*.* %2\wdplus\3plus
copy %1\pcnfs\*.* %2\wdplus\pcnfs
copy %1\decnet\*.* %2\wdplus\decnet
copy %1\unix53\*.* %2\wdplus\unix53
copy %1\diag\*.* %2\wdplus\diag
echo .
echo End of HINSTALL.BAT -- driver disk installed on drive %2