home *** CD-ROM | disk | FTP | other *** search
- echo off
- echo *****************************************************************
- echo * *
- echo * NeuralWorks Installation Procedure *
- echo * *
- if %2test==test goto Not2a
- echo * Installing files from %1 to %2\nw2v40. *
- echo * *
- echo * If the current source (%1) and destination (%2) drives are *
- goto Next
- :Not2a
- if %1test==test goto Not1a
- echo * Installing files from A: to %1\nw2v40. *
- echo * *
- echo * If the current source (A:) and destination (%1) drives are *
- goto Next
- :Not1a
- echo * Installing files from A: to C:\nw2v40. *
- echo * *
- echo * If the current source (A:) and destination (C:) drives are *
- :Next
- echo * NOT acceptable to you, press ^C (CNTRL/C) to quit. *
- echo * *
- echo * If you would like some other source or destination drive, *
- echo * use: *
- echo * s:\hard d: *
- echo * --- or --- *
- echo * s:\hard s: d: *
- echo * *
- echo * where s: is the source drive (":" is required) *
- echo * and d: is the destination drive. *
- echo * *
- echo * Repeat this process for each disk you have been supplied *
- echo * with. (This procedure uses XCOPY to copy files and create *
- echo * the required sub-directories.) *
- echo * *
- echo *****************************************************************
- pause Hit any key to continue or ^C to quit
- if %2test==test goto Not2b
- if NOT EXIST %2\nw2v40\*.* mkdir %2\nw2v40
- xcopy %1\ %2\nw2v40\ /s /e
- goto Done
- :Not2b
- if %1test==test goto Not1b
- if NOT EXIST %1\nw2v40\*.* mkdir %1\nw2v40
- xcopy A:\ %1\nw2v40\ /s /e
- goto Done
- :Not1b
- if NOT EXIST C:\nw2v40\*.* mkdir C:\nw2v40
- xcopy A:\ C:\nw2v40\ /s /e
- :Done
-