home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Misc / CRX-GV31.LHA / GCBVideo / Install_GCBVideo < prev    next >
Encoding:
Text File  |  1996-01-08  |  20.3 KB  |  788 lines

  1. ;-------------------------------------------------------------------
  2. ; $VER: Install-GCB-Produkte V2.00 Dienstag 24.01.95
  3. ;       Gabriele Christine Bauer
  4. ;       St.-Augustinus-Str 74
  5. ;       81825 München
  6. ;       Deutschland
  7. ;-------------------------------------------------------------------
  8. ; Globalvariablen
  9. ;-------------------------------------------------------------------
  10. (set produkt (cat "GCBVideo"))
  11. (set version (cat "V3.10"))
  12. (delopts AskUser)
  13. (set @language "deutsch")
  14. (set false 0)
  15. (set true 1)
  16. ;-------------------------------------------------------------------
  17. ; Begrüßung
  18. ;-------------------------------------------------------------------
  19. (set gruss (cat "Willkommen bei der Installation von "produkt" "version))
  20. (welcome gruss)
  21. ;-------------------------------------------------------------------
  22. ; Copyright
  23. ;-------------------------------------------------------------------
  24. (set copyright
  25.   (cat "\n\n" 
  26.        produkt"-Installationsskript."
  27.        "\n"
  28.          "Diese Installationsroutine installiert "produkt" auf Ihrem Amiga."
  29.          "\n(Ab Betriebssystem Version 2.04 lauffähig)"
  30.          "\n"
  31.          "Lesen Sie bitte die Dokumentation für "
  32.        "weitere Informationen über die Weitergeabe. "
  33.        "\n\n"
  34.        produkt" "version" © 1995 Gabriele Christine Bauer "
  35.        "\n"
  36.        "Alle Rechte vorbehalten."
  37.   )
  38. )
  39. (message copyright)
  40. (complete 10)
  41. ;-------------------------------------------------------------------
  42. ; Abfrage auf vorhandene Installation
  43. ;-------------------------------------------------------------------
  44. (set gcbvorhanden false)
  45. (set produktvorhanden false)
  46. (if (= (exists "S:GCBProdukt.exists") true)
  47.   (
  48.     (set gcbvorhanden true)
  49.     (if (= (exists (cat "GCBProdukte:"produkt)) true)
  50.       (
  51.         (set produktvorhanden true)
  52.       )
  53.     )
  54.     (if ( and (= produktvorhanden false) (= (exists (cat "SYS:WBStartup/"produkt)) true))
  55.       (
  56.         (set produktvorhanden true)
  57.       )
  58.     )
  59.   )
  60. )
  61. (complete 20)
  62. ;-------------------------------------------------------------------
  63. ; Abfrage auf Installationsart
  64. ;-------------------------------------------------------------------
  65. (set frage
  66.   (cat "Bitte wählen Sie eine der unten stehenden Möglichkeiten aus:"
  67.   )
  68. )
  69. (if (= produktvorhanden false)
  70.   (
  71.     (set inst
  72.       (cat "Installation von "produkt" "version
  73.       )
  74.     )
  75.   )
  76. )
  77. (if (= produktvorhanden true)
  78.   (
  79.     (set inst
  80.       (cat "Update auf "produkt" "version
  81.       )
  82.     )
  83.   )
  84. )
  85. (set remo
  86.   (cat produkt" von Festplatte entfernen"
  87.   )
  88. )
  89. (set vers
  90.   (cat "Systeminformationen abrufen"
  91.   )
  92. )
  93. (set wahl
  94.   (askchoice
  95.     (prompt frage)
  96.     (choices inst remo vers)
  97.     (help @askchoise-help)
  98.   )
  99. )
  100. (complete 30)
  101. ;-------------------------------------------------------------------
  102. ; Abfrage auf Remove
  103. ;-------------------------------------------------------------------
  104. (set abbruch
  105.   (cat "\n\n" 
  106.        "Sie können "produkt" nicht von der Festplatte entfernen, "
  107.        "da Sie es noch nicht installiert haben."
  108.   )
  109. )
  110. (if (and (= produktvorhanden false) (= wahl 1))
  111.   (
  112.     (message abbruch)
  113.     (exit (quiet))
  114.   )
  115. )
  116. (complete 40)
  117. ;-------------------------------------------------------------------
  118. ; Sichern der pers. Daten
  119. ;-------------------------------------------------------------------
  120. (if (and (= wahl 0) (= produktvorhanden true))
  121.   (
  122.     (run ("makedir >nil: RAM:GCBDAT"))
  123.     (set text
  124.       (cat "\n\nDa Sie schon eine Version von "produkt" installiert haben, "
  125.            "werden zuerst Ihre persönlichen Daten zwischengespeichert."
  126.       )
  127.     )
  128.     (message text)
  129.     (set text
  130.       (cat "Sichere persönliche Daten nach RAM:GCBDAT"
  131.       )
  132.     )
  133.     (if (= produkt (cat "GCBPlaner"))
  134.       (
  135.         (if (= (exists "GCBProdukte:GCBPlaner.key") true)
  136.           (
  137.             (copyfiles
  138.               (prompt text)
  139.               (source "GCBProdukte:GCBPlaner.key")
  140.               (dest "RAM:GCBDAT/")
  141.             )
  142.           )
  143.         )
  144.         (if (= (exists "GCBProdukte:GCBPlaner.Dat") true)
  145.           (
  146.             (copyfiles
  147.               (prompt text)
  148.               (source "GCBProdukte:GCBPlaner.Dat")
  149.               (dest "RAM:GCBDAT/")
  150.             )
  151.           )
  152.         )
  153.         (if (= (exists "GCBProdukte:GCBPlaner.Konfig") true)
  154.           (
  155.             (copyfiles
  156.               (prompt text)
  157.               (source "GCBProdukte:GCBPlaner.Konfig")
  158.               (dest "RAM:GCBDAT/")
  159.             )
  160.           )
  161.         )
  162.         (if (= (exists "GCBProdukte:GCBPlaner.History") true)
  163.           (
  164.             (copyfiles
  165.               (prompt text)
  166.               (source "GCBProdukte:GCBPlaner.History")
  167.               (dest "RAM:GCBDAT/")
  168.             )
  169.           )
  170.         )
  171.         (if (= (exists "SYS:WBStartup/GCBPlaner.info") true)
  172.           (
  173.             (copyfiles
  174.               (prompt text)
  175.               (source "SYS:WBStartup/GCBPlaner.info")
  176.               (dest "RAM:GCBDAT/")
  177.             )
  178.           )
  179.         )
  180.       )
  181.     )
  182.     (if (= produkt (cat "GCBVideo"))
  183.       (
  184.         (if (= (exists "GCBProdukte:GCBVideo.Key") true)
  185.           (
  186.             (copyfiles
  187.               (prompt text)
  188.               (source "GCBProdukte:GCBVideo.Key")
  189.               (dest "RAM:GCBDAT/")
  190.             )
  191.           )
  192.         )
  193.         (if (= (exists "GCBProdukte:GCBVideo.Konfig") true)
  194.           (
  195.             (copyfiles
  196.               (prompt text)
  197.               (source "GCBProdukte:GCBVideo.Konfig")
  198.               (dest "RAM:GCBDAT/")
  199.             )
  200.           )
  201.         )
  202.         (if (= (exists "GCBProdukte:GCBVideo.Archiv") true)
  203.           (
  204.             (copyfiles
  205.               (prompt text)
  206.               (source "GCBProdukte:GCBVideo.Archiv")
  207.               (dest "RAM:GCBDAT/")
  208.             )
  209.           )
  210.         )
  211.         (if (= (exists "GCBProdukte:GCBVideo.Aufnahmen") true)
  212.           (
  213.             (copyfiles
  214.               (prompt text)
  215.               (source "GCBProdukte:GCBVideo.Aufnahmen")
  216.               (dest "RAM:GCBDAT/")
  217.             )
  218.           )
  219.         )
  220.         (if (= (exists "GCBProdukte:GCBVideo.Frei") true)
  221.           (
  222.             (copyfiles
  223.               (prompt text)
  224.               (source "GCBProdukte:GCBVideo.Frei")
  225.               (dest "RAM:GCBDAT/")
  226.             )
  227.           )
  228.         )
  229.         (if (= (exists "GCBProdukte:GCBVideo.Kategorien") true)
  230.           (
  231.             (copyfiles
  232.               (prompt text)
  233.               (source "GCBProdukte:GCBVideo.Kategorien")
  234.               (dest "RAM:GCBDAT/")
  235.             )
  236.           )
  237.         )
  238.         (if (= (exists "GCBProdukte:GCBVideo.Genres") true)
  239.           (
  240.             (copyfiles
  241.               (prompt text)
  242.               (source "GCBProdukte:GCBVideo.Genres")
  243.               (dest "RAM:GCBDAT/")
  244.             )
  245.           )
  246.         )
  247.         (if (= (exists "GCBProdukte:GCBVideo.Programme") true)
  248.           (
  249.             (copyfiles
  250.               (prompt text)
  251.               (source "GCBProdukte:GCBVideo.Programme")
  252.               (dest "RAM:GCBDAT/")
  253.             )
  254.           )
  255.         )
  256.         (if (= (exists "GCBProdukte:GCBVideo.info") true)
  257.           (
  258.             (copyfiles
  259.               (prompt text)
  260.               (source "GCBProdukte:GCBVideo.info")
  261.               (dest "RAM:GCBDAT/")
  262.             )
  263.           )
  264.         )
  265.       )
  266.     )
  267.     (if (= produkt (cat "GCBAdresse"))
  268.       (
  269.         (if (= (exists "GCBProdukte:GCBAdresse.Key") true)
  270.           (
  271.             (copyfiles
  272.               (prompt text)
  273.               (source "GCBProdukte:GCBAdresse.Key")
  274.               (dest "RAM:GCBDAT/")
  275.             )
  276.           )
  277.         )
  278.         (if (= (exists "GCBProdukte:GCBAdresse.Orte") true)
  279.           (
  280.             (copyfiles
  281.               (prompt text)
  282.               (source "GCBProdukte:GCBAdresse.Orte")
  283.               (dest "RAM:GCBDAT/")
  284.             )
  285.           )
  286.         )
  287.         (if (= (exists "GCBProdukte:GCBAdresse.Bank") true)
  288.           (
  289.             (copyfiles
  290.               (prompt text)
  291.               (source "GCBProdukte:GCBAdresse.Bank")
  292.               (dest "RAM:GCBDAT/")
  293.             )
  294.           )
  295.         )
  296.         (if (= (exists "GCBProdukte:GCBAdresse.Konfig") true)
  297.           (
  298.             (copyfiles
  299.               (prompt text)
  300.               (source "GCBProdukte:GCBAdresse.Konfig")
  301.               (dest "RAM:GCBDAT/")
  302.             )
  303.           )
  304.         )
  305.         (if (= (exists "GCBProdukte:GCBAdresse.Adressen") true)
  306.           (
  307.             (copyfiles
  308.               (prompt text)
  309.               (source "GCBProdukte:GCBAdresse.Adressen")
  310.               (dest "RAM:GCBDAT/")
  311.             )
  312.           )
  313.         )
  314.         (if (= (exists "GCBProdukte:GCBAdresse.GrpSchalt") true)
  315.           (
  316.             (copyfiles
  317.               (prompt text)
  318.               (source "GCBProdukte:GCBAdresse.GrpSchalt")
  319.               (dest "RAM:GCBDAT/")
  320.             )
  321.           )
  322.         )
  323.         (if (= (exists "GCBProdukte:GCBAdresse.Gruppen") true)
  324.           (
  325.             (copyfiles
  326.               (prompt text)
  327.               (source "GCBProdukte:GCBAdresse.Gruppen")
  328.               (dest "RAM:GCBDAT/")
  329.             )
  330.           )
  331.         )
  332.         (if (= (exists "GCBProdukte:GCBAdresse.info") true)
  333.           (
  334.             (copyfiles
  335.               (prompt text)
  336.               (source "GCBProdukte:GCBAdresse.info")
  337.               (dest "RAM:GCBDAT/")
  338.             )
  339.           )
  340.         )
  341.       )
  342.     )
  343.     (if (= produkt (cat "GCBNotiz"))
  344.       (
  345.         (if (= (exists "GCBProdukte:GCBNotiz.Key") true)
  346.           (
  347.             (copyfiles
  348.               (prompt text)
  349.               (source "GCBProdukte:GCBNotiz.Key")
  350.               (dest "RAM:GCBDAT/")
  351.             )
  352.           )
  353.         )
  354.         (if (= (exists "GCBProdukte:GCBNotiz.Konfig") true)
  355.           (
  356.             (copyfiles
  357.               (prompt text)
  358.               (source "GCBProdukte:GCBNotiz.Konfig")
  359.               (dest "RAM:GCBDAT/")
  360.             )
  361.           )
  362.         )
  363.         (if (= (exists "GCBProdukte:GCBNotiz.Notizen") true)
  364.           (
  365.             (copyfiles
  366.               (prompt text)
  367.               (source "GCBProdukte:GCBNotiz.Notizen")
  368.               (dest "RAM:GCBDAT/")
  369.             )
  370.           )
  371.         )
  372.         (if (= (exists "GCBProdukte:GCBNotiz.info") true)
  373.           (
  374.             (copyfiles
  375.               (prompt text)
  376.               (source "GCBProdukte:GCBNotiz.info")
  377.               (dest "RAM:GCBDAT/")
  378.             )
  379.           )
  380.         )
  381.       )
  382.     )
  383.     (if (= produkt (cat "GCBDruck"))
  384.       (
  385.         (if (= (exists "GCBProdukte:GCBDruck.Key") true)
  386.           (
  387.             (copyfiles
  388.               (prompt text)
  389.               (source "GCBProdukte:GCBDruck.Key")
  390.               (dest "RAM:GCBDAT/")
  391.             )
  392.           )
  393.         )
  394.         (if (= (exists "GCBProdukte:GCBDruck.Konfig") true)
  395.           (
  396.             (copyfiles
  397.               (prompt text)
  398.               (source "GCBProdukte:GCBDruck.Konfig")
  399.               (dest "RAM:GCBDAT/")
  400.             )
  401.           )
  402.         )
  403.         (if (= (exists "GCBProdukte:GCBDruck.info") true)
  404.           (
  405.             (copyfiles
  406.               (prompt text)
  407.               (source "GCBProdukte:GCBDruck.info")
  408.               (dest "RAM:GCBDAT/")
  409.             )
  410.           )
  411.         )
  412.       )
  413.     )
  414.   )
  415. )
  416. (complete 50)
  417. ;-------------------------------------------------------------------
  418. ; Entferne bisherige Installation bei (wahl < 2)
  419. ;-------------------------------------------------------------------
  420. (if (and (< wahl 2) (= produktvorhanden true))
  421.   (
  422.     (set text
  423.       (cat "\n\nAuf Ihrer Festplatte wird nun "produkt" entfernt"
  424.       )
  425.     )
  426.     (message text)
  427.     (run
  428.       (cat "delete >nil: SYS:WBStartUp/"produkt"#? all"
  429.       )
  430.     )
  431.     (run
  432.       (cat "delete >nil: GCBProdukte:"produkt"#? all"
  433.       )
  434.     )
  435.     (set produktvorhanden false)
  436.   )
  437. )
  438. (complete 70)
  439. ;-------------------------------------------------------------------
  440. ; Entferne Assign & s:gcbprodukt.exists
  441. ;-------------------------------------------------------------------
  442. (set sonstgcbprodukt false)
  443. (if (and (< wahl 2) (= gcbvorhanden true))
  444.   (
  445.     (if (= (exists "SYS:WBStartup/GCBPlaner") true)
  446.       (
  447.         (set sonstgcbprodukt true)
  448.       )
  449.     )
  450.     (if (= (exists "GCBProdukte:GCBVideo") true)
  451.       (
  452.         (set sonstgcbprodukt true)
  453.       )
  454.     )
  455.     (if (= (exists "GCBProdukte:GCBAdresse") true)
  456.       (
  457.         (set sonstgcbprodukt true)
  458.       )
  459.     )
  460.     (if (= (exists "GCBProdukte:GCBNotiz") true)
  461.       (
  462.         (set sonstgcbprodukt true)
  463.       )
  464.     )
  465.     (if (= (exists "GCBProdukte:GCBDruck") true)
  466.       (
  467.         (set sonstgcbprodukt true)
  468.       )
  469.     )
  470.     (if (= sonstgcbprodukt false)
  471.       (
  472.         (run ("execute gcbwo"))
  473.         (set srcdir (getenv "GCBTemp"))
  474.         (delete "ENV:GCBTemp")
  475.         (set text
  476.           (cat "Da Sie keine weiteren GCB-Produkte installiert haben, "
  477.                "wird die Schublade "srcdir" auf Ihrer Festplatte gelöscht und "
  478.                "der Assign in der Datei USER-Startup entfernt."
  479.           )
  480.         )
  481.         (startup "GCB-Produkte"
  482.           (prompt text)
  483.           (help @startup-help)
  484.         )
  485.         (run "assign GCBProdukte: remove")
  486.         (run
  487.           (cat "delete >nil: \""srcdir"\" all"
  488.           )
  489.         )
  490.         (delete "S:GCBProdukt.exists")
  491.         (set gcbvorhanden false)
  492.       )
  493.     )
  494.   )
  495. )
  496. (if (= wahl 1)
  497.   (
  498.     (exit (quiet))
  499.   )
  500. )
  501. (complete 80)
  502. ;-------------------------------------------------------------------
  503. ; Installieren neue Version (wahl = 0)
  504. ;-------------------------------------------------------------------
  505. (if (= wahl 0)
  506.   (
  507.     (if (= (exists (cat "WBStartUp/"produkt)) true)
  508.       (
  509.         (set text
  510.           (cat "\n\nKopiere das Startprogramm von "produkt" in die Schublade "
  511.                "SYS:WBStartUp. Beim nächsten Rechnerstart wird das Startprogramm "
  512.                " aktiv."
  513.           )
  514.         )
  515.         (message text)
  516.         (copyfiles
  517.           (prompt "Installiere Startprogramm")
  518.           (source "WBStartUp/")
  519.           (pattern "#?")
  520.           (dest "SYS:WBStartUp")
  521.         )
  522.       )
  523.     )
  524.     (if (= gcbvorhanden false)
  525.       (
  526.         (set GCBWahl
  527.           (askdir
  528.             (prompt
  529.               (cat "Wohin soll "produkt" installiert werden ?\nEin Verzeichnis"
  530.                    " GCBProdukte wird erzeugt."
  531.               )
  532.             )
  533.             (help @askdir-help)
  534.             (default "SYS:")
  535.           )
  536.         )
  537.         (set GCBDir (tackon GCBWahl "GCBProdukte"))
  538.         (makedir GCBDir)
  539.         (run (cat "assign GCBProdukte: \""GCBDir"\""))
  540.         (set GCBORGXX GCBDir)
  541.         (set GCBDir "GCBProdukte:")
  542.       )
  543.     )
  544.     (if (= gcbvorhanden true)
  545.       (
  546.         (set GCBDir "GCBProdukte:")
  547.       )
  548.     )
  549.     (set text
  550.       (cat "\nKopiere die Oberfläche von "produkt" und die Dokumentation"
  551.            " in das Verzeichnis "GCBDir
  552.            "\n\n"
  553.            "\nDies ist eine nicht registrierte Public-Domain-Version. Mit dieser "
  554.            "Version sind nur 5 Einträge möglich."
  555.       )
  556.     )
  557.     (if (= (exists (cat "GCBProdukte/"produkt".key")) true)
  558.       (
  559.         (set text
  560.           (cat "\nKopiere die Oberfläche von "produkt" und die Dokumentation"
  561.                " in das Verzeichnis "GCBDir
  562.                "\n\n"
  563.                "\nDies ist eine registrierte Shareware-Verion. Nochmals "
  564.                "vielen Dank für die Unterstützung des Shareware-Konzepts"
  565.           )
  566.         )
  567.         (run
  568.           (cat "delete >nil: RAM:GCBDAT/"produkt".key")
  569.         )
  570.       )
  571.     )  
  572.     (if (= (exists (cat "RAM:GCBDAT/"produkt".key")) true)
  573.       (
  574.         (set text
  575.           (cat "\nKopiere die Oberfläche von "produkt" und die Dokumentation"
  576.                " in das Verzeichnis "GCBDir
  577.                "\n\n"
  578.                "\nDies ist eine registrierte Shareware-Verion. Nochmals "
  579.                "vielen Dank für die Unterstützung des Shareware-Konzepts"
  580.           )
  581.         )
  582.       )
  583.     )  
  584.     (message text)
  585.     (copyfiles
  586.       (prompt (cat "Installiere "produkt))
  587.       (source "GCBProdukte/")
  588.       (pattern "#?")
  589.       (dest GCBDir)
  590.     )
  591.     (set frage
  592.       (cat "Bitte wählen Sie einen geeigneten Monitor-Treiber aus:"
  593.       )
  594.     )
  595.     (set tpal
  596.       (cat "PAL"
  597.       )
  598.     )
  599.     (set tmulti
  600.       (cat "MultiScan-Monitor"
  601.       )
  602.     )
  603.     (set monitor
  604.       (askchoice
  605.         (prompt frage)
  606.         (choices tpal tmulti)
  607.         (help @askchoise-help)
  608.       )
  609.     )
  610.     (if (= produkt "GCBPlaner")
  611.       (set gespfad
  612.         (cat GCBDIR Produkt".bearb"
  613.         )
  614.       )
  615.     )
  616.     (if (NOT (= produkt "GCBPlaner"))
  617.       (set gespfad
  618.         (cat GCBDIR Produkt
  619.         )
  620.       )
  621.     )
  622.     (run
  623.       (cat "delete >nil: "gespfad)
  624.     )
  625.     (if (= monitor 0)
  626.       (
  627.         (run
  628.           (cat "rename >nil: "gespfad".Pal "gespfad)
  629.         )
  630.       )
  631.     )
  632.     (if (= monitor 1)
  633.       (
  634.         (run
  635.           (cat "rename >nil: "gespfad".MultiScan "gespfad)
  636.         )
  637.       )
  638.     )
  639.     (if (= (exists "libs/CanDo.library") true)
  640.       (
  641.         (copylib
  642.             (prompt "Installiere CanDo.library")
  643.             (help @copylib-help)
  644.             (confirm)
  645.             (source "libs/CanDo.library")
  646.             (dest "Libs:")
  647.         )
  648.       )
  649.     )
  650.     (if (= (exists "libs/CanDoGfx.library") true)
  651.       (
  652.         (copylib
  653.             (prompt "Installiere CanDoGfx.library")
  654.             (help @copylib-help)
  655.             (confirm)
  656.             (source "libs/CanDoGfx.library")
  657.             (dest "Libs:")
  658.         )
  659.       )
  660.     )
  661.     (if (= (exists "libs/INOVAMusic.library") true)
  662.       (
  663.         (copylib
  664.             (prompt "Installiere INOVAMusic.library")
  665.             (help @copylib-help)
  666.             (confirm)
  667.             (source "libs/INOVAMusic.library")
  668.             (dest "Libs:")
  669.         )
  670.       )
  671.     )
  672.     (if (= (exists "libs/lowlevel.library") true)
  673.       (
  674.         (copylib
  675.             (prompt "Installiere lowlevel.library")
  676.             (help @copylib-help)
  677.             (confirm)
  678.             (source "libs/lowlevel.library")
  679.             (dest "Libs:")
  680.         )
  681.       )
  682.     )
  683.     (if (= (exists "Fonts/GCBPlaner.font") true)
  684.       (
  685.         (copyfiles
  686.           (prompt "Installiere Fonts")
  687.           (source "Fonts/")
  688.           (pattern "#?")
  689.           (dest "Fonts:")
  690.         )
  691.       )
  692.     )
  693.     (if (= (exists "s/GCBProdukt.exists") true)
  694.       (
  695.         (copyfiles
  696.           (prompt "Installiere GCB-Marker")
  697.           (source "S/")
  698.           (pattern "#?")
  699.           (dest "S:")
  700.         )
  701.       )
  702.     )
  703.     (if (= gcbvorhanden false)
  704.       (
  705.         (copyfiles
  706.           (prompt "Installiere Schubladen-Icon")
  707.           (source "GCBProdukte.info")
  708.           (dest GCBWahl)
  709.         )
  710.       )
  711.     )
  712.     (if (= gcbvorhanden false)
  713.       (
  714.         (set user_script
  715.           (cat "  Assign GCBProdukte: \"" GCBORGXX "\""
  716.           )
  717.         )
  718.         (working omp "Updating S:User-Startup.")
  719.         (startup "GCB-Produkte"
  720.           (prompt
  721.               "Diese Instruktionen müssen an die Datei \"S:User-Startup\" hinzugefügt"
  722.                 "werden."
  723.                 "Somit ist Ihr System für den Einsatz von "produkt" konfiguriert.\n\n"
  724.                 user_script
  725.             )
  726.             (help @startup-help)
  727.             (command user_script)
  728.         )
  729.       )
  730.     )
  731.   )
  732. )
  733. (complete 90)
  734. ;-------------------------------------------------------------------
  735. ; Kopieren Zwischendateien aus RAM: (pattern produkt & wahl = 0)
  736. ;-------------------------------------------------------------------
  737. (if (and (= wahl 0) (= (exists "RAM:GCBDAT/GCBPlaner.info") 1))
  738.   (
  739.     (copyfiles
  740.       (prompt "Kopiere pers. Datenfiles in neue Installation")
  741.       (source "RAM:GCBDAT/GCBPlaner.info")
  742.       (dest "SYS:WBStartup/")
  743.     )
  744.     (run "delete >nil: ram:gcbdat/GCBPlaner.info")
  745.   )
  746. )
  747. (if (and (= wahl 0) (= (exists "RAM:GCBDAT/") 2))
  748.   (
  749.     (copyfiles
  750.       (prompt "Kopiere pers. Datenfiles in neue Installation")
  751.       (source "RAM:GCBDAT/")
  752.       (pattern (cat produkt"#?"))
  753.       (dest GCBDir)
  754.     )
  755.     (run "delete >nil: ram:gcbdat all")
  756.   )
  757. )
  758. (complete 100)
  759. ;-------------------------------------------------------------------
  760. ; Auskunft über System (wahl = 2)
  761. ;-------------------------------------------------------------------
  762. (if (= wahl 2)
  763.    (
  764.      (run "Version >ENV:GCBInfo")
  765.      (set systeminfo
  766.        (cat "Information über Ihr System:\n\n"
  767.             (getenv "GCBInfo")
  768.             "\n"produkt" "version
  769.        )
  770.      )
  771.      (delete "ENV:GCBInfo")
  772.      (message systeminfo)
  773.      (exit (quiet))
  774.    )
  775. )
  776. (complete 100)
  777. ;-------------------------------------------------------------------
  778. ; Endlich am Ende
  779. ;-------------------------------------------------------------------
  780. (set @default-dest GCBDir)
  781. (set text
  782.   (cat "Die Installation von "produkt" "version" ist nun abgeschlossen."
  783.        "\n\nBitte lesen Sie die Dokumentation, zu diesem Produkt, die Sie "
  784.        "in "GCBDir" finden können, bzw. mir der Help-Taste aus dem Programm heraus"
  785.        " aufrufen können.\n\nViel Spaß mit Ihrer neuen Software"
  786.   )
  787. )
  788. (exit text)