标题: 如何在AUTOEXEC.BAT批处理文件中实现纯Dos下软件与w98可选择启
[打印本页]
作者: sunsisi
时间: 2005-11-23 23:45
标题: 如何在AUTOEXEC.BAT批处理文件中实现纯Dos下软件与w98可选择启
如何在AUTOEXEC.BAT批处理文件中实现纯Dos下软件与w98可选择启动
作者: alchemist
时间: 2005-11-24 17:42
1. 在C:\>下键入attrib -r -s -h msdos.sys
2. 编辑msdos.sys文件找到BootGUI=1这行,把“1”改成“0”
3. 键入attrib +r +s +h msdos.sys
4. 在AUTOEXEC.BAT文件中加入以下内容
@echo off
echo.
echo Press "1" to MS-DOS 7.1 Press"2" to Windows 98
echo.
choice /c:12
echo.
if errorlevel 2 goto WIN
if errorlevel 1 goto dos
:WIN
win
:dos
[
Last edited by alchemist on 2005-11-25 at 16:32 ]
作者: sunsisi
时间: 2005-11-24 19:20
多谢指教,回去试试