@ECHO off cls REM Version 1.0 created by Simon Costello on 4 May 2004. REM Note: V1.0 will only copy to C:\natmap folder. :start ECHO This program will copy the contents of your NATMAP Raster CDs to your ECHO hard drive. ECHO It will create a folder on your C: drive called "natmap" and then copy ECHO the contents of both CDs into that folder so they can be read by the ECHO NATMAP Raster Viewer. If the folder already exists it will be overwritten. ECHO You need at least 1.3Gb of free space on your hard drive to install the ECHO entire contents of the CDs. ECHO If you have an old version of the Viewer, uninstall it first before running this program. ECHO Use Add/Remove Programs in the Control Panel to remove any old versions of the ECHO AUSLIG GEODATA RASTER VIEWER or NATMAP RASTER VIEWER. c: mkdir natmap set diskdrive= set /p diskdrive=Type the letter of your CD drive (D,E, or X to exit). if '%diskdrive%'=='X' goto end if '%diskdrive%'=='x' goto end if '%diskdrive%'=='d' goto load if '%diskdrive%'=='D' goto load if '%diskdrive%'=='E' goto load if '%diskdrive%'=='e' goto load ECHO "%diskdrive%" is not a valid disk drive please try again ECHO. goto start :load set diskdrive=%diskdrive%: ECHO Insert CD1 into your CD drive. XCOPY %diskdrive%\ c:\natmap\ /s /e /w /y ECHO Finished copying CD1. Insert CD2. XCOPY %diskdrive%\Rasters\* C:\natmap\Rasters\* /s /e /w /y ECHO Finished copying CD2. ECHO Running Setup. This will install the Viewer and use the maps ECHO you have copied onto your hard drive. c:\natmap\setup.exe goto end :end ECHO Exiting NATMAP Raster Viewer Hard Drive Installer...