JMI
December 11th, 2001, 14:04
Here's another alternative that I believe I got from one of the newbie sites, maybe "cracking for newbies", on how to set up and run softice. It also had a sample configuration file, for example did you know you can change your screen colors of the softice windows?. (I don't much care for a black background.) Anyway it pauses the boot process and puts up a simple menu and you enter your choice by pressing "1" or "2" or "3". On my menu list "1" starts softice and then Win, "2" starts Win without softice, and "3" boots to dos. Hitting "enter" starts the "default" choice.
You will see a line from the config.sys file portion that allows you to define which choice is the default (MENUDEFAULT) which determines which choice is made if you do nothing or hit "enter". You can choose whichever you want as the default The number that is directly after the "MENUDEFAULT" entry is the countdown time before the default is selected. Mine is "15", which simply means that I've 15 seconds to make a choice before the "default" is selected for me. To bypass the timer I either simply hit "enter" (which chooses the "default", "1","2" or "3".
Place the following lines in your Autoexe.bat file:
:SICE
C:\PROGRA~1\NUMEGA\SOFTIC~1\WINICE.EXE (or whatever is the path to your softice directory)
goto common
:NORM
goto common

OS
:common
Then add the following to your config.sys file:
[MENU]
MENUITEM SICE,Windows 9x with SoftICE
MENUITEM NORM,Windows 9x
MENUITEM DOS,MS-DOS-Modus
MENUDEFAULT SICE,15
[NORM]
[SICE]
[common]
You can also change the order of the choices. For example you could list "NORM, Windows 9x" first and then it would be the choice of the "1" key and if you also used "MENUDEFAULT NORM, 15", you could also press "enter" to skip the timer (it's just a bigger target on most keyboards than a number key) and it would boot to win without softice.
Hope this helps.