home *** CD-ROM | disk | FTP | other *** search
- ;(set INST
- ;
- ; (askoptions
- ; (prompt "\nBitte wählen Sie Ihre Installation")
- ; (help @install-help)
- ; (choices "Installation" "CDROM anmelden")
- ; (default 1)
- ; )
- ;)
-
- ;****** Installation
-
- ;(if (= (BITAND INST 1) 1)
- (
- (askdisk
- (prompt "SCSI Installationsdiskette einlegen")
- (help @askdisk-help)
- (dest "SCSI-TOOLS-Install")
- (assigns) ;debug
- )
-
- (set instsource "SCSI-TOOLS-Install:")
-
- ;****** SCSI TOOLS kopieren
-
- (set @default-dest
- (askdir
- (prompt "Geben Sie den Pfad ein, in dem das SCSI-TOOLS Verzeichnis erzeugt werden soll")
- (help @askdir-help)
- (default @default-dest)
- )
- )
-
- (makeassign "INSTSCSI" @default-dest)
-
- (makedir "INSTSCSI:SCSI-TOOLS"
- (prompt "Das Verzeichniss SCSI-TOOLS wird erzeugt")
- (help @makedir-help)
- (infos)
- (confirm)
- )
-
- (makeassign "INSTDRW" "INSTSCSI:SCSI-TOOLS")
-
- (set scsi1 (expandpath "INSTSCSI:SCSI-TOOLS"))
-
- (copyfiles
- (source (tackon instsource "scsitools"))
- (dest scsi1)
- (all)
- (infos)
- )
-
- ;****** HOTHELP Dateien kopieren
-
- (if (exists "libs:hothelp.library")
- (transcript "HotHelp.Library already present")
- (copyfiles
- (source (tackon instsource "hh/libs"))
- (dest "libs:")
- (all)
- )
- )
-
- (if (exists "l:hothelphandler")
- (transcript "HotHelpHandler already present")
- (copyfiles
- (source (tackon instsource "hh/l"))
- (dest "l:")
- (all)
- )
- )
-
- (if (exists "c:hotkeyhelp")
- (transcript "HotKeyHelp already present")
- (copyfiles
- (source (tackon instsource "hh/c"))
- (dest "c:")
- (all)
- )
- )
-
- (if (exists "LOCALE:" (noreq))
- (if (exists "Locale:catalogs/deutsch/hothelplib.catalog")
- (transcript "HotHelp Catalogs already present")
- (copyfiles
- (source "SCSI-TOOLS-Install:hh")
- (dest "locale:catalogs/deutsch")
- (pattern "#?.Catalog")
- )
- )
- )
-
- (if (exists "HOTHELP:" (noreq))
- (
- (transcript "HOTHELP already present\ncopy only Projekts")
- (copyfiles
- (source (cat instsource "hhtexte/projekte"))
- (dest "HOTHELP:Projekte")
- (all)
- )
- )
- ( (set hhinst
- (askdir
- (prompt "In welchem Verzeichnis soll HOTHELP installiert werden?")
- (help @askdir-help)
- (default @default-dest)
- (disk)
- )
- )
-
- (set hhinst (cat hhinst "HOTHELP"))
-
- (makedir hhinst
- (prompt "Das Verzeichniss HOTHELP wird erzeugt")
- (help @makedir-help)
- (infos)
- (confirm)
- )
- (makeassign "HOTHELP" hhinst)
- (copyfiles
- (source (cat instsource "hhtexte"))
- (dest "HOTHELP:")
- (all)
- )
- (startup "HOTHELP"
- (prompt "Die für HotHelp notwendigen Änderungen am User-Startup werden durchgeführt")
- (help @startup-help)
- (command ("Assign HOTHELP: %s\nC:HotKeyHelp\n" hhinst))
- )
- (run "C:HotKeyHelp")
- )
- )
-
- ;****** Set TOOLTYPES
-
- (set devname 0)
- (if (> (getversion "b1230.device" (resident)) 1) (set devname "b1230.device"))
- (if (> (getversion "1230scsi.device" (resident)) 1) (set devname "\"1230scsi.device\""))
- (if (> (getversion "z3scsi.device" (resident)) 1) (set devname "z3scsi.device"))
- (if (> (getversion "cybscsi.device" (resident)) 1) (set devname "cybscsi.device"))
-
- (if (= devname 0)
- (set devname
- (askchoice
- (prompt "Es ist noch keine Hardware installiert!\nFür welchen Kontroller möchten Sie die Software einrichten?")
- (help @askchoice-help)
- (choices "Blizzard SCSI KIT" "CYBERSTORM SCSI KIT" "FASTLANE Z3")
- )
- )
- )
-
- ( if (= devname 0) (set devname "\"1230scsi.device\""))
- ( if (= devname 1) (set devname "cybscsi.device"))
- ( if (= devname 2) (set devname "z3scsi.device"))
-
- (tooltype
- (dest (tackon scsi1 "SCSIConfig2"))
- (settooltype "Device" devname)
- )
- (tooltype
- (dest (tackon scsi1 "UnitControl"))
- (settooltype "DEVICE" devname)
- )
- )
- ;)
- (makeassign "INSTSCSI")
- (makeassign "INSTDRW")