home *** CD-ROM | disk | FTP | other *** search
INI File | 1994-04-12 | 1.8 KB | 78 lines |
- [Header]
- Name=WS.WMS
- Alias=Keyboard configuration
- Author=BrainWare / R.Schallberger
- Date_Written=22.3.94
- Changed_By=
- Changed_At=
- Change_Reason=
- Version=1.1
-
- [Install]
- ; Keyboard AT or Enhanced
- if not file '%WSConfig%\k???ENH*.cnf' then goto KBAT
- iniwrite 'keyboard' 'type' '4' 'system.ini'
- iniwrite 'boot.description' 'keyboard.typ' 'Enhanced 101 or 102 key US and Non US keyboards' 'system.ini'
- goto KBLang
- :KBAT
- iniwrite 'keyboard' 'type' '3' 'system.ini'
- iniwrite 'boot.description' 'keyboard.typ' 'All AT type keyboards (84 - 86 keys)' 'system.ini'
-
- :KBLang
-
- ; SG Keyboard
- if not file '%WSConfig%\k?sg*.cnf' then goto NOSG
- iniwrite 'keyboard' 'keyboard.dll' 'kbdsg.dll' 'system.ini'
- restart flag
- exit
- :NOSG
-
- ; SF Keyboard
- if not file '%WSConfig%\k?sf*.cnf' then goto NOSF
- iniwrite 'keyboard' 'keyboard.dll' 'kbdsf.dll' 'system.ini'
- restart flag
- exit
- :NOSF
-
- ; US Keyboard (International)
- if not file '%WSConfig%\k?us*.cnf' then goto NOUS
- iniwrite 'keyboard' 'keyboard.dll' 'kbdusx.dll' 'system.ini'
- restart flag
- exit
- :NOUS
-
- ; GR Keyboard
- if not file '%WSConfig%\k?gr*.cnf' then goto NOGR
- iniwrite 'keyboard' 'keyboard.dll' 'kbdgr.dll' 'system.ini'
- restart flag
- exit
- :NOGR
-
- ; FR Keyboard
- if not file '%WSConfig%\k?fr*.cnf' then goto NOFR
- iniwrite 'keyboard' 'keyboard.dll' 'kbdfr.dll' 'system.ini'
- restart flag
- exit
- :NOFR
-
- ; SP Keyboard
- if not file '%WSConfig%\k?sp*.cnf' then goto NOSP
- iniwrite 'keyboard' 'keyboard.dll' 'kbdsp.dll' 'system.ini'
- restart flag
- exit
- :NOSP
-
- ; IT Keyboard
- if not file '%WSConfig%\k?it*.cnf' then goto NOIT
- iniwrite 'keyboard' 'keyboard.dll' 'kbdit.dll' 'system.ini'
- restart flag
- exit
- :NOIT
-
- ; UK Keyboard
- if not file '%WSConfig%\k?uk*.cnf' then goto NOBR
- iniwrite 'keyboard' 'keyboard.dll' 'kbduk.dll' 'system.ini'
- restart flag
- exit
- :NOBR
-