home *** CD-ROM | disk | FTP | other *** search
/ Inside Multimedia 1995 December / IMM1295.ISO / driver / miro / w3_vid1 / install.dat < prev    next >
Text File  |  1995-08-03  |  46KB  |  1,071 lines

  1. //*****************************************************************************
  2. // Name         : INSTALL.DAT
  3. // Project      : RIZZO: Installation miro WINDOWS-BASIC-DISK
  4. // Function     : Scriptfile for KDC-wINSTALL
  5. // Author       : KF / miro Computer Products AG,
  6. //                Carl-Miele-Str. 4, D-38112 Braunschweig
  7. // created      : 12.01.95
  8. // changed      : KF 02.08.95
  9. // revision......when...................who.....->.where.and.what..............
  10. // $Log:$
  11. //*****************************************************************************
  12.  
  13. //*** project header block ****************************************************
  14.  
  15. @DefineProject
  16.   @Name       = "miro╖win - High speed drivers for Windows"
  17.   @Version    = "1.10"
  18.   @OutDrive   = @WindowsDrive
  19.   @SubDir     = "@WindowsDir"
  20.   @InDiskBell = 1
  21. @EndProject
  22.  
  23.  
  24. //*** define variables ********************************************************
  25.  
  26. @DefineVars
  27.   @QString @mName     = "Install disk"
  28.   @Integer @Red       = @RGB (255,0,0)
  29.   @Integer @Green     = @RGB (0,255,0)
  30.   @Integer @Blue      = @RGB (0,0,255)
  31.   @Integer @Black     = @RGB (0,0,0)
  32.   @Integer @White     = @RGB (255,255,255)
  33.   @Integer @UnInstall = @False
  34.   @Integer @OldLang   = 0
  35.   @Integer @Delay     = 0
  36.   @Integer @d         = 5
  37.   @Integer @fflag     = 0
  38.   @QString @merke     = ""
  39.   @Dir @miroDir     = "\\MIRO"
  40.   @Drive @miroDrive = C
  41.   @If (@DirExists ("@WindowsDrive:@WindowsDir\\SYSTEM"))
  42.     @Dir @wSysDir     = "@SubDir\\SYSTEM"
  43.   @Else
  44.     @Dir @wSysDir     = "@SubDir"
  45.   @EndIf
  46.   @If (@DriveRemote (@InDrive))
  47.     @Integer @IsFloppy = 0
  48.   @ElseIf (@Removable (@InDrive))
  49.     @Integer @IsFloppy = 1
  50.   @Else
  51.     @Integer @IsFloppy = 0
  52.   @EndIf
  53. @EndVars
  54.  
  55.  
  56. //*** input language from user ************************************************
  57.  
  58. @SetGroup (E)
  59. @OldLang = 1
  60. @SetLang (1)
  61.  
  62. INPUTLANG:
  63. @GetGroups
  64.   @DlgCtrlSize (0,8,20,12,35)
  65.   @BackGroundMode (2,,)
  66.   @Cls
  67.   @If ('D' [= @Group)
  68.  
  69. Willkommen bei der miro╖win Installation Version @Version
  70.  
  71. Sprachauswahl:
  72.  
  73.   @Set D = "Deutsch"
  74.   @Set E = "English"
  75.  
  76.   @Else
  77.  
  78. Welcome to the miro╖win installation version @Version
  79.  
  80. Language selection:
  81.  
  82.   @Set E = "English"
  83.   @Set D = "Deutsch"
  84.  
  85.   @EndIf
  86. @EndGroups
  87.  
  88. @If ('D' [= @Group && @OldLang != 0)
  89.   @FlushGroups ()
  90.   @SetGroup (D)
  91.   @OldLang = 0
  92.   @SetLang (0)
  93. //@Goto INPUTLANG
  94. @ElseIf ('E' [= @Group && @OldLang != 1)
  95.   @FlushGroups ()
  96.   @SetGroup (E)
  97.   @OldLang = 1
  98.   @SetLang (1)
  99. //@Goto INPUTLANG
  100. @EndIf
  101.  
  102.  
  103. //*** define language dependant strings ***************************************
  104.  
  105. @DefineVars
  106.   @If ('D' [= @Group)
  107.     @QString @M00 = "Die Installation unterstⁿtzt keine"
  108.     @QString @M01 = "Version von Windows vor 3.1 !"
  109.     @QString @M10 = "WΣhlen Sie das Board aus, welches Sie installieren wollen:"
  110.     @QString @M12 = "Installierte Software komplett entfernen"
  111.     @QString @M20 = "WΣhlen Sie mit der Maus die Software aus, die Sie installieren wollen:"
  112.     @QString @M22 = "Windows 3.1 Treiber Software"
  113.     @QString @M23 = "zusΣtzliche miroWINTOOLS"
  114.     @QString @M24 = "miro-Hintergrundbild"
  115.     @QString @M30 = "Software entfernen:"
  116.     @QString @M31 = "Die installierte Software ist aktiv und kann nicht gel÷scht werden."
  117.     @QString @M32 = "Drⁿcken Sie OK, um mit der Installation fortzufahren."
  118.     @QString @M40 = "Geben Sie das Laufwerk fⁿr die miro-Software an:"
  119.     @QString @M45 = "Geben Sie das Verzeichnis fⁿr die miro-Software an:"
  120.   @Else
  121.     @QString @M00 = "The installation does not support"
  122.     @QString @M01 = "any version of Windows prior to 3.1 !"
  123.     @QString @M10 = "Select with your mouse the board you want to install:"
  124.     @QString @M12 = "Completely remove installed software"
  125.     @QString @M20 = "Select with your mouse the software you want to install:"
  126.     @QString @M22 = "Windows 3.1 driver software"
  127.     @QString @M23 = "additional miroWINTOOLS"
  128.     @QString @M24 = "miro wallpaper"
  129.     @QString @M30 = "Uninstall software:"
  130.     @QString @M31 = "The installed software is active and can therfore not be deleted."
  131.     @QString @M32 = "Press OK to proceed with the installation"
  132.     @QString @M40 = "Enter the drive for the miro software:"
  133.     @QString @M45 = "Enter the directory for the miro software:"
  134.   @EndIf
  135. @EndVars
  136.  
  137.  
  138. //*** check windows version ***************************************************
  139.  
  140. @If (@WindowsMajor < 3 || @WindowsMajor == 3 && @WindowsMinor < 1)
  141.   @FlushKeyboard
  142.   @Display
  143.   @BackGroundMode (3, @Red, @Red)
  144.   @Cls
  145. @M00
  146. @M01
  147.   @Pause
  148.   @Abort
  149.   @EndDisplay
  150. @Endif
  151.  
  152.  
  153. //*** input board type by user ************************************************
  154.  
  155. BOARDSELECT:
  156. @GetOption
  157.   @DlgCtrlSize (0,4,0,15,50)
  158.   @BackGroundMode (3,@Blue, @Blue)
  159.   @Cls
  160.  
  161. @M10
  162.  
  163.   @Option 103 = "miroVIDEO 40SV ergo (4MB)"
  164.   @Option 101 = "miroVIDEO 20SV (2MB)"
  165.   @Option 102 = "miroVIDEO 20SD (2MB)"
  166. //  @Option 111 = "(miroCRYSTAL 20SV (2MB))"
  167. //  @Option 104 = "miroVIDEO 20SV ergo (2MB)"
  168. //  @Option 100 = "miroVIDEO 40SV (4MB)"
  169.   @Option 210 = "@M12"
  170. @EndOption
  171.  
  172.  
  173. //*** input items to install from user ****************************************
  174.  
  175. @If (210 [! @Option) // uninstall
  176.   @SetOption (200)
  177.   @GetOption
  178.     @CheckBox
  179.     @DlgCtrlSize (0,4,0,8,50)
  180.     @BackGroundMode (3,@Blue, @Blue)
  181.     @Cls
  182.  
  183. @M20
  184.  
  185.     @Option 200 = "@M22"
  186.     @Option 201 = "@M23"
  187.     @Option 202 = "@M24"
  188.   @EndOption
  189. @EndIf
  190.  
  191.  
  192. //*** input SYSTEM directory by user ******************************************
  193.  
  194. @If (200 [= @Option || 201 [= @Option)
  195.  
  196. @GetOutDrive @miroDrive
  197.     @Suppress A
  198.     @Suppress B
  199. @DlgCtrlSize (0,4,0,8,50)
  200. @BackGroundMode (3,@Blue, @Blue)
  201. @Cls
  202. @M40
  203. @EndOutDrive
  204.  
  205. @GetSubDir @miroDir
  206. @DlgCtrlSize (0,4,0,5,50)
  207. @BackGroundMode (3,@Blue, @Blue)
  208. @Cls
  209. @Default = "\\MIRO"
  210. @M45
  211. @EndSubDir
  212.  
  213. @EndIf
  214.  
  215.  
  216.  
  217.  
  218. //*** Uninstall software ******************************************************
  219.  
  220. @If (210 [= @Option) // uninstall
  221. @If (  (@StrFind(@GetINI ("boot", "386grabber", "system.ini"),"octovga") > -1)
  222.     || (@StrFind(@GetINI ("boot", "386grabber", "system.ini"),"mirogrb") > -1)
  223.     )
  224.   @FlushKeyboard
  225.   @Display
  226. @M31
  227. @M32
  228.   @Pause
  229.   @EndDisplay
  230.   @ClearOption (210)
  231.   @UnInstall = @True
  232.   @Goto BOARDSELECT
  233.  
  234. @Else
  235.   @FlushKeyboard
  236.   @Display
  237. @M30
  238.   @Pause
  239.   @EndDisplay
  240.  
  241.   @Delete ("@OutDrive:@wSysDir\\OEMMAG2E.*")
  242.   @Delete ("@OutDrive:@wSysDir\\OEMMAG4E.*")
  243.   @Delete ("@OutDrive:@wSysDir\\OEMV20SV.*")
  244.   @Delete ("@OutDrive:@wSysDir\\OEMV20E.*")
  245.   @Delete ("@OutDrive:@wSysDir\\OEMC20E.*")
  246.   @Delete ("@OutDrive:@wSysDir\\OEMC20T.*")
  247.   @Delete ("@OutDrive:@wSysDir\\OEMC20DT.*")
  248.   @Delete ("@OutDrive:@wSysDir\\OEMV40SV.*")
  249.   @Delete ("@OutDrive:@wSysDir\\OEMV40E.*")
  250.   @Delete ("@OutDrive:@wSysDir\\OEMC40E.*")
  251.   @Delete ("@OutDrive:@wSysDir\\OEMC40T.*")
  252.   @Delete ("@OutDrive:@wSysDir\\OEMV20SD.*")
  253.   @Delete ("@OutDrive:@wSysDir\\OEMC20TW.*")
  254.   @Delete ("@OutDrive:@wSysDir\\OEMMAG40.*")
  255.   @Delete ("@OutDrive:@wSysDir\\OEMMAG20.*")
  256.   @Delete ("@OutDrive:@wSysDir\\OEMBIBO?.*")
  257.   @Delete ("@OutDrive:@wSysDir\\OEMC10SD.*")
  258.   @Delete ("@OutDrive:@wSysDir\\OEMC20SD.*")
  259.   @Delete ("@OutDrive:@wSysDir\\OEMC20D1.*")
  260.   @Delete ("@OutDrive:@wSysDir\\OEMC20SV.*")
  261.   @Delete ("@OutDrive:@wSysDir\\OEMC40SV.*")
  262.   @Delete ("@OutDrive:@wSysDir\\OEMMAG40.*")
  263.   @Delete ("@OutDrive:@wSysDir\\OEMMAG20.*")
  264.   @Delete ("@OutDrive:@wSysDir\\OEMC20TW.*")
  265.   @Delete ("@OutDrive:@wSysDir\\OEMBIBO?.*")
  266.   @Delete ("@OutDrive:@wSysDir\\OEMMAGS4.*")
  267.   @Delete ("@OutDrive:@wSysDir\\OEMRAIN.*")
  268.   @Delete ("@OutDrive:@wSysDir\\OEMCR8S.*")
  269.   @Delete ("@OutDrive:@wSysDir\\OEMCR16S.*")
  270.   @Delete ("@OutDrive:@wSysDir\\OEMCR24S.*")
  271.   @Delete ("@OutDrive:@wSysDir\\OEMCR32S.*")
  272.   @Delete ("@OutDrive:@wSysDir\\OEMC40PV.*")
  273.   @Delete ("@OutDrive:@wSysDir\\OEMC20PV.*")
  274.  
  275.   @Delete ("@OutDrive:@wSysDir\\VXPMR*.DRV")
  276.   @Delete ("@OutDrive:@wSysDir\\MIRODCI.DRV")
  277.   @Delete ("@OutDrive:@wSysDir\\BITUM.DRV")
  278.   @Delete ("@OutDrive:@SubDir\\BITUM.INI")
  279.   @Delete ("@OutDrive:@wSysDir\\MIROINIT.DLL")
  280.   @Delete ("@OutDrive:@SubDir\\MIROINIT.DLL")
  281.   @Delete ("@OutDrive:@wSysDir\\MIROHW.DLL")
  282.   @Delete ("@OutDrive:@SubDir\\MIROHW.DLL")
  283.   @delete ("@outdrive:@wsysdir\\mirologo.rle")
  284.   @delete ("@outdrive:@subdir\\*.mir")
  285.  
  286.   @Delete ("@OutDrive:@wSysDir\\1SD*.DRV")
  287.   @Delete ("@OutDrive:@wSysDir\\C20SD*.DRV")
  288.   @Delete ("@OutDrive:@wSysDir\\C20SV*.DRV")
  289.   @Delete ("@OutDrive:@wSysDir\\C40SV*.DRV")
  290.   @Delete ("@OutDrive:@wSysDir\\C40PV*.DRV")
  291.   @Delete ("@OutDrive:@wSysDir\\C20PV*.DRV")
  292.   @Delete ("@OutDrive:@wSysDir\\M20*.DRV")
  293.   @Delete ("@OutDrive:@wSysDir\\M40*.DRV")
  294.   @Delete ("@OutDrive:@wSysDir\\TW10*.DRV")
  295.   @Delete ("@OutDrive:@wSysDir\\TW20*.DRV")
  296.   @Delete ("@OutDrive:@wSysDir\\TWIN.DRV")
  297.   @Delete ("@OutDrive:@wSysDir\\MAGS4*.DRV")
  298.   @Delete ("@OutDrive:@wSysDir\\RAIN*.DRV")
  299.   @Delete ("@OutDrive:@wSysDir\\C8S*.DRV")
  300.   @Delete ("@OutDrive:@wSysDir\\CR16S*.DRV")
  301.   @Delete ("@OutDrive:@wSysDir\\CR24S*.DRV")
  302.   @Delete ("@OutDrive:@wSysDir\\CR32S*.DRV")
  303.   @Delete ("@OutDrive:@wSysDir\\S3VSND24.DRV")
  304.   @Delete ("@OutDrive:@wSysDir\\OCTO.MON")
  305.   @Delete ("@OutDrive:@wSysDir\\OCTOVGA.*")
  306.   @Delete ("@OutDrive:@wSysDir\\MIROVGA.*")
  307.   @Delete ("@OutDrive:@SubDir\\CRYSTAL.BMP")
  308.   @Delete ("@OutDrive:@SubDir\\MAGIC.BMP")
  309.   @Delete ("@OutDrive:@SubDir\\MINFO.TXT")
  310.   @Delete ("@OutDrive:@SubDir\\MWINTOOL.INI")
  311.   @Delete ("@OutDrive:@SubDir\\MSUP*.*")
  312.   @Delete ("@miroDrive:@miroDir\\COMMON\\MIROHW.INI")
  313.   @Delete ("@miroDrive:@miroDir\\COMMON\\MONSEL.EXE")
  314.   @Delete ("@miroDrive:@miroDir\\COMMON\\MONSEL.INI")
  315.   @Delete ("@miroDrive:@miroDir\\COMMON\\MONSEL.HLP")
  316.   @Delete ("@OutDrive:@SubDir\\MONSEL.*")
  317.   @Delete ("@OutDrive:@SubDir\\VIRTDLL.DLL")
  318.   @Delete ("@OutDrive:@SubDir\\MPWRSAVE.SCR")
  319.   @Delete ("@OutDrive:@SubDir\\TWIN*.*")
  320.   @Delete ("@OutDrive:@SubDir\\MTINT*.*")
  321.   @Delete ("@miroDrive:@miroDir\\COMMON\\MTINT.EXE")
  322.   @Delete ("@miroDrive:@miroDir\\COMMON\\MTINT.HLP")
  323.   @Delete ("@miroDrive:@miroDir\\COMMON\\MTINT.INI")
  324.   @Delete ("@OutDrive:@SubDir\\WSIZER.*")
  325.   @Delete ("@miroDrive:@miroDir\\COMMON\\WSIZER.EXE")
  326.   @Delete ("@miroDrive:@miroDir\\COMMON\\WSIZER.INI")
  327.   @Delete ("@miroDrive:@miroDir\\COMMON\\WSIZER.HLP")
  328.   @Delete ("@miroDrive:@miroDir\\COMMON\\MCLASS.DLL")
  329.   @Delete ("@OutDrive:@SubDir\\WADJUST.*")
  330.   @Delete ("@miroDrive:@miroDir\\COMMON\\WADJUST.*")
  331.   @Delete ("@OutDrive:@SubDir\\MFONTCOM.EXE")
  332.   @Delete ("@OutDrive:@SubDir\\MIROSCOP.EXE")
  333.   @Delete ("@miroDrive:@miroDir\\COMMON\\MSCOPE.EXE")
  334.   @Delete ("@miroDrive:@miroDir\\COMMON\\MSCOPE.INI")
  335.   @Delete ("@OutDrive:@SubDir\\MIROHOOK.DLL")
  336.   @Delete ("@OutDrive:@SubDir\\MSCOPE*.HLP")
  337.   @Delete ("@OutDrive:@SubDir\\MSIZE*.*")
  338.   @Delete ("@miroDrive:@miroDir\\COMMON\\DRIVCFG.EXE")
  339.   @Delete ("@miroDrive:@miroDir\\COMMON\\DRIVCFG.INI")
  340.   @Delete ("@miroDrive:@miroDir\\COMMON\\DRIVCFG.HLP")
  341.   @Delete ("@miroDrive:@miroDir\\COMMON\\OEM*.INF")
  342.   @Delete ("@miroDrive:@miroDir\\COMMON\\MSYSTEM.INI")
  343.  
  344.  
  345.   @WinExec ("PROGMAN.EXE", 1)
  346. @Display // ???
  347.   @ProgramManager ("[ShowGroup (miroWINTOOLS, 2)]")
  348.   @Delay = @SystemDate
  349. CLa: @If (@SystemDate - @Delay <= @d) @Goto CLa @EndIf
  350.   @ProgramManager ("[DeleteItem (miro SUPERSCREEN)]")
  351.   @Delay = @SystemDate
  352. CLbb: @If (@SystemDate - @Delay <= @d) @Goto CLbb @EndIf
  353.   @ProgramManager ("[DeleteItem (miroMONITOR-Select)]")
  354.   @Delay = @SystemDate
  355. CLb: @If (@SystemDate - @Delay <= @d) @Goto CLb @EndIf
  356.   @ProgramManager ("[DeleteItem (miro MONITOR SELECT)]")
  357.   @Delay = @SystemDate
  358. CLc: @If (@SystemDate - @Delay <= @d) @Goto CLc @EndIf
  359.   @ProgramManager ("[DeleteItem (miroTINT CONTROL)]")
  360.   @Delay = @SystemDate
  361. CLd: @If (@SystemDate - @Delay <= @d) @Goto CLd @EndIf
  362.   @ProgramManager ("[DeleteItem (miro HOTKEY)]")
  363.   @Delay = @SystemDate
  364. CLk: @If (@SystemDate - @Delay <= @d) @Goto CLk @EndIf
  365.   @ProgramManager ("[DeleteItem (miro PINBOARD)]")
  366.   @Delay = @SystemDate
  367. CLl: @If (@SystemDate - @Delay <= @d) @Goto CLl @EndIf
  368.   @ProgramManager ("[DeleteItem (miroSCREEN-Adjust)]")
  369.   @Delay = @SystemDate
  370. CLe: @If (@SystemDate - @Delay <= @d) @Goto CLe @EndIf
  371.   @ProgramManager ("[DeleteItem (miro FONTCOMPILER)]")
  372.   @Delay = @SystemDate
  373. CLf: @If (@SystemDate - @Delay <= @d) @Goto CLf @EndIf
  374.   @ProgramManager ("[DeleteItem (miroSCOPE)]")
  375.   @Delay = @SystemDate
  376. CLg: @If (@SystemDate - @Delay <= @d) @Goto CLg @EndIf
  377.   @ProgramManager ("[DeleteItem (miroSIZE CALIBRATION)]")
  378.   @Delay = @SystemDate
  379. CLh: @If (@SystemDate - @Delay <= @d) @Goto CLh @EndIf
  380.   @ProgramManager ("[DeleteItem (miro TWINFACE)]")
  381.   @Delay = @SystemDate
  382. CLi: @If (@SystemDate - @Delay <= @d) @Goto CLi @EndIf
  383.   @ProgramManager ("[DeleteItem (Information)]")
  384.   @Delay = @SystemDate
  385. CLaa: @If (@SystemDate - @Delay <= @d) @Goto CLaa @EndIf
  386.   @ProgramManager ("[DeleteItem (miroDRIVER-Control)]")
  387.   @Delay = @SystemDate
  388. CLj: @If (@SystemDate - @Delay <= @d) @Goto CLj @EndIf
  389.   @ProgramManager ("[DeleteGroup (miroWINTOOLS)]")
  390.   @Delay = @SystemDate
  391. CLm: @If (@SystemDate - @Delay <= @d) @Goto CLm @EndIf
  392. @EndDisplay
  393.  
  394.  
  395.   @SetINI ("928.drv", "dpi",, "system.ini")
  396.   @SetINI ("928.drv", "Virtual_Size_X",, "system.ini")
  397.   @SetINI ("928.drv", "Virtual_Size_Y",, "system.ini")
  398.   @SetINI ("928.drv", "Screen_Size_X",, "system.ini")
  399.   @SetINI ("928.drv", "Screen_Size_Y",, "system.ini")
  400.   @SetINI ("928.drv", "Memory_Size_X",, "system.ini")
  401.   @SetINI ("928.drv", "Memory_Size_Y",, "system.ini")
  402.   @SetINI ("928.drv", "Pixel_Size",, "system.ini")
  403.   @SetINI ("928.drv", "polygon-support",, "system.ini")
  404.   @SetINI ("928.drv", "TV",, "system.ini")
  405.   @SetINI ("928.drv", "2in1",, "system.ini")
  406.   @SetINI ("928.drv", "15BPP",, "system.ini")
  407.   @SetINI ("928.drv", "notaus",, "system.ini")
  408.   @SetINI ("928.drv", "DRAM",, "system.ini")
  409.   @SetINI ("928.drv", "VXPBlt",, "system.ini")
  410.   @SetINI ("928.drv", "FIFO",, "system.ini")
  411.   @SetINI ("928.drv", "Mon_Data",, "system.ini")
  412.   @SetINI ("928.drv", "Mon_Path",, "system.ini")
  413.   @SetINI ("928.drv", "MonDesc",, "system.ini")
  414.   @SetINI ("928.drv", "BoardDesc",, "system.ini")
  415.   @SetINI ("928.drv", "CardID",, "system.ini")
  416.   @SetINI ("928.drv", "CardSubID",, "system.ini")
  417.   @SetINI ("928.drv", "Font",, "system.ini")
  418.   @SetINI ("928.drv", "RAM",, "system.ini")
  419.   @SetINI ("928.drv", "PhysBoardNr",, "system.ini")
  420.   @SetINI ("928.drv", "SysColors",, "system.ini")
  421.  
  422.   @SetINI ("twinleft.drv", "dpi",, "system.ini")
  423.   @SetINI ("twinleft.drv", "Virtual_Size_X",, "system.ini")
  424.   @SetINI ("twinleft.drv", "Virtual_Size_Y",, "system.ini")
  425.   @SetINI ("twinleft.drv", "Screen_Size_X",, "system.ini")
  426.   @SetINI ("twinleft.drv", "Screen_Size_Y",, "system.ini")
  427.   @SetINI ("twinleft.drv", "Memory_Size_X",, "system.ini")
  428.   @SetINI ("twinleft.drv", "Memory_Size_Y",, "system.ini")
  429.   @SetINI ("twinleft.drv", "Pixel_Size",, "system.ini")
  430.   @SetINI ("twinleft.drv", "polygon-support",, "system.ini")
  431.   @SetINI ("twinleft.drv", "TV",, "system.ini")
  432.   @SetINI ("twinleft.drv", "2in1",, "system.ini")
  433.   @SetINI ("twinleft.drv", "15BPP",, "system.ini")
  434.   @SetINI ("twinleft.drv", "notaus",, "system.ini")
  435.   @SetINI ("twinleft.drv", "DRAM",, "system.ini")
  436.   @SetINI ("twinleft.drv", "VXPBlt",, "system.ini")
  437.   @SetINI ("twinleft.drv", "FIFO",, "system.ini")
  438.   @SetINI ("twinleft.drv", "Mon_Data",, "system.ini")
  439.   @SetINI ("twinleft.drv", "Mon_Path",, "system.ini")
  440.   @SetINI ("twinleft.drv", "MonDesc",, "system.ini")
  441.   @SetINI ("twinleft.drv", "BoardDesc",, "system.ini")
  442.   @SetINI ("twinleft.drv", "CardID",, "system.ini")
  443.   @SetINI ("twinleft.drv", "CardSubID",, "system.ini")
  444.   @SetINI ("twinleft.drv", "Font",, "system.ini")
  445.   @SetINI ("twinleft.drv", "RAM",, "system.ini")
  446.   @SetINI ("twinleft.drv", "PhysBoardNr",, "system.ini")
  447.   @SetINI ("twinleft.drv", "SysColors",, "system.ini")
  448.  
  449.   @SetINI ("twinright.drv", "dpi",, "system.ini")
  450.   @SetINI ("twinright.drv", "Virtual_Size_X",, "system.ini")
  451.   @SetINI ("twinright.drv", "Virtual_Size_Y",, "system.ini")
  452.   @SetINI ("twinright.drv", "Screen_Size_X",, "system.ini")
  453.   @SetINI ("twinright.drv", "Screen_Size_Y",, "system.ini")
  454.   @SetINI ("twinright.drv", "Memory_Size_X",, "system.ini")
  455.   @SetINI ("twinright.drv", "Memory_Size_Y",, "system.ini")
  456.   @SetINI ("twinright.drv", "Pixel_Size",, "system.ini")
  457.   @SetINI ("twinright.drv", "polygon-support",, "system.ini")
  458.   @SetINI ("twinright.drv", "TV",, "system.ini")
  459.   @SetINI ("twinright.drv", "2in1",, "system.ini")
  460.   @SetINI ("twinright.drv", "15BPP",, "system.ini")
  461.   @SetINI ("twinright.drv", "notaus",, "system.ini")
  462.   @SetINI ("twinright.drv", "DRAM",, "system.ini")
  463.   @SetINI ("twinright.drv", "VXPBlt",, "system.ini")
  464.   @SetINI ("twinright.drv", "FIFO",, "system.ini")
  465.   @SetINI ("twinright.drv", "Mon_Data",, "system.ini")
  466.   @SetINI ("twinright.drv", "Mon_Path",, "system.ini")
  467.   @SetINI ("twinright.drv", "MonDesc",, "system.ini")
  468.   @SetINI ("twinright.drv", "BoardDesc",, "system.ini")
  469.   @SetINI ("twinright.drv", "CardID",, "system.ini")
  470.   @SetINI ("twinright.drv", "CardSubID",, "system.ini")
  471.   @SetINI ("twinright.drv", "Font",, "system.ini")
  472.   @SetINI ("twinright.drv", "RAM",, "system.ini")
  473.   @SetINI ("twinright.drv", "PhysBoardNr",, "system.ini")
  474.   @SetINI ("twinright.drv", "SysColors",, "system.ini")
  475.  
  476.   @SetINI ("boot.description", "displayinf",, "system.ini")
  477.   @SetINI ("boot.description", "displayinf2",, "system.ini")
  478.   @SetINI ("mboot.description", "displayinf",, "system.ini")
  479.   @SetINI ("mboot.description", "displayinf2",, "system.ini")
  480.   @SetINI ("mboot.description", "mboot",, "system.ini")
  481.   @SetINI ("mboot.description", "f_flag",, "system.ini")
  482.   @SetINI ("mboot.description", "boardfam",, "system.ini")
  483.   @SetINI ("mboot.description", "displayinf",, "system.ini")
  484.   @SetINI ("mboot.description", "resolution",, "system.ini")
  485.   @SetINI ("mboot.description", "resolution2",, "system.ini")
  486.   @SetINI ("mboot.description", "left",, "system.ini")
  487.   @SetINI ("mboot.description", "right",, "system.ini")
  488.   @SetINI ("mboot.description","Screen_Size_X",, "system.ini")
  489.   @SetINI ("mboot.description","Screen_Size_Y",, "system.ini")
  490.   @SetINI ("mboot.description","Pixel_Size",, "system.ini")
  491.   @SetINI ("mboot.description","dpi",, "system.ini")
  492.   @SetINI ("mboot.description", "BusType",, "system.ini")
  493.   @SetINI ("mboot.description", "BoardDesc",, "system.ini")
  494.   @SetINI ("mboot.description", "MonDesc",, "system.ini")
  495.  
  496.   @SetINI ("2in1.drv", "driverx1",, "system.ini")
  497.   @SetINI ("2in1.drv", "driverx2",, "system.ini")
  498.   @SetINI ("2in1.drv", "display1",, "system.ini")
  499.   @SetINI ("2in1.drv", "display2",, "system.ini")
  500.  
  501.   @SetINI ("miroSCOPE", "Sensibility",, "win.ini")
  502.   @SetINI ("miroSCOPE", "Zoom Factor",, "win.ini")
  503.   @SetINI ("miroSCOPE", "Hotkey Number",, "win.ini")
  504.   @SetINI ("miroSCOPE", "Window dimensions",, "win.ini")
  505.  
  506.   @SetINI ("miroTWINFACE", "top",, "win.ini")
  507.   @SetINI ("miroTWINFACE", "run",, "win.ini")
  508.   @SetINI ("miroTWINFACE", "align",, "win.ini")
  509.  
  510.   @SetINI ("miroVIRTUAL", "top",, "win.ini")
  511.   @SetINI ("miroVIRTUAL", "run",, "win.ini")
  512.   @SetINI ("miroVIRTUAL", "align",, "win.ini")
  513.  
  514.   @SetINI ("TintControl", "SIP_MONTEMP",, "win.ini")
  515.   @SetINI ("TintControl", "SIP_COLOR",, "win.ini")
  516.   @SetINI ("TintControl", "CLUT",, "win.ini")
  517.   @SetINI ("TintControl", "CLUT1",, "win.ini")
  518.   @SetINI ("TintControl", "CLUT2",, "win.ini")
  519.  
  520.   @SetINI ("miroSIZE CALIBRATION", "DP100mmX",, "win.ini")
  521.   @SetINI ("miroSIZE CALIBRATION", "DP100mmY",, "win.ini")
  522.   @SetINI ("miroSIZE CALIBRATION", "HiResMonitorX",, "win.ini")
  523.   @SetINI ("miroSIZE CALIBRATION", "HiResMonitorY",, "win.ini")
  524.  
  525.   @SetINI ("Screensaver.miroPOWERSAVE", "VESAMonitors",, "control.ini")
  526.   @SetINI ("Screensaver.miroPOWERSAVE", "ResumeAfterPOWERDOWN",, "control.ini")
  527.   @SetINI ("Screensaver.miroPOWERSAVE", "TEST_VESAMonitors",, "control.ini")
  528.   @SetINI ("Screensaver.miroPOWERSAVE", "StandbyTime",, "control.ini")
  529.   @SetINI ("Screensaver.miroPOWERSAVE", "SuspendTime",, "control.ini")
  530.  
  531.   @SetINI ("s3_24.drv", "FontSize",, "system.ini")
  532.   @SetINI ("s3_24.drv", "WidthXHeight",, "system.ini")
  533.  
  534.   @SetINI ("v631p.drv","FontSize",, "system.ini")
  535.   @SetINI ("v631p.drv","EnableHwCursor",, "system.ini")
  536.   @SetINI ("v631p.drv","WidthXHeight",, "system.ini")
  537.   @SetINI ("avga800.drv","FontSize",, "system.ini")
  538.   @SetINI ("avga800.drv","EnableHwCursor",, "system.ini")
  539.   @SetINI ("avga800.drv","WidthXHeight",, "system.ini")
  540.   @SetINI ("al314p.drv","FontSize",, "system.ini")
  541.   @SetINI ("al314p.drv","EnableHwCursor",, "system.ini")
  542.   @SetINI ("al314p.drv","WidthXHeight",, "system.ini")
  543.   @SetINI ("avga1280.drv","FontSize",, "system.ini")
  544.   @SetINI ("avga1280.drv","EnableHwCursor",, "system.ini")
  545.   @SetINI ("avga1280.drv","WidthXHeight",, "system.ini")
  546.   @SetINI ("al3164p.drv","FontSize",, "system.ini")
  547.   @SetINI ("al3164p.drv","EnableHwCursor",, "system.ini")
  548.   @SetINI ("al3164p.drv","WidthXHeight",, "system.ini")
  549.   @SetINI ("al16m.drv","FontSize",, "system.ini")
  550.   @SetINI ("al16m.drv","EnableHwCursor",, "system.ini")
  551.   @SetINI ("al16m.drv","WidthXHeight",, "system.ini")
  552.   @SetINI ("v631f8s.drv","FontSize",, "system.ini")
  553.   @SetINI ("v631f8s.drv","EnableHwCursor",, "system.ini")
  554.   @SetINI ("v631f8s.drv","WidthXHeight",, "system.ini")
  555.  
  556.   @If (   "@GetINI ("drivers","DCI","system.ini")" == "MIRODCI"
  557.       &&  "@GetINI ("drivers","MIRODCI","system.ini")" != ""
  558.       )
  559.     @SetINI ("drivers", "DCI", "@GetINI ("drivers","MIRODCI","system.ini")", "system.ini")
  560.     @SetINI ("drivers", "MIRODCI",, "system.ini")
  561.   @Else
  562.     @If (   "@GetINI ("drivers","DCI","system.ini")" == "MIRODCI")
  563.       @SetINI ("drivers", "DCI",, "system.ini")
  564.     @EndIf
  565.   @EndIf
  566.  
  567.   @merke = @GetINI("Windows", "run","win.ini")
  568.   @If (@StrFind("@merke", "@miroDrive:@miroDir\\COMMON\\WSIZER.EXE") > -1)
  569.     @merke = @StrDel("@merke", @StrFind("@merke", "@miroDrive:@miroDir\\COMMON\\WSIZER.EXE"),@StrLen("@miroDrive:@miroDir\\COMMON\\WSIZER.EXE "))
  570.     @SetINI ("Windows", "run", "@merke", "win.ini")
  571.   @EndIf
  572.  
  573.   //OLD WSIZER
  574.   @merke = @GetINI("Windows", "run","win.ini")
  575.   @If (@StrFind("@merke", "@OutDrive:@SubDir\\WSIZER.EXE") > -1)
  576.     @merke = @StrDel("@merke", @StrFind("@merke", "@OutDrive:@SubDir\\WSIZER.EXE"),@StrLen("@OutDrive:@SubDir\\WSIZER.EXE "))
  577.     @SetINI ("Windows", "run", "@merke", "win.ini")
  578.   @EndIf
  579.  
  580.   @ClearOption (210)
  581.   @UnInstall = @True
  582.   @Goto BOARDSELECT
  583. @EndIf
  584. @EndIf
  585.  
  586.  
  587. //*** files to be copied ******************************************************
  588.  
  589. @If (200 [= @Option    // copy if Windows drivers
  590.     || 201 [= @Option) // or miro windows tools
  591.     @MkDir("@miroDrive:@miroDir")
  592.     @MkDir("@miroDrive:@miroDir\\COMMON")
  593.     @MkDir("@miroDrive:@miroDir\\TIMING")
  594.     @MkDir("@miroDrive:@miroDir\\FONT")
  595. @Endif
  596. @If (200 [= @Option    // copy if Windows drivers
  597.     || 201 [= @Option) // or miro windows tools
  598.   @If ('D' [= @Group)
  599.     @Copy ("@InDrive:\\README.DEU","@miroDrive:@miroDir\\COMMON\\MINFO.TXT")
  600.   @Else
  601.     @Copy ("@InDrive:\\README.ENG","@miroDrive:@miroDir\\COMMON\\MINFO.TXT")
  602.   @EndIf
  603. @EndIf
  604.  
  605. @If (200 [= @Option) // Windows drivers
  606.   @DefineDisk
  607.     @Label = "Install disk # 1/2"
  608.     @BeginLib DRIVERS.RED
  609.       @File OEMV40SV.DEU  @Size 30000  @Out @wSysDir\\*.INF @Option 100 @Group D
  610.       @File OEMV40SV.ENG  @Size 30000  @Out @wSysDir\\*.INF @Option 100 @Group E
  611.       @File OEMV20SV.DEU  @Size 25000  @Out @wSysDir\\*.INF @Option 101 @Group D
  612.       @File OEMV20SV.ENG  @Size 25000  @Out @wSysDir\\*.INF @Option 101 @Group E
  613.       @File OEMV20SD.DEU  @Size 25000  @Out @wSysDir\\*.INF @Option 102 @Group D
  614.       @File OEMV20SD.ENG  @Size 25000  @Out @wSysDir\\*.INF @Option 102 @Group E
  615.       @File OEMV40E.DEU   @Size 35000  @Out @wSysDir\\*.INF @Option 103 @Group D
  616.       @File OEMV40E.ENG   @Size 35000  @Out @wSysDir\\*.INF @Option 103 @Group E
  617.       @File OEMV20E.DEU   @Size 25000  @Out @wSysDir\\*.INF @Option 104 @Group D
  618.       @File OEMV20E.ENG   @Size 25000  @Out @wSysDir\\*.INF @Option 104 @Group E
  619.       @File OEMV40SV.DEU  @Size 30000  @Out @miroDrive:@miroDir\\COMMON\\*.INF @Option 100 @Group D
  620.       @File OEMV40SV.ENG  @Size 30000  @Out @miroDrive:@miroDir\\COMMON\\*.INF @Option 100 @Group E
  621.       @File OEMV20SV.DEU  @Size 25000  @Out @miroDrive:@miroDir\\COMMON\\*.INF @Option 101 @Group D
  622.       @File OEMV20SV.ENG  @Size 25000  @Out @miroDrive:@miroDir\\COMMON\\*.INF @Option 101 @Group E
  623.       @File OEMV20SD.DEU  @Size 25000  @Out @miroDrive:@miroDir\\COMMON\\*.INF @Option 102 @Group D
  624.       @File OEMV20SD.ENG  @Size 25000  @Out @miroDrive:@miroDir\\COMMON\\*.INF @Option 102 @Group E
  625.       @File OEMV40E.DEU   @Size 35000  @Out @miroDrive:@miroDir\\COMMON\\*.INF @Option 103 @Group D
  626.       @File OEMV40E.ENG   @Size 35000  @Out @miroDrive:@miroDir\\COMMON\\*.INF @Option 103 @Group E
  627.       @File OEMV20E.DEU   @Size 25000  @Out @miroDrive:@miroDir\\COMMON\\*.INF @Option 104 @Group D
  628.       @File OEMV20E.ENG   @Size 25000  @Out @miroDrive:@miroDir\\COMMON\\*.INF @Option 104 @Group E
  629.  
  630.       @File VXPMR_08.DRV @Size 260000 @Out @wSysDir\\VXPMR_08.* 
  631.       @File VXPMR_16.DRV @Size 250000 @Out @wSysDir\\VXPMR_15.* 
  632.       @File VXPMR_16.DRV @Size 250000 @Out @wSysDir\\VXPMR_16.* 
  633.       @File VXPMR_32.DRV @Size 250000 @Out @wSysDir\\VXPMR_32.* 
  634.       @File S3FLAT.DRV   @Size 250000 @Out @wSysDir\\*.* @Option 103
  635.  
  636.       @File MIRODCI.DRV  @Size 55000  @Out @wSysDir\\MIRODCI.DRV 
  637.       @File DCIMAN.DLL   @Size 37000  @Out @wSysDir\\DCIMAN.DLL
  638.       @File UDH.DLL      @Size 9000   @Out @wSysDir\\UDH.DLL 
  639.       @File BITUM.DRV    @Size 70000  @Out @wSysDir\\*.*
  640.       @File BITUM.INI    @Size 500    @Out *.*
  641.       @File MIROINIT.DLL @Size 110000 @Out @wSysDir\\*.*
  642.       @File MIROHW.DLL   @Size 90000  @Out @wSysDir\\*.*
  643.       @File MIROHW.INI   @Size 1000   @Out @miroDrive:@miroDir\\COMMON\\*.*
  644.  
  645.       @File MONITOR.INI  @Size 30000  @Out @miroDrive:@miroDir\\TIMING\\*.*
  646.       @File TIMING.INI   @Size 50000  @Out @miroDrive:@miroDir\\TIMING\\*.*
  647.       @File CARD0214.INI @Size 15000  @Out @miroDrive:@miroDir\\TIMING\\*.*
  648.       @File CARD0015.INI @Size 15000  @Out @miroDrive:@miroDir\\TIMING\\*.*
  649.       @File CARD0115.INI @Size 15000  @Out @miroDrive:@miroDir\\TIMING\\*.*
  650.       @File CARD0016.INI @Size 15000  @Out @miroDrive:@miroDir\\TIMING\\*.*
  651.  
  652.       @File VGALOGO.LGO  @Size 2000   @Out @wSysDir\\*.*
  653.       @File MIROVDD.386  @Size 42000  @Out @wSysDir\\*.*
  654.       @File MIROGRB.3GR  @Size 16000  @Out @wSysDir\\*.*
  655.       @File MIROGRB.2GR  @Size 5000   @Out @wSysDir\\*.*
  656.       @File VGACOLOR.2GR @Size 5000   @Out @wSysDir\\*.* @Option 103
  657.       @File S3911GRB.3GR @Size 16000  @Out @wSysDir\\*.* @Option 103
  658.       @File VDDVIS68.386 @Size 43000  @Out @wSysDir\\*.* @Option 103
  659.       @File FONT.RSC     @Size 50000  @Out @miroDrive:@miroDir\\FONT\\*.*
  660.  
  661.       @File 8514FIX.FON  @Size 12000  @Out @wSysDir\\*.*
  662.       @File 8514OEM.FON  @Size 12000  @Out @wSysDir\\*.*
  663.       @File 8514SYS.FON  @Size 12000  @Out @wSysDir\\*.*
  664.       @File CGA40850.FON @Size 6000   @Out @wSysDir\\*.*
  665.       @File CGA80850.FON @Size 6000   @Out @wSysDir\\*.*
  666.       @File CGA40WOA.FON @Size 7000   @Out @wSysDir\\*.*
  667.       @File CGA80WOA.FON @Size 5000   @Out @wSysDir\\*.*
  668.       @File COURF.FON    @Size 30000  @Out @wSysDir\\*.*
  669.       @File EGA40850.FON @Size 8000   @Out @wSysDir\\*.*
  670.       @File EGA80850.FON @Size 8000   @Out @wSysDir\\*.*
  671.       @File EGA40WOA.FON @Size 9000   @Out @wSysDir\\*.*
  672.       @File EGA80WOA.FON @Size 8000   @Out @wSysDir\\*.*
  673.       @File VGAOEM.FON   @Size 7000   @Out @wSysDir\\*.*
  674.       @File SERIFF.FON   @Size 82000  @Out @wSysDir\\*.*
  675.       @File SMALLF.FON   @Size 22000  @Out @wSysDir\\*.*
  676.       @File SSERIFF.FON  @Size 90000  @Out @wSysDir\\*.*
  677.       @File SYMBOLF.FON  @Size 80000  @Out @wSysDir\\*.*
  678.     @EndLib
  679.   @EndDisk
  680. @EndIf
  681.  
  682. @If (202 [= @Option) // miro wallpaper
  683.   @DefineDisk
  684.     @Label = "Install disk # 1/2"
  685.     @BeginLib DRIVERS.RED
  686.       @File CRYSTAL.BMP  @Size 80000  @Out MIRO.* 
  687.     @EndLib
  688.   @EndDisk
  689. @EndIf
  690.  
  691.  
  692. @If (200 [= @Option)    // copy if Windows drivers
  693.   @DefineDisk
  694.     @If (@IsFloppy)
  695.       @Label = "Install disk # 2/2"
  696.     @Else
  697.       @Label = "Install disk # 1/2"
  698.     @EndIf
  699.     @BeginLib MWINTOOL.RED
  700.       @File MONSEL.EXE   @Size 70000  @Out @miroDrive:@miroDir\\COMMON\\*.*
  701.       @File MONSEL.INI   @Size 1000   @Out @miroDrive:@miroDir\\COMMON\\*.*
  702.       @File MONSEL.DEU   @Size 34000  @Out @miroDrive:@miroDir\\COMMON\\*.HLP @Group D
  703.       @File MONSEL.ENG   @Size 33000  @Out @miroDrive:@miroDir\\COMMON\\*.HLP @Group E
  704.       @File MSUPSCRN.EXE @Size 90000  @Out *.*
  705.       @File MSUP.DEU     @Size 26000  @Out *.HLP @Group D
  706.       @File MSUP.ENG     @Size 25000  @Out *.HLP @Group E
  707.  
  708.       @File MSUPVIRT.EXE @Size 20000  @Out *.*
  709.       @File VIRTDLL.DLL  @Size 10000  @Out *.*
  710.       @File MSUPVIR.DEU  @Size 10000  @Out *.HLP @Group D
  711.       @File MSUPVIR.ENG  @Size 10000  @Out *.HLP @Group E
  712.       @File MSUPHOT.EXE  @Size 20000  @Out *.*
  713.       @File MSUPSCRD.DLL @Size 3000   @Out *.*
  714.  
  715.       @File MPWRSAVE.SCR @Size 35000  @Out *.*
  716.       @File MTINT.EXE    @Size 95000  @Out @miroDrive:@miroDir\\COMMON\\*.*
  717.       @File MTINTDEU.HLP @Size 45000  @Out @miroDrive:@miroDir\\COMMON\\MTINT.HLP @Group D
  718.       @File MTINTENG.HLP @Size 45000  @Out @miroDrive:@miroDir\\COMMON\\MTINT.HLP @Group E
  719.       @File MTINTDEU.INI @Size 2500   @Out MTINT.INI @Group D
  720.       @File MTINTENG.INI @Size 2500   @Out MTINT.INI @Group E
  721.       @File WSIZER.EXE   @Size 120000 @Out @miroDrive:@miroDir\\COMMON\\*.*
  722.       @File WSIZER.INI   @Size 2000   @Out @miroDrive:@miroDir\\COMMON\\*.*
  723.       @File WSIZER.HLP   @Size 8000   @Out @miroDrive:@miroDir\\COMMON\\*.* @Group D
  724.       @File WSIZER_E.HLP @Size 8000   @Out @miroDrive:@miroDir\\COMMON\\WSIZER.* @Group E
  725.       @File WADJUST.EXE  @Size 82000  @Out @miroDrive:@miroDir\\COMMON\\*.*
  726.       @File WADJUST.INI  @Size 3000   @Out @miroDrive:@miroDir\\COMMON\\*.*
  727.       @File DRIVCFG.EXE  @Size 85000  @Out @miroDrive:@miroDir\\COMMON\\*.*
  728.       @File DRIVCFG.INI  @Size 6000   @Out @miroDrive:@miroDir\\COMMON\\*.*
  729.       @File DRIVCFG.DEU  @Size 12000  @Out @miroDrive:@miroDir\\COMMON\\DRIVCFG.HLP @Group D
  730.       @File DRIVCFG.ENG  @Size 12000  @Out @miroDrive:@miroDir\\COMMON\\DRIVCFG.HLP @Group E
  731.       @File S3REFRSH.EXE @Size 72000  @Out @miroDrive:@miroDir\\COMMON\\*.*
  732.     @EndLib
  733.   @EndDisk
  734. @EndIf
  735.  
  736. @If (200 [= @Option    // copy if Windows drivers
  737.     || 201 [= @Option) // or miro windows tools
  738.   @DefineDisk
  739.     @If (@IsFloppy)
  740.       @Label = "Install disk # 2/2"
  741.     @Else
  742.       @Label = "Install disk # 1/2"
  743.     @EndIf
  744.     @BeginLib MWINTOOL.RED
  745.       @File MWINTOOL.DEU @Size 15000  @Out *.INI @Group D
  746.       @File MWINTOOL.ENG @Size 15000  @Out *.INI @Group E
  747.       @File MCLASS.DLL   @Size 65000  @Out @miroDrive:@miroDir\\COMMON\\*.*
  748.     @EndLib
  749.   @EndDisk
  750. @EndIf
  751.  
  752. @If (201 [= @Option) // miro windows tools
  753.   @DefineDisk
  754.     @If (@IsFloppy)
  755.       @Label = "Install disk # 2/2"
  756.     @Else
  757.       @Label = "Install disk # 1/2"
  758.     @EndIf
  759.     @BeginLib MWINTOOL.RED
  760.       @File MSCOPE.EXE   @Size 35000  @Out @miroDrive:@miroDir\\COMMON\\*.*
  761.       @File MSCOPE.INI   @Size 5000   @Out @miroDrive:@miroDir\\COMMON\\*.*
  762.       //@File MSCOPE.ENG   @Size 55000  @Out @miroDrive:@miroDir\\COMMON\\*.HLP @Group E
  763.       //@File MSCOPE.DEU   @Size 55000  @Out @miroDrive:@miroDir\\COMMON\\*.HLP @Group D
  764.       @File MSIZER.EXE   @Size 35000  @Out *.*
  765.     @EndLib
  766.   @EndDisk
  767. @EndIf
  768.  
  769.  
  770.  
  771. //*** set variables in .INI files *********************************************
  772.  
  773. @If (200 [= @Option) // Windows drivers
  774.   @SetINI ("mboot.description", "displayinf2",, "system.ini")
  775.   @SetINI ("928.drv", "2in1",, "system.ini")
  776.   @SetINI ("928.drv", "notaus",, "system.ini")
  777.   @SetINI ("928.drv", "DRAM",, "system.ini")
  778.  
  779.   @SetINI ("928.drv", "LinBase",, "system.ini")
  780.   @SetINI ("mboot.description", "mboot","1", "system.ini")
  781.   @SetINI ("mboot.description", "miroPATH","@miroDrive:@miroDir", "system.ini")
  782.   @SetINI ("Desktop", "3D", "1", "win.ini")
  783.  
  784.   @If (   ("@GetINI ("drivers","DCI","system.ini")" != "")
  785.       &&  ("@GetINI ("drivers","DCI","system.ini")" != "MIRODCI")
  786.       &&  ("@GetINI ("drivers","MIRODCI","system.ini")" == "")
  787.       )
  788.     @SetINI ("drivers", "MIRODCI","@GetINI ("drivers","DCI","system.ini")", "system.ini")
  789.   @EndIf
  790.   @SetINI ("drivers", "DCI","MIRODCI", "system.ini")
  791.  
  792.   @SetINI ("drivers", "VIDS.DRAW","UDH.DLL", "system.ini")
  793.  
  794.   //del OLD WSIZER entry
  795.   @merke = @GetINI("Windows", "run","win.ini")
  796.   @If (@StrFind("@merke", "@OutDrive:@SubDir\\WSIZER.EXE") > -1)
  797.     @merke = @StrDel("@merke", @StrFind("@merke", "@OutDrive:@SubDir\\WSIZER.EXE"),@StrLen("@OutDrive:@SubDir\\WSIZER.EXE "))
  798.     @SetINI ("Windows", "run", "@merke", "win.ini")
  799.   @EndIf
  800.  
  801.   @merke = @GetINI("Windows", "run", "win.ini")
  802.   @If (  (@StrFind("@merke", "wsizer") < 0)
  803.       && (@StrFind("@merke", "WSIZER") < 0))
  804.     @SetINI ("Windows", "run", "@miroDrive:@miroDir\\COMMON\\WSIZER.EXE @merke", "win.ini" )
  805.   @EndIf
  806. @EndIf
  807.  
  808. @If (200 [= @Option    // copy if Windows drivers
  809.     || 201 [= @Option) // or miro windows tools
  810.  
  811.   @If (100 [= @Option)
  812.     @SetINI ("TintControl", "CLUT1", "TI3025", "win.ini")
  813.     @SetINI ("TintControl", "CLUT2",, "win.ini")
  814.   @EndIf
  815.   @If (102 [= @Option)
  816.     @SetINI ("TintControl", "CLUT1", " ", "win.ini")
  817.     @SetINI ("TintControl", "CLUT2", " ", "win.ini")
  818.   @EndIf
  819.   @If (103 [= @Option)
  820.     @SetINI ("TintControl", "CLUT1", "TI3026", "win.ini")
  821.     @SetINI ("TintControl", "CLUT2",, "win.ini")
  822.   @EndIf
  823.   @If (104 [= @Option)
  824.     @SetINI ("TintControl", "CLUT1", "TI3025", "win.ini")
  825.     @SetINI ("TintControl", "CLUT2",, "win.ini")
  826.   @EndIf
  827.   @If (101 [= @Option)
  828.     @SetINI ("TintControl", "CLUT1", "BT485", "win.ini")
  829.     @SetINI ("TintControl", "CLUT2",, "win.ini")
  830.   @EndIf
  831. @EndIf
  832.  
  833. @If (202 [= @Option) // miro wallpaper
  834.   @SetINI ("Desktop", "TileWallpaper", "1", "win.ini")
  835.   @SetINI ("Desktop", "Wallpaper", "miro.bmp", "win.ini")
  836. @EndIf
  837.  
  838.  
  839. //*** old software to be deleted **********************************************
  840.  
  841. @If (200 [= @Option || 201 [= @Option)
  842.   @Delete ("@OutDrive:@wSysDir\\MIROLOGO.RLE")
  843.   @Delete ("@OutDrive:@SubDir\\*.MIR")
  844.   @Delete ("@OutDrive:@SubDir\\MSUP?.HLP")
  845.   @Delete ("@OutDrive:@SubDir\\MSUPVIR?.HLP")
  846.   @Delete ("@OutDrive:@SubDir\\MSCOPE1.HLP")
  847.   @Delete ("@OutDrive:@SubDir\\MSCOPE2.HLP")
  848.   @Delete ("@OutDrive:@SubDir\\MSCOPE3.HLP")
  849.   @Delete ("@OutDrive:@SubDir\\MSCOPE4.HLP")
  850.   @Delete ("@OutDrive:@SubDir\\MTINTRUN.EXE")
  851.   @Delete ("@OutDrive:@SubDir\\CRYS10SD.BMP")
  852.   @Delete ("@OutDrive:@SubDir\\CRYS20SD.BMP")
  853.   @Delete ("@OutDrive:@SubDir\\CRYS20SV.BMP")
  854.   @Delete ("@OutDrive:@SubDir\\CRYS40SV.BMP")
  855.   @Delete ("@OutDrive:@SubDir\\MIRO20.BMP")
  856.   @Delete ("@OutDrive:@SubDir\\MIRO40.BMP")
  857.   @Delete ("@OutDrive:@SubDir\\MONSEL.*")
  858.   @Delete ("@OutDrive:@SubDir\\MTINT.EXE")
  859.   @Delete ("@OutDrive:@SubDir\\WSIZER.*")
  860.   @Delete ("@OutDrive:@SubDir\\WADJUST.EXE")
  861. @EndIf
  862.  
  863. @If (200 [= @Option && @DirExists ("@OutDrive:@SubDir\\SYSTEM"))
  864.   @Delete ("@OutDrive:@SubDir\\OEMV20SD.*")
  865.   @Delete ("@OutDrive:@SubDir\\OEMV20SV.*")
  866.   @Delete ("@OutDrive:@SubDir\\OEMC20SV.*")
  867.   @Delete ("@OutDrive:@SubDir\\OEMV40SV.*")
  868.   @Delete ("@OutDrive:@SubDir\\OEMV40E.*")
  869.   @Delete ("@OutDrive:@SubDir\\OEMV20E.*")
  870. @EndIf
  871.  
  872.  
  873. //*** project trailer block ***************************************************
  874.  
  875. @Finish
  876.   @BackGroundMode (3,@Blue, @Blue)
  877.   @WinExec ("PROGMAN.EXE", 1)
  878.  
  879.   @If (200 [= @Option || 201 [= @Option)
  880.     @ProgramManager ("[CreateGroup (miroWINTOOLS, MWINTOOL.GRP)]")
  881.     @Delay = @SystemDate
  882. La: @If (@SystemDate - @Delay <= @d) @Goto La @EndIf
  883.  
  884.     @If (200 [= @Option) // miro windows tools
  885.       @ProgramManager ("[ReplaceItem (miro SUPERSCREEN)]")
  886.       @Delay = @SystemDate
  887. Lb:   @If (@SystemDate - @Delay <= @d) @Goto Lb @EndIf
  888.       @ProgramManager ("[AddItem (@OutDrive:@SubDir\\MSUPSCRN.EXE, miro SUPERSCREEN)]")
  889.       @Delay = @SystemDate
  890. Lcc:  @If (@SystemDate - @Delay <= @d) @Goto Lcc @EndIf
  891.       @ProgramManager ("[DeleteItem (miro MONITOR SELECT)]")
  892.       @Delay = @SystemDate
  893. Lc:   @If (@SystemDate - @Delay <= @d) @Goto Lc @EndIf
  894.       @ProgramManager ("[ReplaceItem (miroMONITOR-Select)]")
  895.       @Delay = @SystemDate
  896. Ld:   @If (@SystemDate - @Delay <= @d) @Goto Ld @EndIf
  897.       @ProgramManager ("[AddItem (@miroDrive:@miroDir\\COMMON\\MONSEL.EXE, miro MONITOR SELECT)]")
  898.       @Delay = @SystemDate
  899. Le:   @If (@SystemDate - @Delay <= @d) @Goto Le @EndIf
  900.       @ProgramManager ("[ReplaceItem (miroTINT CONTROL)]")
  901.       @Delay = @SystemDate
  902. Lf:   @If (@SystemDate - @Delay <= @d) @Goto Lf @EndIf
  903.       @ProgramManager ("[AddItem (@miroDrive:@miroDir\\COMMON\\MTINT.EXE, miroTINT CONTROL)]")
  904.       @Delay = @SystemDate
  905. Lg:   @If (@SystemDate - @Delay <= @d) @Goto Lg @EndIf
  906.       @ProgramManager ("[ReplaceItem (miro HOTKEY)]")
  907.       @Delay = @SystemDate
  908. Lh:   @If (@SystemDate - @Delay <= @d) @Goto Lh @EndIf
  909.       @ProgramManager ("[AddItem (@OutDrive:@SubDir\\MSUPHOT.EXE, miro HOTKEY)]")
  910.       @Delay = @SystemDate
  911. Lu:   @If (@SystemDate - @Delay <= @d) @Goto Lu @EndIf
  912.       @ProgramManager ("[ReplaceItem (miro PINBOARD)]")
  913.       @Delay = @SystemDate
  914. Lv:   @If (@SystemDate - @Delay <= @d) @Goto Lv @EndIf
  915.       @ProgramManager ("[AddItem (@miroDrive:@miroDir\\COMMON\\WSIZER.EXE, miro PINBOARD)]")
  916.       @Delay = @SystemDate
  917. Lw:   @If (@SystemDate - @Delay <= @d) @Goto Lw @EndIf
  918.       @ProgramManager ("[ReplaceItem (miroSCREEN-Adjust)]")
  919.       @Delay = @SystemDate
  920. Lx:   @If (@SystemDate - @Delay <= @d) @Goto Lx @EndIf
  921.       @ProgramManager ("[AddItem (@miroDrive:@miroDir\\COMMON\\WADJUST.EXE, miroSCREEN-Adjust)]")
  922.       @Delay = @SystemDate
  923. Laa:  @If (@SystemDate - @Delay <= @d) @Goto Laa @EndIf
  924.       @ProgramManager ("[ReplaceItem (miroDRIVER-Control)]")
  925.       @Delay = @SystemDate
  926. Lab:  @If (@SystemDate - @Delay <= @d) @Goto Lab @EndIf
  927.       @ProgramManager ("[AddItem (@miroDrive:@miroDir\\COMMON\\DRIVCFG.EXE, miroDRIVER-Control)]")
  928.       @Delay = @SystemDate
  929. Li:   @If (@SystemDate - @Delay <= @d) @Goto Li @EndIf
  930.     @EndIf
  931.  
  932.     @If (201 [= @Option) // miro windows tools
  933.       @ProgramManager ("[ReplaceItem (miroSCOPE)]")
  934.       @Delay = @SystemDate
  935. Ll:   @If (@SystemDate - @Delay <= @d) @Goto Ll @EndIf
  936.       @ProgramManager ("[AddItem (@miroDrive:@miroDir\\COMMON\\MSCOPE.EXE, miroSCOPE)]")
  937.       @Delay = @SystemDate
  938. Lm:   @If (@SystemDate - @Delay <= @d) @Goto Lm @EndIf
  939.       @ProgramManager ("[ReplaceItem (miroSIZE CALIBRATION)]")
  940.       @Delay = @SystemDate
  941. Ln:   @If (@SystemDate - @Delay <= @d) @Goto Ln @EndIf
  942.       @ProgramManager ("[AddItem (@OutDrive:@SubDir\\MSIZER.EXE, miroSIZE CALIBRATION)]")
  943.       @Delay = @SystemDate
  944. Lo:   @If (@SystemDate - @Delay <= @d) @Goto Lo @EndIf
  945.     @EndIf
  946.  
  947.     @ProgramManager ("[ReplaceItem (Information)]")
  948.     @Delay = @SystemDate
  949. Lr: @If (@SystemDate - @Delay <= @d) @Goto Lr @EndIf
  950.     @ProgramManager ("[AddItem (NOTEPAD @miroDrive:@miroDir\\COMMON\\minfo.txt, Information, @miroDrive:@miroDir\\COMMON\\MONSEL.EXE, 1)]")
  951.     @Delay = @SystemDate
  952. Ls: @If (@SystemDate - @Delay <= @d) @Goto Ls @EndIf
  953.     @ProgramManager ("[ShowGroup (miroWINTOOLS, 1)]")
  954.     @Delay = @SystemDate
  955. Lt: @If (@SystemDate - @Delay <= @d) @Goto Lt @EndIf
  956.   @EndIf
  957.  
  958.   @If (200 [= @Option || 201 [= @Option)
  959.     //Language for ini files
  960.     @If ('D' [= @Group)
  961.       @SetINI ("Locale", "Language","Deutsch", "@miroDrive:@miroDir\\common\\drivcfg.ini")
  962.       @SetINI ("Language", "Language","Deutsch", "@miroDrive:@miroDir\\common\\wsizer.ini")
  963.       @SetINI ("Language", "Language","Deutsch", "@miroDrive:@miroDir\\common\\wadjust.ini")
  964.       @SetINI ("Language", "Language","Deutsch", "@miroDrive:@miroDir\\common\\monsel.ini")
  965.       @SetINI ("Language", "Language","Deutsch", "@miroDrive:@miroDir\\common\\mscope.ini")
  966.     @EndIf
  967.     @If ('E' [= @Group)
  968.       @SetINI ("Locale", "Language","English", "@miroDrive:@miroDir\\common\\drivcfg.ini")
  969.       @SetINI ("Language", "Language","English", "@miroDrive:@miroDir\\common\\wsizer.ini")
  970.       @SetINI ("Language", "Language","English", "@miroDrive:@miroDir\\common\\wadjust.ini")
  971.       @SetINI ("Language", "Language","English", "@miroDrive:@miroDir\\common\\monsel.ini")
  972.       @SetINI ("Language", "Language","English", "@miroDrive:@miroDir\\common\\mscope.ini")
  973.     @EndIf
  974.  
  975.     //Set Menu for miroPINBOARD
  976.     @SetINI ("Menu","miroDRIVER-Control","DRIVCFG.EXE",    "@miroDrive:@miroDir\\common\\wsizer.ini")
  977.     @SetINI ("Menu","miroMONITOR SELECT","MONSEL.EXE",     "@miroDrive:@miroDir\\common\\wsizer.ini")
  978.     @SetINI ("Menu","miroTINT CONTROL",  "MTINT.EXE",      "@miroDrive:@miroDir\\common\\wsizer.ini")
  979.     @SetINI ("Menu","miroHOTKEY",        "MSUPHOT.EXE",    "@miroDrive:@miroDir\\common\\wsizer.ini")
  980.     @SetINI ("Menu","miroSUPERSCREEN",   "MSUPSCRN.EXE",   "@miroDrive:@miroDir\\common\\wsizer.ini")
  981.  
  982.     //Monsel
  983.     @SetINI ("BOARDINSTALLNAMES", "0x0214","miroVIDEO 20SD", "@miroDrive:@miroDir\\common\\monsel.ini")
  984.     @SetINI ("BOARDINSTALLNAMES", "0x0015","miroVIDEO 20SV", "@miroDrive:@miroDir\\common\\monsel.ini")
  985.     @SetINI ("BOARDINSTALLNAMES", "0x0115","miroVIDEO 20SV", "@miroDrive:@miroDir\\common\\monsel.ini")
  986.     @SetINI ("BOARDINSTALLNAMES", "0x0016","miroVIDEO 40SV ergo", "@miroDrive:@miroDir\\common\\monsel.ini")
  987.     @If (@fflag == 1)
  988.       @SetINI ("boot", "f_flag", "ON", "@miroDrive:@miroDir\\common\\monsel.ini")
  989.     @Else
  990.       @SetINI ("boot", "f_flag",, "@miroDrive:@miroDir\\common\\monsel.ini")
  991.     @EndIf
  992.   @EndIf
  993.  
  994.   @If (200 [= @Option)
  995.     @SetINI ("mboot.description", "mboot","1", "@MIRODRIVE:@MIRODIR\\COMMON\\MSYSTEM.INI")
  996.     @SetINI ("mboot.description", "displayinf2",, "@MIRODRIVE:@MIRODIR\\COMMON\\MSYSTEM.INI")
  997.  
  998.     @If (104 [= @Option)
  999.       @SetINI ("mboot.description", "displayinf", "OEMV20E.INF", "system.ini")
  1000.       @SetINI ("mboot.description", "displayinf", "OEMV20E.INF", "@MIRODRIVE:@MIRODIR\\COMMON\\MSYSTEM.INI")
  1001.     @EndIf
  1002.     @If (103 [= @Option)
  1003.       @SetINI ("mboot.description", "displayinf", "OEMV40E.INF", "system.ini")
  1004.       @SetINI ("mboot.description", "displayinf", "OEMV40E.INF", "@MIRODRIVE:@MIRODIR\\COMMON\\MSYSTEM.INI")
  1005.     @EndIf
  1006.     @If (102 [= @Option)
  1007.       @SetINI ("mboot.description", "displayinf", "OEMV20SD.INF", "system.ini")
  1008.       @SetINI ("mboot.description", "displayinf", "OEMV20SD.INF", "@MIRODRIVE:@MIRODIR\\COMMON\\MSYSTEM.INI")
  1009.     @EndIf
  1010.     @If (101 [= @Option)
  1011.       @SetINI ("mboot.description", "displayinf", "OEMV20SV.INF", "system.ini")
  1012.       @SetINI ("mboot.description", "displayinf", "OEMV20SV.INF", "@MIRODRIVE:@MIRODIR\\COMMON\\MSYSTEM.INI")
  1013.     @EndIf
  1014.     @If (100 [= @Option)
  1015.       @SetINI ("mboot.description", "displayinf", "OEMV40SV.INF", "system.ini")
  1016.       @SetINI ("mboot.description", "displayinf", "OEMV40SV.INF", "@MIRODRIVE:@MIRODIR\\COMMON\\MSYSTEM.INI")
  1017.     @EndIf
  1018.  
  1019.     //Timing system
  1020.     @If (104 [= @Option) //VIDEO 20SV ergo
  1021.       @SetINI ("CARD1", "card_name","miroVIDEO 20SV ergo", "@miroDrive:@miroDir\\TIMING\\INSTALL.INI")
  1022.       @SetINI ("CARD1", "card_file","CARD0015.INI", "@miroDrive:@miroDir\\TIMING\\INSTALL.INI")
  1023.     @EndIf
  1024.     @If (103 [= @Option) //VIDEO 40SV ergo
  1025.       @SetINI ("CARD1", "card_name","miroVIDEO 40SV ergo", "@miroDrive:@miroDir\\TIMING\\INSTALL.INI")
  1026.       @SetINI ("CARD1", "card_file","CARD0016.INI", "@miroDrive:@miroDir\\TIMING\\INSTALL.INI")
  1027.     @EndIf
  1028.     @If (102 [= @Option) //VIDEO 20SD
  1029.       @SetINI ("CARD1", "card_name","miroVIDEO 20SD", "@miroDrive:@miroDir\\TIMING\\INSTALL.INI")
  1030.       @SetINI ("CARD1", "card_file","CARD0214.INI", "@miroDrive:@miroDir\\TIMING\\INSTALL.INI")
  1031.     @EndIf
  1032.     @If (101 [= @Option) //VIDEO 20SV
  1033.       @SetINI ("CARD1", "card_name","miroVIDEO 20SV", "@miroDrive:@miroDir\\TIMING\\INSTALL.INI")
  1034.       @SetINI ("CARD1", "card_file","CARD0015.INI", "@miroDrive:@miroDir\\TIMING\\INSTALL.INI")
  1035.     @EndIf
  1036.     @If (100 [= @Option) //VIDEO 40SV
  1037.       @SetINI ("CARD1", "card_name","miroVIDEO 40SV", "@miroDrive:@miroDir\\TIMING\\INSTALL.INI")
  1038.       @SetINI ("CARD1", "card_file","CARD0016.INI", "@miroDrive:@miroDir\\TIMING\\INSTALL.INI")
  1039.     @EndIf
  1040.     @SetINI ("CARD1", "monitor","64kHz multi frequency monitor", "@miroDrive:@miroDir\\TIMING\\INSTALL.INI")
  1041.     @SetINI ("CARD1", "miromode","0x0", "@miroDrive:@miroDir\\TIMING\\INSTALL.INI")
  1042.     @SetINI ("CARD1", "linaddr_window","0x00000000", "@miroDrive:@miroDir\\TIMING\\INSTALL.INI")
  1043.     @SetINI ("CARD1", "powersave","0", "@miroDrive:@miroDir\\TIMING\\INSTALL.INI")
  1044.     //for default
  1045.     @SetINI ("CARD2", "monitor","64kHz multi frequency monitor", "@miroDrive:@miroDir\\TIMING\\INSTALL.INI")
  1046.     @SetINI ("CARD2", "card_file","CARDFFFF.INI", "@miroDrive:@miroDir\\TIMING\\INSTALL.INI")
  1047.     @SetINI ("CARD2", "card_name","Not Installed", "@miroDrive:@miroDir\\TIMING\\INSTALL.INI")
  1048.  
  1049.     //Bit depth switching
  1050.     @If (111 [= @Option || 104 [= @Option || 103 [= @Option || 102 [= @Option
  1051.         || 101 [= @Option || 100 [= @Option)
  1052.       @SetINI ("8",  "display.drv",, "bitum.ini")
  1053.       //@SetINI ("8",  "display.drv", "@wSysDir\\VXPMR_08.DRV", "bitum.ini")
  1054.       @SetINI ("15", "display.drv", "@wSysDir\\VXPMR_15.DRV", "bitum.ini")
  1055.       //@SetINI ("16", "display.drv", "@wSysDir\\VXPMR_16.DRV", "bitum.ini")
  1056.       @SetINI ("32", "display.drv", "@wSysDir\\VXPMR_32.DRV", "bitum.ini")
  1057.     @EndIf
  1058.   @EndIf
  1059.  
  1060.   @ChDrive (@WindowsDrive)
  1061.   @ChDir ("@WindowsDir")
  1062.   @If (200 [= @Option) // Windows drivers
  1063.     @ReturnValue (4711)
  1064.     @WinExec ("@miroDrive:@miroDir\\COMMON\\MONSEL.EXE", 1)
  1065.   @EndIf
  1066. @EndFinish
  1067.  
  1068.  
  1069. //*** eof *********************************************************************
  1070.  
  1071.