MS-DOS 6.22 keyboard configuration

0

I have MS-DOS 6.22 in a virtual machine (Virtual PC 2007) and I wanted to properly configure the keyboard.

The keyboard I have is a French-Canadian one (FYI in Windows XP my keyboard is labeled "Français (Canada) - Français (Canada)" in the control pannel).

What do I need to put in autoexec.bat and config.sys in order to use the keyboard properly (Windows 3.11 will be installed later if it matters)?

I haven't configured DOS since like 14 years so all my references are lost/trashed now :)

AlexV

Posted 2010-05-06T14:33:55.380

Reputation: 690

That's fantastic. What is this for? Old games? – Stephen Jennings – 2010-05-06T14:38:12.063

Nah i'm just nostalgic. I'm resinstalling those old OSes to see how bad has become what was hot at at that time :) And to see the evolution curve and also be able to show "younger" people how it was before. – AlexV – 2010-05-06T23:29:32.877

Answers

0

Thanks for the try but found it in a dusty Microsoft KB :)

Canada (English)

Config.sys :

Country=004,850,c:\dos\country.sys
Device=c:\dos\display.sys con=(ega,850,2)

Autoexec.bat :

Mode con cp prep=((850 863) c:\dos\ega.cpi)
Mode con cp select=850
Keyb cf,850,c:\dos\keybrd2.sys

Canada (français) (French)

Config.sys :

Country=002,850,c:\dos\country.sys
Device=c:\dos\display.sys con=(ega,850,2)

Autoexec.bat :

Mode con cp prep=((850 863) c:\dos\ega.cpi)
Mode con cp select=850
Keyb cf,850,c:\dos\keyboard.sys

AlexV

Posted 2010-05-06T14:33:55.380

Reputation: 690

0

Wasn't it something like this in autoexec.bat? Be sure to check the real codepages and keyb variables.

mode con codepage select=850
keyb fr,,c:\dos\keyboard.sys

R-D

Posted 2010-05-06T14:33:55.380

Reputation: 2 506

0

I'm not sure if this is what you're looking for, but there are steps provided in this forum thread. I'm still looking for more info.

Isxek

Posted 2010-05-06T14:33:55.380

Reputation: 3 785