.Key drive,directory
; **** This batch file will copy the complete ACQUISITION system 	****
; **** To any other device (eg. hard disk, ram etc.) , providing there  ****
; **** is enough space on that device the system will be copied 	****
; **** Make sure that you boot with your hard disk boot disk and the	****
; **** Acquisition FILE disk is in drive 0 (DF0:)			****
; **** To execute this batch file type                                  ****
; 	EXECUTE df0:utilities/copy_acquisition <drive> <directory>
; **** For example if you had a hard disk with the name of DH0: and you ****
; **** wanted the Acquisition system to be copied to a directory on the ****
; **** hard disk called  "ACQUISITION" then you would type in:
;    EXECUTE DF0:UTILITIES/COPY_ACQUISITION DH0: ACQUISITION

ECHO "MAKING DIRECTORIES ON <drive><directory>" 

; *** First see if the destination directory exists

echo "on <drive><directory>"

IF NOT EXISTS <drive><directory>
; *** directory does not exist so create it and copy an icon for it.
	MAKEDIR <drive><directory>
	CD <drive><directory>
	COPY "Acqui File V1.313:utilities.info" /<directory>.info
ENDIF
CD <drive><directory>
; *** now check for and if neccessey make the esntial directories
IF NOT EXISTS utilities
	MAKEDIR utilities
ENDIF
IF NOT EXISTS userdata
	MAKEDIR userdata
ENDIF
IF NOT EXISTS work
	MAKEDIR work
ENDIF
IF NOT EXISTS icon
	MAKEDIR prog
ENDIF
IF NOT EXISTS prog
	MAKEDIR prog
ENDIF
IF NOT EXISTS a_pics
	MAKEDIR a_pics
ENDIF
IF NOT EXISTS icon
	MAKEDIR icon
ENDIF

; *** now copy all files from the FILE disk to your destination disk.

ECHO "coping infomation"

copy "ACQUI FILE V1.313:#?" ""
copy "ACQUI FILE V1.313:utilities/#?" utilities
copy "ACQUI FILE V1.313:A_PICS" a_pics all

; *** now copy the contents of the make disk

ECHO "Place make disk in drive"

copy "ACQUI MAKE V1.313:pasting#?" ""
copy "ACQUI MAKE V1.313:creating#?" ""
copy "ACQUI MAKE V1.313:bridging#?" ""
copy "ACQUI MAKE V1.313:A_PICS" a_pics all
copy "ACQUI MAKE V1.313:userdata" userdata
copy "ACQUI MAKE V1.313:prog" prog
copy "ACQUI MAKE V1.313:icon" icon
copy "ACQUI MAKE V1.313:work" work
copy "ACQUI MAKE V1.313:icon" icon
copy "ACQUI MAKE V1.313:c/screendump" c:

; *** now we must update the file "STARTUP-SEQUENCE" with the default assigns
; *** N.B. it is not absolutly necessary to do this as it be done manally
; *** Before running acquisition.
echo ""
echo ""
echo ""
echo "Now add the following commands to the STARTUP-SEQUENCE file,"
echo "which is in the S directory on your BOOT disk."
echo ""
echo "			STACK	8000"
echo "			ASSIGN	A_PICS: <file><directory>/a_pics"
echo "			ASSIGN	D: <file><directory>/userdata"
echo "			ASSIGN	I: <file><directory>/icon"
echo "			ASSIGN	W: <file><directory>/work"
echo "			ASSIGN	PROG: <file><directory>/prog"
