; ! WW ! Install Batch File To RAM
; by Carsten Raufu, 02-Feb-1992
; 1991 by ! WIZARD WORKS !
; - with this batch file you can copy the files/commands
;   needed for ! WW ! program batch files to RAM:
; - this is quite helpful for 1 disk drive Amigas
; - copy this batchfile to RAM: or SYS: and execute it...

echo "Trying to create RAM:newc ... "
if not exists RAM:newc
   makedir  RAM:newc
   echo "O.K."
   else
   echo "RAM:newc already existed"
endif

echo "Trying to copy ... "
echo "C:IconX ... "
   copy   C:IconX     RAM:newc
   echo "O.K."

echo "C:Run ... "
   copy   C:Run       RAM:newc
   echo "O.K."

echo "C:Execute ... "
   copy   C:Execute   RAM:newc
   echo "O.K."

path RAM:newc add

