home *** CD-ROM | disk | FTP | other *** search
INSTALL Professional project | 1995-12-12 | 23.6 KB | 730 lines |
- @DefineProject
- @Name = "SHOWTIME PLUS"
- @Version ="Release 1295"
- @OutDrive = C
- @If(@StrLen("@GetEnv("GDC")") > 0)
- @SubDir = "@GetEnv("GDC")"
- @Else
- @SubDir = "\\SPEA\\SHOWTIME"
- @Endif // @StrLen, @GetEnv
- @Requires @HardDisk
- @Immediate = 1
- @EndProject
- @DefineVars @QString @NextName = "@Name" @EndVars
-
- @If(@Platform==1)
- @ScrHead(1, M, 0, 63, "$062@Name $063@Version")
- @ElseIf(@Platform==3)
- @BackgroundMode(3, @RGB(0,0,127), @RGB(0,0,127))
- // @ScrHead("@Name @Version")
- @Endif // @Platform
-
- @If(@Platform == 1)
- @FileAttr("C:\\odd33ver.tpl", "r-s-h-")
- @Delete("C:\\odd33ver.tpl")
- @FileAttr("C:\\odd33set.tpl", "r-s-h-")
- @Delete("C:\\odd33set.tpl")
- @FileAttr("D:\\odd33ver.tpl", "r-s-h-")
- @Delete("D:\\odd33ver.tpl")
- @FileAttr("D:\\odd33set.tpl", "r-s-h-")
- @Delete("D:\\odd33set.tpl")
- @FileAttr("E:\\odd33ver.tpl", "r-s-h-")
- @Delete("E:\\odd33ver.tpl")
- @FileAttr("E:\\odd33set.tpl", "r-s-h-")
- @Delete("E:\\odd33set.tpl")
- @FileAttr("F:\\odd33ver.tpl", "r-s-h-")
- @Delete("F:\\odd33ver.tpl")
- @FileAttr("F:\\odd33set.tpl", "r-s-h-")
- @Delete("F:\\odd33set.tpl")
- @FileAttr("G:\\odd33ver.tpl", "r-s-h-")
- @Delete("G:\\odd33ver.tpl")
- @FileAttr("G:\\odd33set.tpl", "r-s-h-")
- @Delete("G:\\odd33set.tpl")
- @System ("getos.bat do it really")
-
- @If(@Exists("C:\\odd33ver.tpl") && @Exists("C:\\odd33set.tpl"))
- @DefineVars @QString @TmpStr = "C:" @EndVars
- @Goto DETECTOS2
-
- @ElseIf(@Exists("D:\\odd33ver.tpl") && @Exists("D:\\odd33set.tpl"))
- @DefineVars @QString @TmpStr = "D:" @EndVars
- @Goto DETECTOS2
-
- @ElseIf(@Exists("E:\\odd33ver.tpl") && @Exists("E:\\odd33set.tpl"))
- @DefineVars @QString @TmpStr = "E:" @EndVars
- @Goto DETECTOS2
-
- @ElseIf(@Exists("F:\\odd33ver.tpl") && @Exists("F:\\odd33set.tpl"))
- @DefineVars @QString @TmpStr = "F:" @EndVars
- @Goto DETECTOS2
-
- @ElseIf(@Exists("G:\\odd33ver.tpl") && @Exists("G:\\odd33set.tpl"))
- @DefineVars @QString @TmpStr = "G:" @EndVars
- @Goto DETECTOS2
-
- @Else // @Exists
- @FlushOptions
- @GetOption @Cls
- @If(@L==2)
- Bitte geben Sie das Betriebssystem an, das gerade aktiv ist.
- @Else // @L
- Please specify the operating system which is currently active.
- @Endif // @L
- @Option 1000 = "DOS"
- @Option 2000 = "OS/2"
- @Option 3000 = "Windows 3.1x"
- @Option 4000 = "Windows 95"
- @EndOption
-
- @If (1000 [= @Option) @DefineVars @Integer @OS = 1 @EndVars
- @ElseIf (2000 [= @Option) @DefineVars @Integer @OS = 2 @EndVars
- @ElseIf (3000 [= @Option) @DefineVars @Integer @OS = 3 @EndVars
- @ElseIf (4000 [= @Option) @DefineVars @Integer @OS = 4 @EndVars @Endif
- @Goto OSDETECTED
- @Endif // @Exists
-
- DETECTOS2:
- @If(@StrInFile("Operating System/2", "@TmpStr\\odd33ver.tpl") == 1)
- @DefineVars @Integer @OS = 2 @EndVars
- @ElseIf(@StrInFile("Windows 95", "@TmpStr\\odd33ver.tpl") == 1)
- @DefineVars @Integer @OS = 4 @EndVars
- @ElseIf(@StrInFile("Windows NT", "@TmpStr\\odd33ver.tpl") == 1)
- @DefineVars @Integer @OS = 4 @EndVars
- @ElseIf(@StrInFile("DOS", "@TmpStr\\odd33ver.tpl") == 1)
- @If(@StrInFile("windir", "@TmpStr\\odd33set.tpl") == 1)
- @DefineVars @Integer @OS = 3 @EndVars
- @Else
- @DefineVars @Integer @OS = 1 @EndVars
- @Endif
- @Else
- @DefineVars @Integer @OS = 0 @EndVars
- @Endif // @StrInFile
- @Delete("@TmpStr\\odd33ver.tpl")
- @Delete("@TmpStr\\odd33set.tpl")
- @ElseIf(@Platform == 3)
- @If(@Chicago == 1)
- @DefineVars @Integer @OS = 4 @EndVars
- @Else // ! @Chicago
- @If(@OS2Info == 1)
- @DefineVars @Integer @OS = 2 @EndVars
- @Else
- @DefineVars @Integer @OS = 3 @EndVars
- @Endif // @OS2Info
- @Endif // @Chicago
- @Endif // @Platform
- @DefineVars @Integer @Pl = @Platform @EndVars
- OSDETECTED:
-
- @If(@Pl==1 && @OS==3)
- @Display @Cls
- @If(@L==2)
- Das Installationsprogramm kann nicht in einem DOS-Fenster
- oder DOS-Vollbild unter Windows 3.1x ausgeführt werden.
-
- Bitte starten Sie das Installationsprogramm mit dem Befehl:
-
- Datei | Ausführen: @InDrive:\SETUP.EXE
- @Else // @L
- The installation programm cannot be executed in a DOS window
- or DOS full-screen under Windows 3.1x.
-
- Please start the installation program with the command:
-
- File | Run: @InDrive:\SETUP.EXE
- @Endif // @L
-
- @Pause
- @EndDisplay
- @Exit
- @Endif // @Pl && @OS
-
-
- @DefineVars
- @QString @B = "SHOWTIME PLUS"
- @QString @Checkfile = "STMODE.EXE"
-
- @If(@Platform==1)
- @QString @UP = "[]"
- @QString @DN = "[]"
- @QString @RET = "[─┘]"
- @ElseIf(@Platform==3)
- @If(@L==2)
- @QString @UP = "AUF"
- @QString @DN = "AB"
- @QString @RET = "RETURN"
- @Else // @L
- @QString @UP = "UP"
- @QString @DN = "DOWN"
- @QString @RET = "ENTER"
- @Endif // @L
- @Endif // @Platform
-
- @Drive @acad12drv = C
- @Dir @acad12dir = "\\ACAD"
- @Drive @ustapdrv = C
- @Dir @ustapdir = "\\USTATION"
- @Drive @usta5drv = C
- @Dir @usta5dir = "\\USTATION"
- @QString @d8 = "\n\n\n\n\n\n\n\n"
- @If (@L==1)
- @QString @t011 = " Use the keys [] and [] to select a drive. Press [─┘] to continue."
- @QString @t012 = " "
- @QString @t021 = " Use the SPACE BAR to select YES or NO."
- @QString @t022 = " Press [─┘] to continue and create this directory (if YES)"
- @QString @t023 = " or to modify the last input (if NO)."
- @QString @t033 = " "
- @QString @t041 = " On which disk drive is"
- @QString @t042 = "installed at present?"
- @QString @t051 = " In which directory is"
- @QString @t061 = "does not exist. Do you want to create it?"
- @QString @t081 = " Directory"
- @QString @t091 = " Which directory"
- @QString @t101 = "already exists."
- @QString @t102 = " Do you want to continue installing in this directory?"
- @QString @t111 = " Use the SPACE BAR to select YES or NO. Press [─┘] to continue."
- @QString @t133 = " Use the keys [] and [] to select. Press [─┘] to continue."
- @QString @t121 = " On which disk drive do you want to install the \"@B Utilities\" ?"
- @QString @t131 = " For which version of"
- @QString @t132 = "do you want to install @B drivers?"
- @QString @t141 = " On which disk drive do you want to install the @B driver"
- @QString @t142 = " and the font files for AutoCAD release 11 ?"
- @QString @t143 = " In which directory do you want to install the @B driver"
- @QString @t144 = " On which disk drive do you want to install the font files"
- @QString @t145 = " for AutoCAD Release 12 ?"
- @QString @t146 = " In which directory do you want to install the font files"
- @QString @t147 = " and the font files for AutoShade / 3DStudio ?"
- @QString @t148 = " Which font size do you want to use in AutoCAD und AutoShade ?"
- @QString @t171 = " Select the applications for which you want to install drivers."
- @QString @t172 = " ATTENTION: If this installation program is being executed for"
- @QString @t173 = " the FIRST TIME, also select \"@B Utilities\"."
- @QString @t174 = " Use the [] and [] keys to move the cursor up and down."
- @QString @t175 = " Use the SPACE BAR to activate or deactivate installation of"
- @QString @t176 = " the driver at the cursor position. Press [─┘] when finished."
- @QString @t201 = " Please enter the directory in which you want the \"@B Utilities\""
- @QString @t202 = " to be installed. The standard name of the directory is: @SubDir"
- @QString @t203 = " "
- @QString @t204 = "Do you want to continue"
- @QString @t205 = " installing the \"@B Utilities\" in this directory?"
- @QString @t251 = " On which disk drive did you install the \"@B Utilities\" ?"
- @QString @t252 = " In which directory did you install the \"@B Utilities\" ?"
- @QString @t253 = "does not contain the \"@B Utilities\"."
- @QString @t254 = "does not exist."
- @QString @t300 = " Cannot find the \"@B Utilities\" in directory"
- @QString @t301 = " If the \"@B Utilities\" are not installed, press [Esc]."
- @QString @Y = "YES"
- @QString @N = "NO "
- @QString @Drivers = "Drivers"
- @QString @for = "for"
- @QString @and = "and"
- @QString @Utilities = "utilities"
- @Endif
- @If (@L==2)
- @QString @t011 = " Mit den Tasten [] und [] können Sie ein Laufwerk auswählen."
- @QString @t012 = " Bestätigen Sie mit [─┘]."
- @QString @t021 = " Wählen Sie JA oder NEIN mit der LEERTASTE."
- @QString @t022 = " Drücken Sie [─┘] zur Fortsetzung (Verzeichnis wird erzeugt, wenn JA)"
- @QString @t023 = " oder zur Änderung der letzten Eingabe (wenn NEIN)."
- @QString @t033 = " "
- @QString @t041 = " Auf welchem Laufwerk ist"
- @QString @t042 = "derzeit installiert?"
- @QString @t051 = " In welchem Verzeichnis ist"
- @QString @t061 = "existiert nicht. Wollen Sie es erzeugen ?"
- @QString @t071 = " Die Installation von"
- @QString @t072 = "wurde erfolgreich vorbereitet."
- @QString @t081 = " Verzeichnis"
- @QString @t091 = " Welches Verzeichnis"
- @QString @t101 = "existiert bereits."
- @QString @t102 = " Wollen Sie die Installation in diesem Verzeichnis fortsetzen?"
- @QString @t111 = " Wählen Sie JA / NEIN mit der Leertaste. Drücken Sie anschließend [─┘]."
- @QString @t133 = " Benutzen Sie die Tasten [] und [] zur Auswahl. Bestätigen Sie mit [─┘]."
- @QString @t121 = " Auf welchem Laufwerk wollen Sie die \"@B Utilities\"\n installieren?"
- @QString @t131 = " Für welche Version von"
- @QString @t132 = "wollen Sie @B Treiber installieren?"
- @QString @t141 = " Auf welches Laufwerk wollen Sie den @B Treiber und die"
- @QString @t142 = " Schriftfontdateien für AutoCAD Release 11 installieren?"
- @QString @t143 = " In welches Verzeichnis wollen Sie den @B Treiber und die"
- @QString @t144 = " Auf welches Laufwerk wollen Sie die Schriftfontdateien"
- @QString @t145 = " für AutoCAD Release 12 installieren?"
- @QString @t146 = " In welches Verzeichnis wollen Sie die Schriftfontdateien"
- @QString @t147 = " Schriftfontdateien für AutoShade / 3DStudio installieren?"
- @QString @t148 = " Welche Schriftfontgröße wollen Sie in AutoCAD und AutoShade nutzen?"
- @QString @t171 = " Wählen Sie die Anwendungen, für die Treiber installiert werden sollen."
- @QString @t172 = " ACHTUNG: Wenn dieses Installationsprogramm zum ERSTEN MAL ausgeführt"
- @QString @t173 = " wird, wählen Sie zusätzlich \"@B Utilities\"."
- @QString @t174 = " Mit den Tasten [] und [] können Sie den Auswahlbalken bewegen."
- @QString @t175 = " Mit der LEERTASTE können Sie den invers dargestellten Treiber"
- @QString @t176 = " zur Installation aktivieren/deaktivieren. Fortsetzung mit [─┘]."
- @QString @t201 = " Bitte geben Sie das Verzeichnis an, in dem die"
- @QString @t202 = " \"@B Utilities\" installiert werden sollen."
- @QString @t203 = " Das Standardverzeichnis hierfür lautet: @SubDir"
- @QString @t204 = "Wollen Sie die Installation"
- @QString @t205 = " der \"@B Utilities\" in diesem Verzeichnis fortsetzen?"
- @QString @t251 = " Auf welchem Laufwerk haben Sie die \"@B Utilities\" installiert ?"
- @QString @t252 = " In welchem Verzeichnis haben Sie die \"@B Utilities\" installiert ?"
- @QString @t253 = "enthält nicht die \"@B Utilities\"."
- @QString @t254 = "existiert nicht."
- @QString @t300 = " Kann die \"@B Utilities\" nicht finden im Verzeichnis"
- @QString @t301 = " Wenn die \"@B Utilities\" nicht installiert sind, drücken Sie [Esc]."
- @QString @Y = " JA "
- @QString @N = "NEIN"
- @QString @Drivers = "Treiber"
- @QString @for = "für"
- @QString @and = "und"
- @QString @Utilities = "Dienstprogramme"
- @Endif
- @EndVars
-
-
- NOCHMAL:
- @FlushGroups()
- @MaxListSize(8)
- @If(@Pl==1) @SetGroup(B) @Endif
- @If(@Pl==3) @SetGroup(W) @Endif
- @GetGroups @Checkbox @If(@Pl==1) @LocalWindow (12, 39) @Cls @Endif @If(@Pl==3) @DlgCtrlSize(0, 4, 0, 6, 70) @Endif @If(@L==2)
- Welche Teile der @Name Software wollen Sie installieren? @Else
- Which parts of the @Name software do you want to install? @Endif // @L
- @d8
-
-
-
- @If(@L==2) Mit den Tasten @UP und @DN können Sie den Auswahlbalken bewegen.
- Mit der LEERTASTE können Sie die aktuelle Zeile aktivieren oder
- deaktivieren. Betätigen Sie die Taste @RET zur Fortsetzung.
- @Else Use the @UP and @DN keys to move the selection bar.
- Use the SPACE key to activate or deactivate the current line.
- Press the @RET key to continue. @Endif // @L
- @Set W = "MCI @Drivers @and @Utilities @for Windows 3.1x / Windows 95 "
- //@Set B = "@Utilities @for DOS"
- @Set D = "@Name Media Player @for DOS"
- @EndGroups
- @If('W' [= @Group || 'D' [= @Group) @SetGroup(B) @Endif
- @BarOffset(0)
-
-
- @If('W' [= @Group || 'B' [= @Group || 'D' [= @Group || 'T' [= @Group) @Else
- @Display @Cls
- @If(@L==2)
- Es wurde nichts ausgewählt!
- @Else
- Nothing was selected!
- @Endif
- @Pause
- @EndDisplay
- @Goto NOCHMAL
- @Endif
-
- ENVIRON:
- @GetOutDrive @If(@Pl==1) @LocalWindow(24, 39) @ElseIf(@Pl==3) @DlgCtrlSize(0, 5, 20, 12, 35) @Endif
- @If(@L==2) Auf welchem Laufwerk wollen Sie die
- @Name Software installieren?
- @If(@Pl==1) Mit den Tasten @UP und @DN können Sie ein Laufwerk auswählen.
- Drücken Sie anschließend @RET. @Endif // @Pl
- @Else
- On which disk drive do you want to install
- the @Name software?
- @If(@Pl==1) Use the keys @UP and @DN to select a drive. Press @RET to continue. @Endif // @Pl
- @Endif // @L
- @EndOutDrive
-
- @GetSubDir
- @If(@L==2) In welchem Verzeichnis wollen Sie die
- @Name Software installieren?
- @Else
- In which directory do you want to install
- the @Name software?
- @Endif // @L
- @If(@Pl==1) @LocalWindow(16, 39) @ElseIf(@Pl==3) @DlgCtrlSize(0, 6, 0, 7, 50) @Endif
- @EndSubDir
-
- @If(@Exists("@OutDrive:@SubDir"))
- @ClearOption(0)
- @ClearOption(1)
- @GetOption
- @If(@Pl==1) @LocalWindow(16, 39) @ElseIf(@Pl==3) @DlgCtrlSize(0, 6, 20, 8, 26) @Endif
- @If(@L==2)
- Verzeichnis @OutDrive:@SubDir existiert bereits.
- Wollen Sie die Installation in diesem Verzeichnis fortsetzen?
-
- @If(@Pl==1) Wählen Sie JA oder NEIN mit den Tasten @UP und @DN.
- Drücken Sie anschließend @RET. @Endif // @Pl
- @Else
- Directory @OutDrive:@SubDir already exists.
- Do you want to continue installing in this directory?
-
- @If(@Pl==1) Use the keys @UP and @DN to select YES or NO.
- Press @RET to continue. @Endif // @Pl
- @Endif // @L
- @Option 1 = "@Y"
- @Option 0 = "@N"
- @EndOption
- @If (0 [= @Option) @Goto ENVIRON @Endif
- @Endif // @Exists
-
-
- @If(@Pl==1 && 'B' [= @Group)
- @GetOption @LocalWindow (16, 66) @If(@L==2)
- Auswahl der Monitor-Zeilenfrequenz
- ----------------------------------
- Hier können Sie die SHOWTIME PLUS auf die höchste Zeilenfrequenz
- einstellen, die Ihr Monitor unterstützt.
- Benutzen Sie die Tasten @UP und @DN zur Auswahl. Bestätigen Sie mit @RET.
-
- VORSICHT!
- Ihr Monitor kann durch dauerhafte Ansteuerung
- mit Frequenzen, die jenseits seiner Fähigkeiten
- liegen, ernsthafte Schäden erleiden.
- Ermitteln Sie vor einer Änderung die höchst-
- mögliche Zeilenfrequenz aus dem Benutzerhandbuch
- Ihres Monitors!
- Wenn Sie nicht wissen, welche Zeilenfrequenzen Ihr
- Monitor unterstützt, behalten Sie den Vorgabewert
- "31.5 kHz" bei und drücken Sie @RET.
- Verwenden Sie das Programm STMODE, wenn Sie die Zeilenfrequenz
- zu einem späteren Zeitpunkt verändern wollen. @Else // @L
- Selection of Monitor Line Frequency
- -----------------------------------
- Here you can set the SHOWTIME PLUS to the highest line frequency
- available for your monitor.
- Use the keys @UP and @DN to select. Press @RET to continue.
-
- CAUTION!
- Serious damages can result from sending
- permanently resolutions to your monitor
- that are beyond its capability.
- Check your monitor's reference manual for
- the proper line frequency before changing!
- If you do not know which line frequencies
- your monitor supports, leave the scroll bar
- on position "31.5 kHz" and press @RET.
- If you want to change the line frequency later,
- use the program STMODE. @Endif // @L
- @Option 100 = "31.5 kHz "
- @Option 101 = " 38 kHz "
- @Option 102 = " 49 kHz "
- @Option 103 = " 58 kHz "
- @Option 104 = " 64 kHz "
- @Option 105 = " 75 kHz "
- @Option 106 = " 80 kHz "
- @EndOption
-
- @DefineVars
- @If (100 [= @Option) @QString @stmodearg = "-0" @Endif
- @If (101 [= @Option) @QString @stmodearg = "-1" @Endif
- @If (102 [= @Option) @QString @stmodearg = "-2" @Endif
- @If (103 [= @Option) @QString @stmodearg = "-3" @Endif
- @If (104 [= @Option) @QString @stmodearg = "-4" @Endif
- @If (105 [= @Option) @QString @stmodearg = "-5" @Endif
- @If (106 [= @Option) @QString @stmodearg = "-6" @Endif
- @EndVars
- @ElseIf(@Pl==3) // @Pl
- @DefineVars
- @QString @stmodearg = "-0"
- @EndVars
- @Endif // @Pl && 'B'
-
-
-
- @If(@Pl==3 && 'W' [= @Group)
- // Video for Windows installieren/aktualisieren?
- @If(@OS==3 || @OS==2)
- @If(@Exists("@WinSysDrive:@WinSysDir\\MSVIDEO.DLL"))
- @If(@FileDate("@WinSysDrive:@WinSysDir\\MSVIDEO.DLL") < @StrToDate("1995/3/16"))
- @GetOption
- @DlgCtrlSize(0, 10, 20, 12, 26)
- @If(@L==2)
- Eine ältere Version von MS Video for Windows
- ist bereits installiert. Diese Version sollte
- aktualisiert werden.
-
- Wollen Sie die neueste Version von
- MS Video for Windows 1.1 installieren?
- @Else // @L
- An older version of MS Video for Windows
- is already installed. This version should
- be updated.
-
- Do you want to install the latest version
- of MS Video for Windows 1.1?
- @Endif // @L
- @Option 1 = "@Y"
- @Option 0 = "@N"
- @EndOption
- @If(1 [= @Option) @SetGroup(V) @Endif
- @Endif // @FileDate, @StrToDate
- @Else // @Exists
- @SetGroup(V)
- @Endif // @Exists
- @Endif // @OS
- @Endif // @Pl
-
-
- @DefineDisk
- @Label = "Utilities & MCI Drivers, Disk 1 of 2"
-
- @If(@L==2)
- @F README.GER @O README @Group bw
- @F MAILBOX.GER @O MAILBOX.DOC @Group bw
- @F MSTATION.GER @O MSTATION.DOC @Group d
- @If(@OS!=4) @F DPMS.GER @O DPMS.DOC @Group s @Endif
- @Else
- @F README.ENG @O README @Group bw
- @F MAILBOX.ENG @O MAILBOX.DOC @Group bw
- @F MSTATION.ENG @O MSTATION.DOC @Group d
- @If(@OS!=4) @F DPMS.ENG @O DPMS.DOC @Group s @Endif
- @Endif // @L
-
- @F BIOS.TXT @Group b
- @If(@Pl==1) @F SHOW.EXE @Group bws @Endif
- @If(@Pl==3) @F WSHOW.EXE @Group bws @Endif
-
- @If('B' [= @Group) @F INIT1.BAT @Endif
-
- @F FRAGE.COM
-
- @BeginLib STPLUS.LIF
- // Utilities:
- @F SOUND.BAT @Group b
- @F CSLOAD.EXE @Group b
- @F STMODE.EXE @Group b
-
- @F STINIT.EXE @Group b
- @If(@L==2)
- @F STINIT.GER @O STINIT.TCO @Group b
- @Else
- @F STINIT.ENG @O STINIT.TCO @Group b
- @Endif // @L
-
- @F STTEST.EXE @Group b
- @If(@OS==4)
- @F STTEST.PIF @Group b
- @Endif
-
- @F SHOWTIME.TXT @Group b
- @If(@OS==4)
- @F STTEST.PIF @Group b
- @Endif // @OS
-
- @F ZRMPEG1.PRG @Group dw
- @F ZRMPEG2.PRG @Group dw
- @F ZRMPEG3A.PRG @Group dw
- @F ZRMPEG3S.PRG @Group dw
- @F ZRMPEG3V.PRG @Group dw
- @F ZRCONV3S.PRG @Group dw
- @F ZRCONV3V.PRG @Group dw
- @F ZRMPEG1F.PRG @Group dw
- @F ZRMPEG1G.PRG @Group dw
- @F ZRMPEG3E.PRG @Group dw
-
- @F REQIRQ.SIM @Group dw
- @F Z_ADDR27.SIM @Group dw
- @F TONE384.SIM @Group dw
-
- @F MSTATION.DLD @Group d
- @F MSTATION.EXE @Group d
- @F MSTATION.INI @Group d
- @F MSTATION.RES @Group d
- @F SPEALOGO.GIF @Group d
- @F SPEAPLAY.CNT @Group d
- @F SPEAPLAY.DEF @Group d
-
- @If(@OS==4)
- @F MSTATION.PIF @Group d
- @Endif // @OS
-
- @F MSTAT14.FNT @O fonts\\MSTAT14.FNT @Group d
- @F MSTAT16.FNT @O fonts\\MSTAT16.FNT @Group d
- @F BIT12X30.FNT @O fonts\\BIT12X30.FNT @Group d
- @F BIT6X8.FNT @O fonts\\BIT6X8.FNT @Group d
- @F BIT8X8.FNT @O fonts\\BIT8X8.FNT @Group d
- @EndLib
-
- @If(@Pl==3)
- @BeginLib AVICODEC.LIF
- @F ICCVID.DRV @O @WinSysDrive:@WinSysDir\\ICCVID.DRV @Group v
- @F IR21_R.DLL @O @WinSysDrive:@WinSysDir\\IR21_R.DLL @Group v
- @F IR32.DLL @O @WinSysDrive:@WinSysDir\\IR32.DLL @Group v
- @F MSRLE.DRV @O @WinSysDrive:@WinSysDir\\MSRLE.DRV @Group v
- @F MSVIDC.DRV @O @WinSysDrive:@WinSysDir\\MSVIDC.DRV @Group v
- @EndLib
- @Endif // @PL
-
- @EndDisk
-
- @If('B' [= @Group)
- @Write ("@OutDrive:\\@SubDir\\setgdc.bat", "wt", "SET GDC=@OutDrive:@SubDir\n")
- @Endif
-
- @If(@OS!=2 && 'B' [= @Group)
- @Write ("@OutDrive:\\@SubDir\\init.bat", "wt", "@@echo off\n")
- @Write ("@OutDrive:\\@SubDir\\init.bat", "at", "call @OutDrive:@SubDir\\init1 @OutDrive @SubDir @L @stmodearg\n")
- @Endif // @OS, 'B'
-
-
- @If(@Pl==3 && ('W' [= @Group || 'V' [= @Group))
- @If("@StartupDir" != "\\")
- @ChDrive @InDrive
- @ChDir("..\\util2")
- @Chain("Utilities & MCI Drivers, Disk 2 of 2", "..\\util2\\INSTALL.DAT")
- @Else
- @Chain("Utilities & MCI Drivers, Disk 2 of 2")
- @Endif
- @Endif // @Pl, 'W' || 'V'
-
-
- NACHV7SETUP:
-
- @Display @Cls
- @If(@L==2)
- Nun wird die Datei README geöffnet.
- Sie enthält die neuesten Informationen
- zur @Name.
-
- Um die Installation fortzusetzen, beenden
- Sie README mit der Taste [Esc].
- @Else // @L
- Now the file README will be opened.
- It contains the latest information
- on @Name.
-
- To continue the installation, terminate
- README with the key [Esc].
- @Endif // @L
- @Pause
- @EndDisplay
-
- @ChDrive @OutDrive
- @ChDir ("@SubDir")
- @If(@Exists("@OutDrive:@SubDir\\README"))
- @If(@Pl==1)
- @If (@System "show readme") @Endif
- @ElseIf(@Pl==3)
- @WinExec("@OutDrive:@SubDir\\WSHOW README.", 1, (-1))
- @Endif // @Pl
- @Endif // @Exists
- @ChDrive @InDrive
-
- @If('B' [= @Group)
-
- @SetAutoexec @Overwrite
- @SetReplace("GDC", "@OutDrive:@SubDir")
- @Verbatim "call @OutDrive:@SubDir\\init stmode"
- @EndAutoexec
- @Endif // 'B'
-
- // Create SPEA Group and Items #2
- @If( @Pl==3 && (@OS==3 || @OS==4) && 'W' [= @Group )
- @DefineVars
- @QString @PM5 = "[CreateGroup(SPEA)]"
- @QString @PM6 = "[AddItem(@OutDrive:\\@SubDir\\MEDIASTA.EXE, MediaStation,,0)]"
- @If(@OS!=4)
- @QString @PM7 = "[AddItem(@OutDrive:\\@SubDir\\SPENERGY.EXE, SPEAenergy,,0)]"
- @Else
- @QString @PM7 = ""
- @Endif
- @QString @PM8 = "[ShowGroup(SPEA,1)]"
- @EndVars
- @ProgramManager("@PM5@PM6@PM7@PM8")
- @Endif // @Pl && @OS && 'W'
-
-
- @If(@Pl==3 && (@OS==3 || @OS==4) && 'W' [= @Group)
- @GetOption @If(@PL==1) @Checkbox @LocalWindow (13, 39) @ElseIf(@Pl==3) @DlgCtrlSize(0, 6, 0, 8, 8) @Endif
- @If(@L==2)
- Zur Vervollständigung der Installation
- muß Ihr Computer neu gestartet werden.
- Wollen Sie jetzt neustarten?
- @Else
- Your computer must be rebooted
- to complete the installation.
- Do you want to reboot now?
- @Endif // @L
- @If(@Pl==1)@t021
- @t022
- @t023
- @Option 0 = "" @ElseIf(@Pl==3) @Option 0 = "@Y" @Option 1 = "@N" @Endif
- @EndOption
- @DefineVars @If(0 [= @Option) @Integer @WinExit = 1 @Else @Integer @WinExit = 0 @Endif @EndVars
- @Endif // @Pl && @OS && 'W'
-
-
- @If(@Pl==1)
- @If('W' [= @Group)
-
- @Display
- @If(@L==2)
- Die Installation von
- @Drivers @and @Utilities @for Windows 3.1x / Windows 95
- wird unter Windows durchgeführt:
-
-
- 1. Starten Sie Windows
-
- 2. Starten Sie das Installationsprogramm für Windows mit dem Befehl:
- Datei | Ausführen: @InDrive:\@If("@StartupDir" != "\\")SPEAINST@Else@!SETUP@Endif.EXE
-
- 3. Wählen Sie "@Drivers @and @Utilities @for Windows 3.1x / Windows 95"
- @Else // @L
- The installation of
- @Drivers @and @Utilities @for Windows 3.1x / Windows 95
- must be carried out under Windows:
-
-
- 1. Start Windows
-
- 2. Start the installation programm for Windows with the command:
- File | Run: @InDrive:\@If("@StartupDir" != "\\")SPEAINST@Else@!SETUP@Endif.EXE
-
- 3. Select "@Drivers @and @Utilities @for Windows 3.1x / Windows 95"
- @Endif // @L
- @Pause
- @EndDisplay
- @Endif // 'W'
- @Endif // @Pl
-
-
- @Finish
- @If(@Pl==3 && (@OS==3 || @OS==4) && 'W' [= @Group)
- @If(@WinExit==1)
- @If("@StartupDir" == "\\")
- @If(@L==2)
- Ihr Computer wird jetzt neu gestartet.
- Bitte nehmen Sie die Diskette aus Laufwerk @InDrive.
- @Else
- Your computer will now be rebooted.
- Please remove the disk from drive @Indrive.
- @Endif
- @Pause
- @Endif // @StartupDir
- @WindowsExit(-1)
- @Endif // @WinExit
- @Endif // @Pl && @OS && 'W'
-
- @If(@Pl==3 && @OS==2 && 'W' [= @Group)
- @WindowsExit(-1)
- @Endif // @Pl && @OS && 'W'
-
- @If(@Pl==1)
- @If(@OS==2) @Else
- @If('B' [= @Group)
- @Cls
- @If(@L==2)
- Nun wird Ihre @B Karte konfiguriert.
-
-
- @Pause
- @Else
- Now your @B card will be configured.
-
- @Pause
- @Endif
- @ChDrive @OutDrive
- @ChDir "@SubDir"
-
- @Endif // 'B'
- @Endif // @OS
- @Endif // @Pl
-
-
- @If(@Pl==1) @Execute("@GetENV("COMSPEC")", "/E:1024 /CINIT.BAT") @Endif
- @EndFinish