Hi, codo
The problem is not the boot disk per se. It is because the version of DOS on the boot disk is not the same as the one on the network. When you log into the network the login script is setting your comspec environment variable to point to SYS:login\command.com and that command.com is not the same version of DOS as the one on the boot disk.
That is why TheLad was trying to get you to change your comspec to point to the boot disk instead.
Try this:
- Log into the network
- at the DOS prompt, type SET and hit enter
That will display your environment variables, once of which should be COMSPEC. It is likely pointing to SYS:
- at the DOS prompt, type SET COMSPEC=A:\COMMAND.COM
This assumes you are booting from A: and that it is using some version of DOS, which uses COMMAND.COM as the command interpreter.
Once you do that, you should be able to run your apps and exit normally. When you exit you will see the boot diskette activate briefly while it reloads command.com.
If this works, then set up a batch file containing the set comspec line and save it so each time you log in you run that first and then you will be OK.
Jock