home *** CD-ROM | disk | FTP | other *** search
/ Inside Multimedia 1995 December / IMM1295.ISO / driver / miro / w12_22_1 / install.dat < prev    next >
Text File  |  1995-09-15  |  44KB  |  1,040 lines

  1. //*****************************************************************************
  2. // Name         : INSTALL.DAT
  3. // Project      : SAMSON: 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 14.09.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    = "2.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 100 = "miroCRYSTAL 22SD (2MB)"
  164. //  @Option 101 = "miroCRYSTAL 22SD (1MB)"
  165.   @Option 102 = "miroCRYSTAL 12SD (2MB)"
  166.   @Option 103 = "miroCRYSTAL 12SD (1MB)"
  167.   @Option 210 = "@M12"
  168. @EndOption
  169.  
  170.  
  171. //*** input items to install from user ****************************************
  172.  
  173. @If (210 [! @Option) // uninstall
  174.   @SetOption (200)
  175.   @GetOption
  176.     @CheckBox
  177.     @DlgCtrlSize (0,4,0,8,50)
  178.     @BackGroundMode (3,@Blue, @Blue)
  179.     @Cls
  180.  
  181. @M20
  182.  
  183.     @Option 200 = "@M22"
  184.     @Option 201 = "@M23"
  185.     @Option 202 = "@M24"
  186.   @EndOption
  187. @EndIf
  188.  
  189.  
  190. //*** input SYSTEM directory by user ******************************************
  191.  
  192. @If (200 [= @Option || 201 [= @Option)
  193.  
  194. @GetOutDrive @miroDrive
  195.     @Suppress A
  196.     @Suppress B
  197. @DlgCtrlSize (0,4,0,8,50)
  198. @BackGroundMode (3,@Blue, @Blue)
  199. @Cls
  200. @M40
  201. @EndOutDrive
  202.  
  203. @GetSubDir @miroDir
  204. @DlgCtrlSize (0,4,0,5,50)
  205. @BackGroundMode (3,@Blue, @Blue)
  206. @Cls
  207. @Default = "\\MIRO"
  208. @M45
  209. @EndSubDir
  210.  
  211. @EndIf
  212.  
  213.  
  214.  
  215.  
  216. //*** Uninstall software ******************************************************
  217.  
  218. @If (210 [= @Option) // uninstall
  219. @If (  (@StrFind(@GetINI ("boot", "386grabber", "system.ini"),"octovga") > -1)
  220.     || (@StrFind(@GetINI ("boot", "386grabber", "system.ini"),"mirogrb") > -1)
  221.     )
  222.   @FlushKeyboard
  223.   @Display
  224. @M31
  225. @M32
  226.   @Pause
  227.   @EndDisplay
  228.   @ClearOption (210)
  229.   @UnInstall = @True
  230.   @Goto BOARDSELECT
  231.  
  232. @Else
  233.   @FlushKeyboard
  234.   @Display
  235. @M30
  236.   @Pause
  237.   @EndDisplay
  238.  
  239.   @Delete ("@OutDrive:@wSysDir\\OEMC12SD.*")
  240.   @Delete ("@OutDrive:@wSysDir\\OEMC12D2.*")
  241.   @Delete ("@OutDrive:@wSysDir\\OEMC22SD.*")
  242.   @Delete ("@OutDrive:@wSysDir\\OEMC22D1.*")
  243.   @Delete ("@OutDrive:@wSysDir\\OEMMAG2E.*")
  244.   @Delete ("@OutDrive:@wSysDir\\OEMMAG4E.*")
  245.   @Delete ("@OutDrive:@wSysDir\\OEMV20SV.*")
  246.   @Delete ("@OutDrive:@wSysDir\\OEMV20E.*")
  247.   @Delete ("@OutDrive:@wSysDir\\OEMC20E.*")
  248.   @Delete ("@OutDrive:@wSysDir\\OEMV40SV.*")
  249.   @Delete ("@OutDrive:@wSysDir\\OEMV40E.*")
  250.   @Delete ("@OutDrive:@wSysDir\\OEMC40E.*")
  251.   @Delete ("@OutDrive:@wSysDir\\OEMV20SD.*")
  252.   @Delete ("@OutDrive:@wSysDir\\OEMC10SD.*")
  253.   @Delete ("@OutDrive:@wSysDir\\OEMC20SD.*")
  254.   @Delete ("@OutDrive:@wSysDir\\OEMC20D1.*")
  255.   @Delete ("@OutDrive:@wSysDir\\OEMC20SV.*")
  256.   @Delete ("@OutDrive:@wSysDir\\OEMC40SV.*")
  257.   @Delete ("@OutDrive:@wSysDir\\OEMMAG40.*")
  258.   @Delete ("@OutDrive:@wSysDir\\OEMMAG20.*")
  259.   @Delete ("@OutDrive:@wSysDir\\OEMC20TW.*")
  260.   @Delete ("@OutDrive:@wSysDir\\OEMBIBO?.*")
  261.   @Delete ("@OutDrive:@wSysDir\\OEMMAGS4.*")
  262.   @Delete ("@OutDrive:@wSysDir\\OEMRAIN.*")
  263.   @Delete ("@OutDrive:@wSysDir\\OEMCR8S.*")
  264.   @Delete ("@OutDrive:@wSysDir\\OEMCR16S.*")
  265.   @Delete ("@OutDrive:@wSysDir\\OEMCR24S.*")
  266.   @Delete ("@OutDrive:@wSysDir\\OEMCR32S.*")
  267.   @Delete ("@OutDrive:@wSysDir\\OEMC40PV.*")
  268.   @Delete ("@OutDrive:@wSysDir\\OEMC20PV.*")
  269.  
  270.   @Delete ("@OutDrive:@wSysDir\\VXPMR*.DRV")
  271.   @Delete ("@OutDrive:@wSysDir\\MIRODCI.DRV")
  272.   @Delete ("@OutDrive:@wSysDir\\BITUM.DRV")
  273.   @Delete ("@OutDrive:@SubDir\\BITUM.INI")
  274.   @Delete ("@OutDrive:@wSysDir\\MIROINIT.DLL")
  275.   @Delete ("@OutDrive:@SubDir\\MIROINIT.DLL")
  276.   @Delete ("@OutDrive:@wSysDir\\MIROHW.DLL")
  277.   @Delete ("@OutDrive:@SubDir\\MIROHW.DLL")
  278.  
  279.   @Delete ("@OutDrive:@wSysDir\\1SD*.DRV")
  280.   @Delete ("@OutDrive:@wSysDir\\C20SD*.DRV")
  281.   @Delete ("@OutDrive:@wSysDir\\C20SV*.DRV")
  282.   @Delete ("@OutDrive:@wSysDir\\C40SV*.DRV")
  283.   @Delete ("@OutDrive:@wSysDir\\C40PV*.DRV")
  284.   @Delete ("@OutDrive:@wSysDir\\C20PV*.DRV")
  285.   @Delete ("@OutDrive:@wSysDir\\M20*.DRV")
  286.   @Delete ("@OutDrive:@wSysDir\\M40*.DRV")
  287.   @Delete ("@OutDrive:@wSysDir\\TW10*.DRV")
  288.   @Delete ("@OutDrive:@wSysDir\\TW20*.DRV")
  289.   @Delete ("@OutDrive:@wSysDir\\TWIN.DRV")
  290.   @Delete ("@OutDrive:@wSysDir\\MAGS4*.DRV")
  291.   @Delete ("@OutDrive:@wSysDir\\RAIN*.DRV")
  292.   @Delete ("@OutDrive:@wSysDir\\C8S*.DRV")
  293.   @Delete ("@OutDrive:@wSysDir\\CR16S*.DRV")
  294.   @Delete ("@OutDrive:@wSysDir\\CR24S*.DRV")
  295.   @Delete ("@OutDrive:@wSysDir\\CR32S*.DRV")
  296.   @Delete ("@OutDrive:@wSysDir\\S3VSND24.DRV")
  297.   @Delete ("@OutDrive:@wSysDir\\OCTO.MON")
  298.   @Delete ("@OutDrive:@wSysDir\\OCTOVGA.*")
  299.   @Delete ("@OutDrive:@SubDir\\MINFO.TXT")
  300.   @Delete ("@OutDrive:@SubDir\\MWINTOOL.INI")
  301.   @Delete ("@OutDrive:@SubDir\\MSUP*.*")
  302.   @Delete ("@miroDrive:@miroDir\\COMMON\\MONSEL.EXE")
  303.   @Delete ("@miroDrive:@miroDir\\COMMON\\MONSEL.INI")
  304.   @Delete ("@miroDrive:@miroDir\\COMMON\\MONSEL.HLP")
  305.   @Delete ("@OutDrive:@SubDir\\MONSEL.*")
  306.   @Delete ("@OutDrive:@SubDir\\VIRTDLL.DLL")
  307.   @Delete ("@OutDrive:@SubDir\\MPWRSAVE.SCR")
  308.   @Delete ("@OutDrive:@SubDir\\TWIN*.*")
  309.   @Delete ("@OutDrive:@SubDir\\MTINT*.*")
  310.   @Delete ("@miroDrive:@miroDir\\COMMON\\MTINT.EXE")
  311.   @Delete ("@miroDrive:@miroDir\\COMMON\\MTINT.HLP")
  312.   @Delete ("@miroDrive:@miroDir\\COMMON\\MTINT.INI")
  313.   @Delete ("@OutDrive:@SubDir\\WSIZER.*")
  314.   @Delete ("@miroDrive:@miroDir\\COMMON\\WSIZER.EXE")
  315.   @Delete ("@miroDrive:@miroDir\\COMMON\\WSIZER.INI")
  316.   @Delete ("@miroDrive:@miroDir\\COMMON\\WSIZER.HLP")
  317.   @Delete ("@miroDrive:@miroDir\\COMMON\\MCLASS.DLL")
  318.   @Delete ("@OutDrive:@SubDir\\WADJUST.*")
  319.   @Delete ("@OutDrive:@SubDir\\MFONTCOM.EXE")
  320.   @Delete ("@OutDrive:@SubDir\\MIROSCOP.EXE")
  321.   @Delete ("@miroDrive:@miroDir\\COMMON\\MSCOPE.EXE")
  322.   @Delete ("@miroDrive:@miroDir\\COMMON\\MSCOPE.INI")
  323.   @Delete ("@OutDrive:@SubDir\\MIROHOOK.DLL")
  324.   @Delete ("@OutDrive:@SubDir\\MSCOPE*.HLP")
  325.   @Delete ("@OutDrive:@SubDir\\MSIZE*.*")
  326.   @Delete ("@miroDrive:@miroDir\\COMMON\\DRIVCFG.EXE")
  327.   @Delete ("@miroDrive:@miroDir\\COMMON\\DRIVCFG.INI")
  328.   @Delete ("@miroDrive:@miroDir\\COMMON\\DRIVCFG.HLP")
  329.   @Delete ("@miroDrive:@miroDir\\COMMON\\OEM*.INF")
  330.   @Delete ("@miroDrive:@miroDir\\COMMON\\MSYSTEM.INI")
  331.  
  332.   @Delete ("@OutDrive:@wSysDir\\MIROLOGO.RLE")
  333.   @Delete ("@OutDrive:@SubDir\\*.MIR")
  334.  
  335.   @WinExec ("PROGMAN.EXE", 1)
  336. @Display // ???
  337.   @ProgramManager ("[ShowGroup (miroWINTOOLS, 2)]")
  338.   @Delay = @SystemDate
  339. CLa: @If (@SystemDate - @Delay <= @d) @Goto CLa @EndIf
  340.   @ProgramManager ("[DeleteItem (miro SUPERSCREEN)]")
  341.   @Delay = @SystemDate
  342. CLb: @If (@SystemDate - @Delay <= @d) @Goto CLb @EndIf
  343.   @ProgramManager ("[DeleteItem (miro MONITOR SELECT)]")
  344.   @Delay = @SystemDate
  345. CLbb: @If (@SystemDate - @Delay <= @d) @Goto CLbb @EndIf
  346.   @ProgramManager ("[DeleteItem (miroMONITOR-Select)]")
  347.   @Delay = @SystemDate
  348. CLc: @If (@SystemDate - @Delay <= @d) @Goto CLc @EndIf
  349.   @ProgramManager ("[DeleteItem (miroTINT CONTROL)]")
  350.   @Delay = @SystemDate
  351. CLd: @If (@SystemDate - @Delay <= @d) @Goto CLd @EndIf
  352.   @ProgramManager ("[DeleteItem (miro HOTKEY)]")
  353.   @Delay = @SystemDate
  354. CLk: @If (@SystemDate - @Delay <= @d) @Goto CLk @EndIf
  355.   @ProgramManager ("[DeleteItem (miro PINBOARD)]")
  356.   @Delay = @SystemDate
  357. CLl: @If (@SystemDate - @Delay <= @d) @Goto CLl @EndIf
  358.   @ProgramManager ("[DeleteItem (miroSCREEN-Adjust)]")
  359.   @Delay = @SystemDate
  360. CLe: @If (@SystemDate - @Delay <= @d) @Goto CLe @EndIf
  361.   @ProgramManager ("[DeleteItem (miro FONTCOMPILER)]")
  362.   @Delay = @SystemDate
  363. CLf: @If (@SystemDate - @Delay <= @d) @Goto CLf @EndIf
  364.   @ProgramManager ("[DeleteItem (miroSCOPE)]")
  365.   @Delay = @SystemDate
  366. CLg: @If (@SystemDate - @Delay <= @d) @Goto CLg @EndIf
  367.   @ProgramManager ("[DeleteItem (miroSIZE CALIBRATION)]")
  368.   @Delay = @SystemDate
  369. CLh: @If (@SystemDate - @Delay <= @d) @Goto CLh @EndIf
  370.   @ProgramManager ("[DeleteItem (miro TWINFACE)]")
  371.   @Delay = @SystemDate
  372. CLi: @If (@SystemDate - @Delay <= @d) @Goto CLi @EndIf
  373.   @ProgramManager ("[DeleteItem (Information)]")
  374.   @Delay = @SystemDate
  375. CLaa: @If (@SystemDate - @Delay <= @d) @Goto CLaa @EndIf
  376.   @ProgramManager ("[DeleteItem (miroDRIVER-Control)]")
  377.   @Delay = @SystemDate
  378. CLj: @If (@SystemDate - @Delay <= @d) @Goto CLj @EndIf
  379.   @ProgramManager ("[DeleteGroup (miroWINTOOLS)]")
  380.   @Delay = @SystemDate
  381. CLm: @If (@SystemDate - @Delay <= @d) @Goto CLm @EndIf
  382. @EndDisplay
  383.  
  384.  
  385.   @SetINI ("928.drv", "dpi",, "system.ini")
  386.   @SetINI ("928.drv", "Virtual_Size_X",, "system.ini")
  387.   @SetINI ("928.drv", "Virtual_Size_Y",, "system.ini")
  388.   @SetINI ("928.drv", "Screen_Size_X",, "system.ini")
  389.   @SetINI ("928.drv", "Screen_Size_Y",, "system.ini")
  390.   @SetINI ("928.drv", "Memory_Size_X",, "system.ini")
  391.   @SetINI ("928.drv", "Memory_Size_Y",, "system.ini")
  392.   @SetINI ("928.drv", "Pixel_Size",, "system.ini")
  393.   @SetINI ("928.drv", "polygon-support",, "system.ini")
  394.   @SetINI ("928.drv", "TV",, "system.ini")
  395.   @SetINI ("928.drv", "2in1",, "system.ini")
  396.   @SetINI ("928.drv", "15BPP",, "system.ini")
  397.   @SetINI ("928.drv", "notaus",, "system.ini")
  398.   @SetINI ("928.drv", "DRAM",, "system.ini")
  399.   @SetINI ("928.drv", "VXPBlt",, "system.ini")
  400.   @SetINI ("928.drv", "FIFO",, "system.ini")
  401.   @SetINI ("928.drv", "Mon_Data",, "system.ini")
  402.   @SetINI ("928.drv", "Mon_Path",, "system.ini")
  403.   @SetINI ("928.drv", "MonDesc",, "system.ini")
  404.   @SetINI ("928.drv", "BoardDesc",, "system.ini")
  405.   @SetINI ("928.drv", "CardID",, "system.ini")
  406.   @SetINI ("928.drv", "CardSubID",, "system.ini")
  407.   @SetINI ("928.drv", "Font",, "system.ini")
  408.   @SetINI ("928.drv", "RAM",, "system.ini")
  409.   @SetINI ("928.drv", "PhysBoardNr",, "system.ini")
  410.   @SetINI ("928.drv", "SysColors",, "system.ini")
  411.  
  412.   @SetINI ("twinleft.drv", "dpi",, "system.ini")
  413.   @SetINI ("twinleft.drv", "Virtual_Size_X",, "system.ini")
  414.   @SetINI ("twinleft.drv", "Virtual_Size_Y",, "system.ini")
  415.   @SetINI ("twinleft.drv", "Screen_Size_X",, "system.ini")
  416.   @SetINI ("twinleft.drv", "Screen_Size_Y",, "system.ini")
  417.   @SetINI ("twinleft.drv", "Memory_Size_X",, "system.ini")
  418.   @SetINI ("twinleft.drv", "Memory_Size_Y",, "system.ini")
  419.   @SetINI ("twinleft.drv", "Pixel_Size",, "system.ini")
  420.   @SetINI ("twinleft.drv", "polygon-support",, "system.ini")
  421.   @SetINI ("twinleft.drv", "TV",, "system.ini")
  422.   @SetINI ("twinleft.drv", "2in1",, "system.ini")
  423.   @SetINI ("twinleft.drv", "15BPP",, "system.ini")
  424.   @SetINI ("twinleft.drv", "notaus",, "system.ini")
  425.   @SetINI ("twinleft.drv", "DRAM",, "system.ini")
  426.   @SetINI ("twinleft.drv", "VXPBlt",, "system.ini")
  427.   @SetINI ("twinleft.drv", "FIFO",, "system.ini")
  428.   @SetINI ("twinleft.drv", "Mon_Data",, "system.ini")
  429.   @SetINI ("twinleft.drv", "Mon_Path",, "system.ini")
  430.   @SetINI ("twinleft.drv", "MonDesc",, "system.ini")
  431.   @SetINI ("twinleft.drv", "BoardDesc",, "system.ini")
  432.   @SetINI ("twinleft.drv", "CardID",, "system.ini")
  433.   @SetINI ("twinleft.drv", "CardSubID",, "system.ini")
  434.   @SetINI ("twinleft.drv", "Font",, "system.ini")
  435.   @SetINI ("twinleft.drv", "RAM",, "system.ini")
  436.   @SetINI ("twinleft.drv", "PhysBoardNr",, "system.ini")
  437.   @SetINI ("twinleft.drv", "SysColors",, "system.ini")
  438.  
  439.   @SetINI ("twinright.drv", "dpi",, "system.ini")
  440.   @SetINI ("twinright.drv", "Virtual_Size_X",, "system.ini")
  441.   @SetINI ("twinright.drv", "Virtual_Size_Y",, "system.ini")
  442.   @SetINI ("twinright.drv", "Screen_Size_X",, "system.ini")
  443.   @SetINI ("twinright.drv", "Screen_Size_Y",, "system.ini")
  444.   @SetINI ("twinright.drv", "Memory_Size_X",, "system.ini")
  445.   @SetINI ("twinright.drv", "Memory_Size_Y",, "system.ini")
  446.   @SetINI ("twinright.drv", "Pixel_Size",, "system.ini")
  447.   @SetINI ("twinright.drv", "polygon-support",, "system.ini")
  448.   @SetINI ("twinright.drv", "TV",, "system.ini")
  449.   @SetINI ("twinright.drv", "2in1",, "system.ini")
  450.   @SetINI ("twinright.drv", "15BPP",, "system.ini")
  451.   @SetINI ("twinright.drv", "notaus",, "system.ini")
  452.   @SetINI ("twinright.drv", "DRAM",, "system.ini")
  453.   @SetINI ("twinright.drv", "VXPBlt",, "system.ini")
  454.   @SetINI ("twinright.drv", "FIFO",, "system.ini")
  455.   @SetINI ("twinright.drv", "Mon_Data",, "system.ini")
  456.   @SetINI ("twinright.drv", "Mon_Path",, "system.ini")
  457.   @SetINI ("twinright.drv", "MonDesc",, "system.ini")
  458.   @SetINI ("twinright.drv", "BoardDesc",, "system.ini")
  459.   @SetINI ("twinright.drv", "CardID",, "system.ini")
  460.   @SetINI ("twinright.drv", "CardSubID",, "system.ini")
  461.   @SetINI ("twinright.drv", "Font",, "system.ini")
  462.   @SetINI ("twinright.drv", "RAM",, "system.ini")
  463.   @SetINI ("twinright.drv", "PhysBoardNr",, "system.ini")
  464.   @SetINI ("twinright.drv", "SysColors",, "system.ini")
  465.  
  466.   @SetINI ("boot.description", "displayinf",, "system.ini")
  467.   @SetINI ("boot.description", "displayinf2",, "system.ini")
  468.   @SetINI ("mboot.description", "displayinf",, "system.ini")
  469.   @SetINI ("mboot.description", "displayinf2",, "system.ini")
  470.   @SetINI ("mboot.description", "mboot",, "system.ini")
  471.   @SetINI ("mboot.description", "f_flag",, "system.ini")
  472.   @SetINI ("mboot.description", "boardfam",, "system.ini")
  473.   @SetINI ("mboot.description", "displayinf",, "system.ini")
  474.   @SetINI ("mboot.description", "resolution",, "system.ini")
  475.   @SetINI ("mboot.description", "resolution2",, "system.ini")
  476.   @SetINI ("mboot.description", "left",, "system.ini")
  477.   @SetINI ("mboot.description", "right",, "system.ini")
  478.   @SetINI ("mboot.description","Screen_Size_X",, "system.ini")
  479.   @SetINI ("mboot.description","Screen_Size_Y",, "system.ini")
  480.   @SetINI ("mboot.description","Pixel_Size",, "system.ini")
  481.   @SetINI ("mboot.description","dpi",, "system.ini")
  482.   @SetINI ("mboot.description", "BusType",, "system.ini")
  483.   @SetINI ("mboot.description", "BoardDesc",, "system.ini")
  484.   @SetINI ("mboot.description", "MonDesc",, "system.ini")
  485.  
  486.   @SetINI ("2in1.drv", "driverx1",, "system.ini")
  487.   @SetINI ("2in1.drv", "driverx2",, "system.ini")
  488.   @SetINI ("2in1.drv", "display1",, "system.ini")
  489.   @SetINI ("2in1.drv", "display2",, "system.ini")
  490.  
  491.   @SetINI ("miroSCOPE", "Sensibility",, "win.ini")
  492.   @SetINI ("miroSCOPE", "Zoom Factor",, "win.ini")
  493.   @SetINI ("miroSCOPE", "Hotkey Number",, "win.ini")
  494.   @SetINI ("miroSCOPE", "Window dimensions",, "win.ini")
  495.  
  496.   @SetINI ("miroTWINFACE", "top",, "win.ini")
  497.   @SetINI ("miroTWINFACE", "run",, "win.ini")
  498.   @SetINI ("miroTWINFACE", "align",, "win.ini")
  499.  
  500.   @SetINI ("miroVIRTUAL", "top",, "win.ini")
  501.   @SetINI ("miroVIRTUAL", "run",, "win.ini")
  502.   @SetINI ("miroVIRTUAL", "align",, "win.ini")
  503.  
  504.   @SetINI ("TintControl", "SIP_MONTEMP",, "win.ini")
  505.   @SetINI ("TintControl", "SIP_COLOR",, "win.ini")
  506.   @SetINI ("TintControl", "CLUT",, "win.ini")
  507.   @SetINI ("TintControl", "CLUT1",, "win.ini")
  508.   @SetINI ("TintControl", "CLUT2",, "win.ini")
  509.  
  510.   @SetINI ("miroSIZE CALIBRATION", "DP100mmX",, "win.ini")
  511.   @SetINI ("miroSIZE CALIBRATION", "DP100mmY",, "win.ini")
  512.   @SetINI ("miroSIZE CALIBRATION", "HiResMonitorX",, "win.ini")
  513.   @SetINI ("miroSIZE CALIBRATION", "HiResMonitorY",, "win.ini")
  514.  
  515.   @SetINI ("Screensaver.miroPOWERSAVE", "VESAMonitors",, "control.ini")
  516.   @SetINI ("Screensaver.miroPOWERSAVE", "ResumeAfterPOWERDOWN",, "control.ini")
  517.   @SetINI ("Screensaver.miroPOWERSAVE", "TEST_VESAMonitors",, "control.ini")
  518.   @SetINI ("Screensaver.miroPOWERSAVE", "StandbyTime",, "control.ini")
  519.   @SetINI ("Screensaver.miroPOWERSAVE", "SuspendTime",, "control.ini")
  520.  
  521.   @SetINI ("s3_24.drv", "FontSize",, "system.ini")
  522.   @SetINI ("s3_24.drv", "WidthXHeight",, "system.ini")
  523.  
  524.   @SetINI ("v631p.drv","FontSize",, "system.ini")
  525.   @SetINI ("v631p.drv","EnableHwCursor",, "system.ini")
  526.   @SetINI ("v631p.drv","WidthXHeight",, "system.ini")
  527.   @SetINI ("avga800.drv","FontSize",, "system.ini")
  528.   @SetINI ("avga800.drv","EnableHwCursor",, "system.ini")
  529.   @SetINI ("avga800.drv","WidthXHeight",, "system.ini")
  530.   @SetINI ("al314p.drv","FontSize",, "system.ini")
  531.   @SetINI ("al314p.drv","EnableHwCursor",, "system.ini")
  532.   @SetINI ("al314p.drv","WidthXHeight",, "system.ini")
  533.   @SetINI ("avga1280.drv","FontSize",, "system.ini")
  534.   @SetINI ("avga1280.drv","EnableHwCursor",, "system.ini")
  535.   @SetINI ("avga1280.drv","WidthXHeight",, "system.ini")
  536.   @SetINI ("al3164p.drv","FontSize",, "system.ini")
  537.   @SetINI ("al3164p.drv","EnableHwCursor",, "system.ini")
  538.   @SetINI ("al3164p.drv","WidthXHeight",, "system.ini")
  539.   @SetINI ("al16m.drv","FontSize",, "system.ini")
  540.   @SetINI ("al16m.drv","EnableHwCursor",, "system.ini")
  541.   @SetINI ("al16m.drv","WidthXHeight",, "system.ini")
  542.   @SetINI ("v631f8s.drv","FontSize",, "system.ini")
  543.   @SetINI ("v631f8s.drv","EnableHwCursor",, "system.ini")
  544.   @SetINI ("v631f8s.drv","WidthXHeight",, "system.ini")
  545.  
  546.   @If (   "@GetINI ("drivers","DCI","system.ini")" == "MIRODCI"
  547.       &&  "@GetINI ("drivers","MIRODCI","system.ini")" != ""
  548.       )
  549.     @SetINI ("drivers", "DCI", "@GetINI ("drivers","MIRODCI","system.ini")", "system.ini")
  550.     @SetINI ("drivers", "MIRODCI",, "system.ini")
  551.   @Else
  552.     @If (   "@GetINI ("drivers","DCI","system.ini")" == "MIRODCI")
  553.       @SetINI ("drivers", "DCI",, "system.ini")
  554.     @EndIf
  555.   @EndIf
  556.  
  557.   @merke = @GetINI("Windows", "run","win.ini")
  558.   @If (@StrFind("@merke", "@miroDrive:@miroDir\\COMMON\\WSIZER.EXE") > -1)
  559.     @merke = @StrDel("@merke", @StrFind("@merke", "@miroDrive:@miroDir\\COMMON\\WSIZER.EXE"),@StrLen("@miroDrive:@miroDir\\COMMON\\WSIZER.EXE "))
  560.     @SetINI ("Windows", "run", "@merke", "win.ini")
  561.   @EndIf
  562.  
  563.   //OLD WSIZER
  564.   @merke = @GetINI("Windows", "run","win.ini")
  565.   @If (@StrFind("@merke", "@OutDrive:@SubDir\\WSIZER.EXE") > -1)
  566.     @merke = @StrDel("@merke", @StrFind("@merke", "@OutDrive:@SubDir\\WSIZER.EXE"),@StrLen("@OutDrive:@SubDir\\WSIZER.EXE "))
  567.     @SetINI ("Windows", "run", "@merke", "win.ini")
  568.   @EndIf
  569.  
  570.   @ClearOption (210)
  571.   @UnInstall = @True
  572.   @Goto BOARDSELECT
  573. @EndIf
  574. @EndIf
  575.  
  576.  
  577. //*** files to be copied ******************************************************
  578.  
  579. @If (200 [= @Option    // copy if Windows drivers
  580.     || 201 [= @Option) // or miro windows tools
  581.     @MkDir("@miroDrive:@miroDir")
  582.     @MkDir("@miroDrive:@miroDir\\COMMON")
  583.     @MkDir("@miroDrive:@miroDir\\TIMING")
  584.     @MkDir("@miroDrive:@miroDir\\FONT")
  585. @Endif
  586. @If (200 [= @Option    // copy if Windows drivers
  587.     || 201 [= @Option) // or miro windows tools
  588.   @If ('D' [= @Group)
  589.     @Copy ("@InDrive:\\README.DEU","@miroDrive:@miroDir\\COMMON\\MINFO.TXT")
  590.   @Else
  591.     @Copy ("@InDrive:\\README.ENG","@miroDrive:@miroDir\\COMMON\\MINFO.TXT")
  592.   @EndIf
  593. @EndIf
  594.  
  595. @If (200 [= @Option) // Windows drivers
  596.   @DefineDisk
  597.     @Label = "Install disk # 1/2"
  598.     @BeginLib DRIVERS.RED
  599.       @File OEMC22SD.DEU  @Size 25000  @Out @wSysDir\\*.INF @Option 100 @Group D
  600.       @File OEMC22SD.ENG  @Size 25000  @Out @wSysDir\\*.INF @Option 100 @Group E
  601.       @File OEMC22D1.DEU  @Size 25000  @Out @wSysDir\\*.INF @Option 101 @Group D
  602.       @File OEMC22D1.ENG  @Size 25000  @Out @wSysDir\\*.INF @Option 101 @Group E
  603.       @File OEMC12D2.DEU  @Size 25000  @Out @wSysDir\\*.INF @Option 102 @Group D
  604.       @File OEMC12D2.ENG  @Size 25000  @Out @wSysDir\\*.INF @Option 102 @Group E
  605.       @File OEMC12SD.DEU  @Size 25000  @Out @wSysDir\\*.INF @Option 103 @Group D
  606.       @File OEMC12SD.ENG  @Size 25000  @Out @wSysDir\\*.INF @Option 103 @Group E
  607.       @File OEMC22SD.DEU  @Size 25000  @Out @miroDrive:@miroDir\\COMMON\\*.INF @Option 100 @Group D
  608.       @File OEMC22SD.ENG  @Size 25000  @Out @miroDrive:@miroDir\\COMMON\\*.INF @Option 100 @Group E
  609.       @File OEMC22D1.DEU  @Size 25000  @Out @miroDrive:@miroDir\\COMMON\\*.INF @Option 101 @Group D
  610.       @File OEMC22D1.ENG  @Size 25000  @Out @miroDrive:@miroDir\\COMMON\\*.INF @Option 101 @Group E
  611.       @File OEMC12D2.DEU  @Size 25000  @Out @miroDrive:@miroDir\\COMMON\\*.INF @Option 102 @Group D
  612.       @File OEMC12D2.ENG  @Size 25000  @Out @miroDrive:@miroDir\\COMMON\\*.INF @Option 102 @Group E
  613.       @File OEMC12SD.DEU  @Size 25000  @Out @miroDrive:@miroDir\\COMMON\\*.INF @Option 103 @Group D
  614.       @File OEMC12SD.ENG  @Size 25000  @Out @miroDrive:@miroDir\\COMMON\\*.INF @Option 103 @Group E
  615.  
  616.       @File VXPMR_08.DRV @Size 250000 @Out @wSysDir\\VXPMR_08.*
  617.       @File VXPMR_16.DRV @Size 250000 @Out @wSysDir\\VXPMR_15.*
  618.       @File VXPMR_16.DRV @Size 250000 @Out @wSysDir\\VXPMR_16.*
  619.       //2MB for 32Bit
  620.       @If (100 [= @Option || 102 [= @Option)
  621.         @File VXPMR_32.DRV @Size 250000 @Out @wSysDir\\VXPMR_32.*
  622.       @EndIf
  623.       //CRYSTAL 12SD 1MB for 24Bit and 4Bit
  624.       @If (103 [= @Option)
  625.         @File S3VSND24.DRV @Size 250000 @Out @wSysDir\\*.*
  626.         @File S3FLAT.DRV   @Size 250000 @Out @wSysDir\\*.*
  627.       @EndIf
  628.  
  629.       @File MIRODCI.DRV  @Size 55000  @Out @wSysDir\\MIRODCI.DRV
  630.       //@File BITUM.DRV    @Size 70000  @Out @wSysDir\\*.*
  631.       //@File BITUM.INI    @Size 500    @Out *.*
  632.       @File MIROINIT.DLL @Size 110000 @Out @wSysDir\\*.*
  633.       @File MIROHW.DLL   @Size 90000  @Out @wSysDir\\*.*
  634.       @File MIROHW.INI   @Size 1000   @Out @miroDrive:@miroDir\\COMMON\\*.*
  635.  
  636.       @File MONITOR.INI  @Size 30000  @Out @miroDrive:@miroDir\\TIMING\\*.*
  637.       @File TIMING.INI   @Size 50000  @Out @miroDrive:@miroDir\\TIMING\\*.*
  638.       @File CARD0012.INI @Size 17000  @Out @miroDrive:@miroDir\\TIMING\\*.*
  639.       @File CARD0212.INI @Size 17000  @Out @miroDrive:@miroDir\\TIMING\\*.*
  640.       @File CARD0213.INI @Size 25000  @Out @miroDrive:@miroDir\\TIMING\\*.*
  641.  
  642.       @File VGALOGO.LGO  @Size 2000   @Out @wSysDir\\*.*
  643.       @File MIROVDD.386  @Size 42000  @Out @wSysDir\\*.*
  644.       @File MIROGRB.3GR  @Size 16000  @Out @wSysDir\\*.*
  645.       @File MIROGRB.2GR  @Size 5000   @Out @wSysDir\\*.*
  646.       //CRYSTAL 12SD 1MB for 24Bit and 4Bit
  647.       @If (103 [= @Option)
  648.         @File OCTOVGA.2GR  @Size 5000   @Out @wSysDir\\*.*
  649.         @File OCTOVGA.3GR  @Size 15000  @Out @wSysDir\\*.*
  650.         @File VDDS3.386    @Size 40000  @Out @wSysDir\\*.*
  651.         @File VGACOLOR.2GR @Size 5000   @Out @wSysDir\\*.*
  652.         @File S3911GRB.3GR @Size 16000  @Out @wSysDir\\*.*
  653.         @File VDDVIS68.386 @Size 43000  @Out @wSysDir\\*.*
  654.       @EndIf
  655.       @File FONT.RSC     @Size 50000  @Out @miroDrive:@miroDir\\FONT\\*.*
  656.  
  657.       @File 8514FIX.FON  @Size 12000  @Out @wSysDir\\*.*
  658.       @File 8514OEM.FON  @Size 12000  @Out @wSysDir\\*.*
  659.       @File 8514SYS.FON  @Size 12000  @Out @wSysDir\\*.*
  660.       @File CGA40850.FON @Size 6000   @Out @wSysDir\\*.*
  661.       @File CGA80850.FON @Size 6000   @Out @wSysDir\\*.*
  662.       @File CGA40WOA.FON @Size 7000   @Out @wSysDir\\*.*
  663.       @File CGA80WOA.FON @Size 5000   @Out @wSysDir\\*.*
  664.       @File COURF.FON    @Size 30000  @Out @wSysDir\\*.*
  665.       @File EGA40850.FON @Size 8000   @Out @wSysDir\\*.*
  666.       @File EGA80850.FON @Size 8000   @Out @wSysDir\\*.*
  667.       @File EGA40WOA.FON @Size 9000   @Out @wSysDir\\*.*
  668.       @File EGA80WOA.FON @Size 8000   @Out @wSysDir\\*.*
  669.       @File VGAOEM.FON   @Size 7000   @Out @wSysDir\\*.*
  670.       @File SERIFF.FON   @Size 82000  @Out @wSysDir\\*.*
  671.       @File SMALLF.FON   @Size 22000  @Out @wSysDir\\*.*
  672.       @File SSERIFF.FON  @Size 90000  @Out @wSysDir\\*.*
  673.       @File SYMBOLF.FON  @Size 80000  @Out @wSysDir\\*.*
  674.     @EndLib
  675.   @EndDisk
  676. @EndIf
  677.  
  678.  @If (202 [= @Option) // miro wallpaper
  679.   @DefineDisk
  680.     @Label = "Install disk # 1/2"
  681.     @BeginLib DRIVERS.RED
  682.       @File CRYSTAL.BMP  @Size 80000  @Out MIRO.*
  683.     @EndLib
  684.   @EndDisk
  685. @EndIf
  686.  
  687.  
  688. @If (200 [= @Option)    // copy if Windows drivers
  689.   @DefineDisk
  690.     @If (@IsFloppy)
  691.       @Label = "Install disk # 2/2"
  692.     @Else
  693.       @Label = "Install disk # 1/2"
  694.     @EndIf
  695.     @BeginLib MWINTOOL.RED
  696.       @File MONSEL.EXE   @Size 70000  @Out @miroDrive:@miroDir\\COMMON\\*.*
  697.       @File MONSEL.INI   @Size 1000   @Out @miroDrive:@miroDir\\COMMON\\*.*
  698.       @File MONSEL.DEU   @Size 34000  @Out @miroDrive:@miroDir\\COMMON\\*.HLP @Group D
  699.       @File MONSEL.ENG   @Size 33000  @Out @miroDrive:@miroDir\\COMMON\\*.HLP @Group E
  700.       @File MSUPSCRN.EXE @Size 90000  @Out *.*
  701.       @File MSUP.DEU     @Size 26000  @Out *.HLP @Group D
  702.       @File MSUP.ENG     @Size 25000  @Out *.HLP @Group E
  703.  
  704.       @File MSUPVIRT.EXE @Size 20000  @Out *.*
  705.       @File VIRTDLL.DLL  @Size 10000  @Out *.*
  706.       @File MSUPVIR.DEU  @Size 10000  @Out *.HLP @Group D
  707.       @File MSUPVIR.ENG  @Size 10000  @Out *.HLP @Group E
  708.       @File MSUPHOT.EXE  @Size 20000  @Out *.*
  709.       @File MSUPSCRD.DLL @Size 3000   @Out *.*
  710.  
  711.       @File MPWRSAVE.SCR @Size 35000  @Out *.*
  712.       @File MTINT.EXE    @Size 95000  @Out @miroDrive:@miroDir\\COMMON\\*.*
  713.       @File MTINTDEU.HLP @Size 45000  @Out @miroDrive:@miroDir\\COMMON\\MTINT.HLP @Group D
  714.       @File MTINTENG.HLP @Size 45000  @Out @miroDrive:@miroDir\\COMMON\\MTINT.HLP @Group E
  715.       @File MTINTDEU.INI @Size 2500   @Out MTINT.INI @Group D
  716.       @File MTINTENG.INI @Size 2500   @Out MTINT.INI @Group E
  717.       @File WSIZER.EXE   @Size 120000 @Out @miroDrive:@miroDir\\COMMON\\*.*
  718.       @File WSIZER.INI   @Size 2000   @Out @miroDrive:@miroDir\\COMMON\\*.*
  719.       @File WSIZER.HLP   @Size 8000   @Out @miroDrive:@miroDir\\COMMON\\*.* @Group D
  720.       @File WSIZER_E.HLP @Size 8000   @Out @miroDrive:@miroDir\\COMMON\\WSIZER.* @Group E
  721.       @File WADJUST.EXE  @Size 82000  @Out @miroDrive:@miroDir\\COMMON\\*.*
  722.       @File WADJUST.INI  @Size 3000   @Out @miroDrive:@miroDir\\COMMON\\*.*
  723.       @File DRIVCFG.EXE  @Size 85000  @Out @miroDrive:@miroDir\\COMMON\\*.*
  724.       @File DRIVCFG.INI  @Size 6000   @Out @miroDrive:@miroDir\\COMMON\\*.*
  725.       @File DRIVCFG.DEU  @Size 12000  @Out @miroDrive:@miroDir\\COMMON\\DRIVCFG.HLP @Group D
  726.       @File DRIVCFG.ENG  @Size 12000  @Out @miroDrive:@miroDir\\COMMON\\DRIVCFG.HLP @Group E
  727.       @File S3REFRSH.EXE @Size 72000  @Out @miroDrive:@miroDir\\COMMON\\*.*
  728.     @EndLib
  729.   @EndDisk
  730. @EndIf
  731.  
  732. @If (200 [= @Option    // copy if Windows drivers
  733.     || 201 [= @Option) // or miro windows tools
  734.   @DefineDisk
  735.     @If (@IsFloppy)
  736.       @Label = "Install disk # 2/2"
  737.     @Else
  738.       @Label = "Install disk # 1/2"
  739.     @EndIf
  740.     @BeginLib MWINTOOL.RED
  741.       @File MWINTOOL.DEU @Size 15000  @Out *.INI @Group D
  742.       @File MWINTOOL.ENG @Size 15000  @Out *.INI @Group E
  743.       @File MCLASS.DLL   @Size 65000  @Out @miroDrive:@miroDir\\COMMON\\*.*
  744.     @EndLib
  745.   @EndDisk
  746. @EndIf
  747.  
  748. @If (201 [= @Option) // miro windows tools
  749.   @DefineDisk
  750.     @If (@IsFloppy)
  751.       @Label = "Install disk # 2/2"
  752.     @Else
  753.       @Label = "Install disk # 1/2"
  754.     @EndIf
  755.     @BeginLib MWINTOOL.RED
  756.       //@File MIROSCOP.EXE @Size 110000 @Out *.*
  757.       //@File MIROHOOK.DLL @Size 5000   @Out *.*
  758.       //@File MSCOPE.DEU   @Size 55000  @Out @miroDrive:@miroDir\\COMMON\\*.HLP @Group D
  759.       //@File MSCOPE.ENG   @Size 55000  @Out @miroDrive:@miroDir\\COMMON\\*.HLP @Group E
  760.       @File MSCOPE.EXE   @Size 35000  @Out @miroDrive:@miroDir\\COMMON\\*.*
  761.       @File MSCOPE.INI   @Size 5000   @Out @miroDrive:@miroDir\\COMMON\\*.*
  762.       @File MSIZER.EXE   @Size 35000  @Out *.*
  763.     @EndLib
  764.   @EndDisk
  765. @EndIf
  766.  
  767.  
  768.  
  769. //*** set variables in .INI files *********************************************
  770.  
  771. @If (200 [= @Option) // Windows drivers
  772.   @SetINI ("mboot.description", "displayinf2",, "system.ini")
  773.   @SetINI ("928.drv", "2in1",, "system.ini")
  774.   @SetINI ("928.drv", "notaus",, "system.ini")
  775.   @SetINI ("928.drv", "DRAM",, "system.ini")
  776.  
  777.   @SetINI ("928.drv", "LinBase",, "system.ini")
  778.   @SetINI ("mboot.description", "mboot","1", "system.ini")
  779.   @SetINI ("mboot.description", "miroPATH","@miroDrive:@miroDir", "system.ini")
  780.   @SetINI ("Desktop", "3D", "1", "win.ini")
  781.  
  782.   @If (   ("@GetINI ("drivers","DCI","system.ini")" != "")
  783.       &&  ("@GetINI ("drivers","DCI","system.ini")" != "MIRODCI")
  784.       &&  ("@GetINI ("drivers","MIRODCI","system.ini")" == "")
  785.       )
  786.     @SetINI ("drivers", "MIRODCI","@GetINI ("drivers","DCI","system.ini")", "system.ini")
  787.   @EndIf
  788.   @SetINI ("drivers", "DCI","MIRODCI", "system.ini")
  789.  
  790.   //del OLD WSIZER entry
  791.   @merke = @GetINI("Windows", "run","win.ini")
  792.   @If (@StrFind("@merke", "@OutDrive:@SubDir\\WSIZER.EXE") > -1)
  793.     @merke = @StrDel("@merke", @StrFind("@merke", "@OutDrive:@SubDir\\WSIZER.EXE"),@StrLen("@OutDrive:@SubDir\\WSIZER.EXE "))
  794.     @SetINI ("Windows", "run", "@merke", "win.ini")
  795.   @EndIf
  796.  
  797.   @merke = @GetINI("Windows", "run", "win.ini")
  798.   @If (  (@StrFind("@merke", "wsizer") < 0)
  799.       && (@StrFind("@merke", "WSIZER") < 0))
  800.     @SetINI ("Windows", "run", "@miroDrive:@miroDir\\COMMON\\WSIZER.EXE @merke", "win.ini" )
  801.   @EndIf
  802. @EndIf
  803.  
  804. @If (200 [= @Option    // copy if Windows drivers
  805.     || 201 [= @Option) // or miro windows tools
  806.  
  807.     @SetINI ("TintControl", "CLUT1", " ", "win.ini")
  808.     @SetINI ("TintControl", "CLUT2",, "win.ini")
  809. @EndIf
  810.  
  811.  
  812.  
  813. @If (202 [= @Option) // miro wallpaper
  814.   @SetINI ("Desktop", "TileWallpaper", "1", "win.ini")
  815.   @SetINI ("Desktop", "Wallpaper", "miro.bmp", "win.ini")
  816. @EndIf
  817.  
  818.  
  819. //*** old software to be deleted **********************************************
  820.  
  821. @If (200 [= @Option || 201 [= @Option)
  822.   @Delete ("@OutDrive:@wSysDir\\MIROLOGO.RLE")
  823.   @Delete ("@OutDrive:@SubDir\\*.MIR")
  824.   @Delete ("@OutDrive:@SubDir\\MSUP?.HLP")
  825.   @Delete ("@OutDrive:@SubDir\\MSUPVIR?.HLP")
  826.   @Delete ("@OutDrive:@SubDir\\MSCOPE1.HLP")
  827.   @Delete ("@OutDrive:@SubDir\\MSCOPE2.HLP")
  828.   @Delete ("@OutDrive:@SubDir\\MSCOPE3.HLP")
  829.   @Delete ("@OutDrive:@SubDir\\MSCOPE4.HLP")
  830.   @Delete ("@OutDrive:@SubDir\\MTINTRUN.EXE")
  831.   @Delete ("@OutDrive:@SubDir\\CRYS10SD.BMP")
  832.   @Delete ("@OutDrive:@SubDir\\CRYS20SD.BMP")
  833.   @Delete ("@OutDrive:@SubDir\\CRYS20SV.BMP")
  834.   @Delete ("@OutDrive:@SubDir\\CRYS40SV.BMP")
  835.   @Delete ("@OutDrive:@SubDir\\MIRO20.BMP")
  836.   @Delete ("@OutDrive:@SubDir\\MIRO40.BMP")
  837.   @Delete ("@OutDrive:@SubDir\\MONSEL.*")
  838.   @Delete ("@OutDrive:@SubDir\\MTINT.EXE")
  839.   @Delete ("@OutDrive:@SubDir\\WSIZER.*")
  840.   @Delete ("@OutDrive:@SubDir\\WADJUST.EXE")
  841. @EndIf
  842.  
  843. @If (200 [= @Option && @DirExists ("@OutDrive:@SubDir\\SYSTEM"))
  844.   @Delete ("@OutDrive:@SubDir\\OEMC20SD.*")
  845.   @Delete ("@OutDrive:@SubDir\\OEMC20D1.*")
  846.   @Delete ("@OutDrive:@SubDir\\OEMC20SV.*")
  847.   @Delete ("@OutDrive:@SubDir\\OEMC40SV.*")
  848.   @Delete ("@OutDrive:@SubDir\\OEMC40E.*")
  849.   @Delete ("@OutDrive:@SubDir\\OEMC20E.*")
  850. @EndIf
  851.  
  852.  
  853. //*** project trailer block ***************************************************
  854.  
  855. @Finish
  856.   @BackGroundMode (3,@Blue, @Blue)
  857.   @WinExec ("PROGMAN.EXE", 1)
  858.  
  859.   @If (200 [= @Option || 201 [= @Option)
  860.     @ProgramManager ("[CreateGroup (miroWINTOOLS, MWINTOOL.GRP)]")
  861.     @Delay = @SystemDate
  862. La: @If (@SystemDate - @Delay <= @d) @Goto La @EndIf
  863.     @ProgramManager ("[ReplaceItem (miro SUPERSCREEN)]")
  864.     @Delay = @SystemDate
  865. Lb: @If (@SystemDate - @Delay <= @d) @Goto Lb @EndIf
  866.     @ProgramManager ("[AddItem (@OutDrive:@SubDir\\MSUPSCRN.EXE, miro SUPERSCREEN)]")
  867.     @Delay = @SystemDate
  868. Lcc: @If (@SystemDate - @Delay <= @d) @Goto Lcc @EndIf
  869.     @ProgramManager ("[DeleteItem (miro MONITOR SELECT)]")
  870.     @Delay = @SystemDate
  871. Lc: @If (@SystemDate - @Delay <= @d) @Goto Lc @EndIf
  872.     @ProgramManager ("[ReplaceItem (miroMONITOR-Select)]")
  873.     @Delay = @SystemDate
  874. Ld: @If (@SystemDate - @Delay <= @d) @Goto Ld @EndIf
  875.     @ProgramManager ("[AddItem (@miroDrive:@miroDir\\COMMON\\MONSEL.EXE, miro MONITOR SELECT)]")
  876.     @Delay = @SystemDate
  877. Le: @If (@SystemDate - @Delay <= @d) @Goto Le @EndIf
  878.     @ProgramManager ("[ReplaceItem (miroTINT CONTROL)]")
  879.     @Delay = @SystemDate
  880. Lf: @If (@SystemDate - @Delay <= @d) @Goto Lf @EndIf
  881.     @ProgramManager ("[AddItem (@miroDrive:@miroDir\\COMMON\\MTINT.EXE, miroTINT CONTROL)]")
  882.     @Delay = @SystemDate
  883. Lg: @If (@SystemDate - @Delay <= @d) @Goto Lg @EndIf
  884.     @ProgramManager ("[ReplaceItem (miro HOTKEY)]")
  885.     @Delay = @SystemDate
  886. Lh: @If (@SystemDate - @Delay <= @d) @Goto Lh @EndIf
  887.     @ProgramManager ("[AddItem (@OutDrive:@SubDir\\MSUPHOT.EXE, miro HOTKEY)]")
  888.     @Delay = @SystemDate
  889. Lu: @If (@SystemDate - @Delay <= @d) @Goto Lu @EndIf
  890.     @ProgramManager ("[ReplaceItem (miro PINBOARD)]")
  891.     @Delay = @SystemDate
  892. Lv: @If (@SystemDate - @Delay <= @d) @Goto Lv @EndIf
  893.     @ProgramManager ("[AddItem (@miroDrive:@miroDir\\common\\WSIZER.EXE, miro PINBOARD)]")
  894.     @Delay = @SystemDate
  895. Lw: @If (@SystemDate - @Delay <= @d) @Goto Lw @EndIf
  896.     @ProgramManager ("[ReplaceItem (miroSCREEN-Adjust)]")
  897.     @Delay = @SystemDate
  898. Lx: @If (@SystemDate - @Delay <= @d) @Goto Lx @EndIf
  899.     @ProgramManager ("[AddItem (@miroDrive:@miroDir\\COMMON\\WADJUST.EXE, miroSCREEN-Adjust)]")
  900.     @Delay = @SystemDate
  901. Laa: @If (@SystemDate - @Delay <= @d) @Goto Laa @EndIf
  902.     @ProgramManager ("[ReplaceItem (miroDRIVER-Control)]")
  903.     @Delay = @SystemDate
  904. Lab: @If (@SystemDate - @Delay <= @d) @Goto Lab @EndIf
  905.     @ProgramManager ("[AddItem (@miroDrive:@miroDir\\COMMON\\DRIVCFG.EXE, miroDRIVER-Control)]")
  906.     @Delay = @SystemDate
  907. Li: @If (@SystemDate - @Delay <= @d) @Goto Li @EndIf
  908.  
  909.     @If (201 [= @Option) // miro windows tools
  910.       @ProgramManager ("[ReplaceItem (miroSCOPE)]")
  911.       @Delay = @SystemDate
  912. Ll: @If (@SystemDate - @Delay <= @d) @Goto Ll @EndIf
  913.       @ProgramManager ("[AddItem (@miroDrive:@miroDir\\COMMON\\MSCOPE.EXE, miroSCOPE)]")
  914.       @Delay = @SystemDate
  915. Lm: @If (@SystemDate - @Delay <= @d) @Goto Lm @EndIf
  916.       @ProgramManager ("[ReplaceItem (miroSIZE CALIBRATION)]")
  917.       @Delay = @SystemDate
  918. Ln: @If (@SystemDate - @Delay <= @d) @Goto Ln @EndIf
  919.       @ProgramManager ("[AddItem (@OutDrive:@SubDir\\MSIZER.EXE, miroSIZE CALIBRATION)]")
  920.       @Delay = @SystemDate
  921. Lo: @If (@SystemDate - @Delay <= @d) @Goto Lo @EndIf
  922.     @EndIf
  923.  
  924.     @ProgramManager ("[ReplaceItem (Information)]")
  925.     @Delay = @SystemDate
  926. Lr: @If (@SystemDate - @Delay <= @d) @Goto Lr @EndIf
  927.     @ProgramManager ("[AddItem (NOTEPAD @miroDrive:@miroDir\\COMMON\\minfo.txt, Information, @miroDrive:@miroDir\\COMMON\\MONSEL.EXE, 1)]")
  928.     @Delay = @SystemDate
  929. Ls: @If (@SystemDate - @Delay <= @d) @Goto Ls @EndIf
  930.     @ProgramManager ("[ShowGroup (miroWINTOOLS, 1)]")
  931.     @Delay = @SystemDate
  932. Lt: @If (@SystemDate - @Delay <= @d) @Goto Lt @EndIf
  933.   @EndIf
  934.  
  935.   @If (200 [= @Option || 201 [= @Option)
  936.     //Language for ini files
  937.     @If ('D' [= @Group)
  938.       @SetINI ("Locale", "Language","Deutsch", "@miroDrive:@miroDir\\common\\drivcfg.ini")
  939.       @SetINI ("Language", "Language","Deutsch", "@miroDrive:@miroDir\\common\\wsizer.ini")
  940.       @SetINI ("Language", "Language","Deutsch", "@miroDrive:@miroDir\\common\\wadjust.ini")
  941.       @SetINI ("Language", "Language","Deutsch", "@miroDrive:@miroDir\\common\\monsel.ini")
  942.       @SetINI ("Language", "Language","Deutsch", "@miroDrive:@miroDir\\common\\mscope.ini")
  943.     @EndIf
  944.     @If ('E' [= @Group)
  945.       @SetINI ("Locale", "Language","English", "@miroDrive:@miroDir\\common\\drivcfg.ini")
  946.       @SetINI ("Language", "Language","English", "@miroDrive:@miroDir\\common\\wsizer.ini")
  947.       @SetINI ("Language", "Language","English", "@miroDrive:@miroDir\\common\\wadjust.ini")
  948.       @SetINI ("Language", "Language","English", "@miroDrive:@miroDir\\common\\monsel.ini")
  949.       @SetINI ("Language", "Language","English", "@miroDrive:@miroDir\\common\\mscope.ini")
  950.     @EndIf
  951.  
  952.     //Set Menu for miroPINBOARD
  953.     @SetINI ("Menu","miroDRIVER-Control","DRIVCFG.EXE","@miroDrive:@miroDir\\common\\wsizer.ini")
  954.     @SetINI ("Menu","miroMONITOR SELECT","MONSEL.EXE","@miroDrive:@miroDir\\common\\wsizer.ini")
  955.     @SetINI ("Menu","miroTINT CONTROL",  "MTINT.EXE", "@miroDrive:@miroDir\\common\\wsizer.ini")
  956.     @SetINI ("Menu","miroHOTKEY",        "MSUPHOT.EXE",    "@miroDrive:@miroDir\\common\\wsizer.ini")
  957.     @SetINI ("Menu","miroSUPERSCREEN",   "MSUPSCRN.EXE",   "@miroDrive:@miroDir\\common\\wsizer.ini")
  958.  
  959.     //Monsel
  960.     @SetINI ("BOARDINSTALLNAMES", "0x0012","miroCRYSTAL 12SD", "@miroDrive:@miroDir\\common\\monsel.ini")
  961.     @SetINI ("BOARDINSTALLNAMES", "0x0212","miroCRYSTAL 12SD", "@miroDrive:@miroDir\\common\\monsel.ini")
  962.     @SetINI ("BOARDINSTALLNAMES", "0x0213","miroCRYSTAL 22SD", "@miroDrive:@miroDir\\common\\monsel.ini")
  963.     @If (@fflag == 1)
  964.       @SetINI ("boot", "f_flag", "ON", "@miroDrive:@miroDir\\common\\monsel.ini")
  965.     @Else
  966.       @SetINI ("boot", "f_flag",, "@miroDrive:@miroDir\\common\\monsel.ini")
  967.     @EndIf
  968.   @EndIf
  969.  
  970.   @If (200 [= @Option)
  971.     @SetINI ("mboot.description", "mboot","1", "@MIRODRIVE:@MIRODIR\\COMMON\\MSYSTEM.INI")
  972.     @SetINI ("mboot.description", "displayinf2",, "@MIRODRIVE:@MIRODIR\\COMMON\\MSYSTEM.INI")
  973.     @SetINI ("mboot.description", "displayinf2", , "system.ini")
  974.     @SetINI ("mboot.description", "TWINFACE","0", "@MIRODRIVE:@MIRODIR\\COMMON\\MSYSTEM.INI")
  975.  
  976.     @If (100 [= @Option)
  977.       @SetINI ("mboot.description", "displayinf", "OEMC22SD.INF", "system.ini")
  978.       @SetINI ("mboot.description", "displayinf", "OEMC22SD.INF", "@MIRODRIVE:@MIRODIR\\COMMON\\MSYSTEM.INI")
  979.     @EndIf
  980.     @If (101 [= @Option)
  981.       @SetINI ("mboot.description", "displayinf", "OEMC22D1.INF", "system.ini")
  982.       @SetINI ("mboot.description", "displayinf", "OEMC22D1.INF", "@MIRODRIVE:@MIRODIR\\COMMON\\MSYSTEM.INI")
  983.     @EndIf
  984.     @If (102 [= @Option)
  985.       @SetINI ("mboot.description", "displayinf", "OEMC12D2.INF", "system.ini")
  986.       @SetINI ("mboot.description", "displayinf", "OEMC12D2.INF", "@MIRODRIVE:@MIRODIR\\COMMON\\MSYSTEM.INI")
  987.     @EndIf
  988.     @If (103 [= @Option)
  989.       @SetINI ("mboot.description", "displayinf", "OEMC12SD.INF", "system.ini")
  990.       @SetINI ("mboot.description", "displayinf", "OEMC12SD.INF", "@MIRODRIVE:@MIRODIR\\COMMON\\MSYSTEM.INI")
  991.     @EndIf
  992.  
  993.     //Timing system
  994.     @If (100 [= @Option) //CRYSTAL 22SD 2MB
  995.       @SetINI ("CARD1", "card_name","miroCRYSTAL 22SD", "@miroDrive:@miroDir\\TIMING\\INSTALL.INI")
  996.       @SetINI ("CARD1", "card_file","CARD0213.INI", "@miroDrive:@miroDir\\TIMING\\INSTALL.INI")
  997.     @EndIf
  998.     @If (101 [= @Option) //CRYSTAL 22SD 1MB
  999.       @SetINI ("CARD1", "card_name","miroCRYSTAL 22SD", "@miroDrive:@miroDir\\TIMING\\INSTALL.INI")
  1000.       @SetINI ("CARD1", "card_file","CARD0013.INI", "@miroDrive:@miroDir\\TIMING\\INSTALL.INI")
  1001.     @EndIf
  1002.     @If (102 [= @Option) //CRYSTAL 12SD 2MB
  1003.       @SetINI ("CARD1", "card_name","miroCRYSTAL 12SD", "@miroDrive:@miroDir\\TIMING\\INSTALL.INI")
  1004.       @SetINI ("CARD1", "card_file","CARD0012.INI", "@miroDrive:@miroDir\\TIMING\\INSTALL.INI")
  1005.     @EndIf
  1006.     @If (103 [= @Option) //CRYSTAL 12SD 1MB
  1007.       @SetINI ("CARD1", "card_name","miroCRYSTAL 12SD", "@miroDrive:@miroDir\\TIMING\\INSTALL.INI")
  1008.       @SetINI ("CARD1", "card_file","CARD0212.INI", "@miroDrive:@miroDir\\TIMING\\INSTALL.INI")
  1009.     @EndIf
  1010.     @SetINI ("CARD1", "monitor","64kHz multi frequency monitor", "@miroDrive:@miroDir\\TIMING\\INSTALL.INI")
  1011.     @SetINI ("CARD1", "miromode","0x0", "@miroDrive:@miroDir\\TIMING\\INSTALL.INI")
  1012.     @SetINI ("CARD1", "linaddr_window","0x00000000", "@miroDrive:@miroDir\\TIMING\\INSTALL.INI")
  1013. //    @If (102 [= @Option || 103 [= @Option)
  1014. //      @SetINI ("CARD1", "linaddr_window","0x01800000", "@miroDrive:@miroDir\\TIMING\\INSTALL.INI")
  1015. //    @Else
  1016.     @SetINI ("CARD1", "linaddr_window","0x00000000", "@miroDrive:@miroDir\\TIMING\\INSTALL.INI")
  1017. //    @EndIf
  1018.     @SetINI ("CARD1", "powersave","0", "@miroDrive:@miroDir\\TIMING\\INSTALL.INI")
  1019.     //for default
  1020.     @SetINI ("CARD2", "monitor","64kHz multi frequency monitor", "@miroDrive:@miroDir\\TIMING\\INSTALL.INI")
  1021.     @SetINI ("CARD2", "card_file","CARDFFFF.INI", "@miroDrive:@miroDir\\TIMING\\INSTALL.INI")
  1022.     @SetINI ("CARD2", "card_name","Not Installed", "@miroDrive:@miroDir\\TIMING\\INSTALL.INI")
  1023.     @SetINI ("CARD2", "powersave",, "@miroDrive:@miroDir\\TIMING\\INSTALL.INI")
  1024.     @SetINI ("CARD2", "linaddr_window",, "@miroDrive:@miroDir\\TIMING\\INSTALL.INI")
  1025.     @SetINI ("CARD2", "miromode",, "@miroDrive:@miroDir\\TIMING\\INSTALL.INI")
  1026.  
  1027.   @EndIf
  1028.  
  1029.   @ChDrive (@WindowsDrive)
  1030.   @ChDir ("@WindowsDir")
  1031.   @If (200 [= @Option) // Windows drivers
  1032.     @ReturnValue (4711)
  1033.     @WinExec ("@miroDrive:@miroDir\\COMMON\\MONSEL.EXE", 1)
  1034.   @EndIf
  1035. @EndFinish
  1036.  
  1037.  
  1038. //*** eof *********************************************************************
  1039.  
  1040.