TCLUG Archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [TCLUG:2449] Boot from hard drive using NT bootloader?



You could also use the old fashion DOS [MENU] and MENUITEM config.sys
commands as long as you have BootGUI=0 in your C:\MSDOS.SYS file.
Here's a short example (you will probably have to use ATTRIB on
MSDOS.SYS before editing):

**********C:\CONFIG.SYS**********
[MENU]
MENUITEM=DOS, DOS 7.0
MENUITEM=DOSCD, DOS 7.0 with CD-ROM support
MENUITEM=OLINUX, OpenLinux Base v1.2 (2.0.33)
MENUITEM=WINSAFE, Windows 95 in Safe Mode
MENUITEM=WINDOWS, Windows 95
MENUCOLOR=1
MENUDEFAULT=WINDOWS,10

[DOS]
INCLUDE DOSINC

[DOSCD]
INCLUDE DOSINC
DEVICE=C:\SYS\TEACCD\TEAC_CDI.SYS /D:TEAC-CDI 

[OLINUX]

[WINSAFE]

[WINDOWS]

[DOSINC]
FILES=250
**********C:\CONFIG.SYS**********


**********C:\AUTOEXEC.BAT**********
@ECHO OFF
PROMPT $P$G
LH C:\WINDOWS\COMMAND\DOSKEY.COM

GOTO %CONFIG%

:DOS
PATH C:\UTIL\UT;C:\UTIL\PKZ;
GOTO END

:DOSCD
C:\WINDOWS\COMMAND\MSCDEX.EXE /D:TEAC-CDI /M:15
C:\SYS\LOGITECH\MOUSE.EXE
GOTO DOS

:OLINUX
CD \LOADLIN
OLINUX.BAT
GOTO DOS

:WINSAFE
WIN /D:M
GOTO END

:WINDOWS
WIN
GOTO END

:END
MODE CO80
**********C:\AUTOEXEC.BAT**********


**********C:\MSDOS.SYS**********
;SYS
[Paths]
WinDir=C:\WINDOWS
WinBootDir=C:\WINDOWS
HostWinBootDrv=C

[Options]
BootMulti=1
BootGUI=0
Logo=0
Network=1
;
;The following lines are required for compatibility with other
programs.
;Do not remove them (MSDOS.SYS needs to be >1024 bytes).
;xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxa
;xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxb
;xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxc
;xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxd
;xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxe
;xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxf
;xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxg
;xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxh
;xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxi
;xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxj
;xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxk
;xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxl
;xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxm
;xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxn
;xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxo
;xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxp
;xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxq
;xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxr
;xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxs
**********C:\MSDOS.SYS**********

And you can still use the LOADLIN stuff from win95.

Troy