I think I can get myself sound if I can figure out where autoexec.bat are and config.sys are, but they don't seem to exist. Where can I find them and how do I edit them?
It's IBM DOS 5.0
DOS 5.0? YOIKS!! [img]http://www.stevewolfonline.com/Downloads/DMR/Visuals/eek3.gif[/img]
autoexec.bat and config.sys should live in the root (C:\) directory, although IIRC they may have their attributes set such they aren't visible using the normal "dir" command. I haven't touched IBM DOS in about a decade, but in MS-DOS the following syntax of the dir command will display all files in your current directory, regardless of their attributes; the syntax might work for IBM dos as well:
dir /a
MS-DOS had a program called edit.com which you could fire up from the command prompt to edit files like autoexec.bat and config.sys, but I can't remember if IBM DOS had the same or similar. Regardless, you'll probably have to change some of the attributes before you'll be able to edit the files and save your changes. The following commands (again, if I remember correctly) will remove all of the attributes which might prevent you from editing/changing the files:
attrib -r -s -h autoexec.bat
attrib -r -s -h config.sys