; Install script for F-Finder V1.10
; F-Finder V1.10 (c) 1992 Markus Aalto

FAILAT 20

echo "F-Finder V1.10B Install-script"
ask "Do you want to install F-Finder to c: directory (y/n)?"
if NOT WARN then
	endcli >NIL:
endif

Copy F-Finder to C:F-Finder QUIET

ask "Do you want to install QuickFileManager to c: directory (y/n)?"
if WARN then
	Copy QFM/QuickFileManager to C:QuickFileManager QUIET
	echo "QuickFileManager copied! Please assign QUICKFILES: before using it!"

	ask "Do you also want to copy QuickFileManager icon (y/n)?"
	if WARN
		Copy QFM/QuickFileManager.info to C:QuickFileManager.info QUIET
	endif
endif

ask "Do you want to install regular F-Finder icon (y/n)?"
if WARN
	Copy F-Finder.info to C:F-Finder.info QUIET
else
	ask "Do you want to install new 2.x look icon (y/n)?"
	if WARN
		Copy Icons/F-Finder_2.x.info to C:F-Finder.info QUIET
	else
		ask "Do you want to install new 1.x look icon (y/n)?"
		if WARN
			Copy Icons/F-Finder_1.x.info to C:F-Finder.info QUIET
		endif
	endif
endif

echo "Operation complete!"

endcli

