中国DOS联盟论坛

中国DOS联盟

-- 联合DOS 推动DOS 发展DOS --

联盟域名:www.cn-dos.net  论坛域名:www.cn-dos.net/forum
DOS,代表着自由开放与发展,我们努力起来,学习FreeDOS和Linux的自由开放与GNU精神,共同创造和发展美好的自由与GNU GPL世界吧!

游客:  注册 | 登录 | 命令行 | 会员 | 搜索 | 上传 | 帮助 »
中国DOS联盟论坛 » DOS疑难解答 & 问题讨论 (解答室) » 关于在config.sys中制作菜单的数目限制问题
作者:
标题: 关于在config.sys中制作菜单的数目限制问题 上一主题 | 下一主题
riskrisk
初级用户





积分 54
发帖 19
注册 2006-3-31
状态 离线
『楼 主』:  关于在config.sys中制作菜单的数目限制问题

我自己玩玩作了个启动盘,运行的还行,不过我发现在config.sys文件
[menu] 下面作菜单的数目只能到9个,在多就不能现实.因为作的启动盘是给自己用的,把一些长用的功能都写出去了,菜单的数目限制到9.不知道如何解决.
我的config.sys   [menu]  如下:
[menu]
menuitem=StartWithCD, Start Computer with CD-ROM Support.
menuitem=StartHDD, Start Computer With Hard Disk with NTFS Supprot.
menuitem=VirtualCD, Start Computer Only with Virtual CD-ROM support.
menuitem=VirtualFloppy, Start Computer Only with Virtual Floppy support.
menuitem=StartGhost, Start Ghost8.3 For Dos With CD-ROM Support.
menuitem=StartPQ, Start PartitionMagic 8.05 Buile 1371 For Dos.
menuitem=StartDiskGen, Start DiskGen V2.00 Build 0229.
menuitem=StartMaxtor, Start Maxtor Power Diagnostic Utilities (PowerMax4.22).
menuitem=StartKVDOS, Start KV DOS kill virus(virul version:2006/04/1)
menuitem=StartRAVDOS, Start RAV DOS kill virus(virul  version:2006/04/1)
menudefault=StartWithCD,20
menucolor=7,0





Start RAV DOS kill virus(virus version:2006/04/1)
无法显示,因为已经到10了,
翻旧帖半天,好象都没有遇到这个问题啊.

怎么解决这个问题,有没有简单的方法.谢谢大家.


ps:ntfspro下加载C_936.NLS的文件我找到了这个贴子,按照论坛的提示将
http:/bbs.cn-dos.net/该为
http://www.cn-dos.net/forum
仍不能下载.
希望那位Wengier 和各位大大,传一个可以被ntfspro.exe正确读去的中文和繁体中文的.nls文件.谢谢!!

[ Last edited by riskrisk on 2006-4-2 at 15:01 ]

2006-4-2 14:54
查看资料  发送邮件  发短消息 网志   编辑帖子  回复  引用回复
darkradx
高级用户





积分 972
发帖 420
注册 2004-5-16
状态 离线
『第 2 楼』:  

submenu



平生进退如飙风
2006-4-2 15:07
查看资料  发送邮件  发短消息 网志   编辑帖子  回复  引用回复
riskrisk
初级用户





积分 54
发帖 19
注册 2006-3-31
状态 离线
『第 3 楼』:  

darkradx:
能否具体点.
没有dos的书和资料,对submenu如何书写不太清楚.
能否给个例子或是比较详细语法格式.谢谢!等!

2006-4-2 15:11
查看资料  发送邮件  发短消息 网志   编辑帖子  回复  引用回复
riskrisk
初级用户





积分 54
发帖 19
注册 2006-3-31
状态 离线
『第 4 楼』:  

找到submenu帮助,搞定.谢!
SUBMENU

Defines an item on a startup menu that, when selected, displays another set
of choices. You can use this command only within a menu block in your
CONFIG.SYS file.

The startup menu is a list of choices that appears when you start your
computer. You define a startup menu by using special CONFIG.SYS commands.
Each item on the menu corresponds to a set of CONFIG.SYS commands called a
"configuration block." A startup menu makes it possible to start your
computer with a variety of configurations. For more information about
defining multiple configurations, see the chapter "Configuring Your System"
in the MS-DOS User's Guide.

Syntax

    SUBMENU=blockname[,menu_text]

Parameters

blockname
    Specifies the name of the associated menu block. The menu block must be
    defined elsewhere in the CONFIG.SYS file and can contain menu-definition
    commands. Unlike the "main" menu block, which must have the block name
    [MENU], a menu block for a submenu can have any name you want. If MS-DOS
    cannot find a block with the specified name, the item does not appear on
    the startup menu. The block name can be up to 70 characters long and can
    contain most printable characters. It cannot include spaces, backslashes
    (\) and forward slashes (/), commas, semicolons (;), equal signs (=),
    and square brackets ([ and ]).

menu_text
    Specifies the text you want MS-DOS to display for this menu item. If you
    don't specify any menu text, MS-DOS displays the block name as the menu
    item. The menu text can be up to 70 characters long and can contain any
    characters you want.

例子:
The following CONFIG.SYS file defines a main startup menu and one submenu:

    [menu]
    menuitem base_config,Base configuration only
    menuitem full_config,Normal configuration
   submenu netmenu, Normal configuration with network

    [netmenu]    
    menuitem lanman, Start Microsoft LAN Manager
    menuitem vines, Start Banyan VINES

    [base_config]
    dos=high
    device=c:\dos\himem

    [full_config]
    include=base_config
    dos=umb
    device=c:\dos\emm386 ram
    device=c:\dos\ramdrive.sys 512

    [lanman]    include=full_config
    rem Commands for Microsoft LAN Manager would go here.

    [vines]    include=full_config
    rem Commands for Banyan VINES would go here

This CONFIG.SYS file provides a choice of four configurations: a basic
configuration (base_config), a full configuration (full_config), and two
network configurations. Both network configurations include all the commands
in the full configuration; the lanman configuration runs Microsoft LAN
Manager and the vines configuration runs Banyan VINES network software. To
choose a network configuration, the user first selects item 3, "Normal
configuration with network," from the main menu. MS-DOS then displays the
network choices on the submenu.

When MS-DOS starts, it displays the following menu:

    MS-DOS Startup Menu
    ===================

       1. Base configuration only
       2. Normal configuration
       3. Normal configuration with network

    Enter a choice: 1

If item 3 is selected, MS-DOS displays the following menu instead:

    MS-DOS Startup Menu
    ===================

    1. Start Microsoft LAN Manager
    2. Start Banyan VINES

    Enter a choice: 1

[ Last edited by riskrisk on 2006-4-2 at 15:58 ]

2006-4-2 15:55
查看资料  发送邮件  发短消息 网志   编辑帖子  回复  引用回复
riskrisk
初级用户





积分 54
发帖 19
注册 2006-3-31
状态 离线
『第 5 楼』:  

这个希望能够帮助一下:


ntfspro下加载C_936.NLS的文件我找到了这个贴子,按照论坛的提示将
http:/bbs.cn-dos.net/该为
http://www.cn-dos.net/forum
仍不能下载.
希望那位Wengier 和各位大大,传一个可以被ntfspro.exe正确读去的中文和繁体中文的.nls文件.谢谢!!


2006-4-2 15:58
查看资料  发送邮件  发短消息 网志   编辑帖子  回复  引用回复
riskrisk
初级用户





积分 54
发帖 19
注册 2006-3-31
状态 离线
『第 6 楼』:  

这个我看到了:
http://www.cn-dos.net/forum/viewthread.php?tid=8188&fpage=1

问题是那个根本不能下,谢谢那位能够提供以下!

2006-4-2 16:12
查看资料  发送邮件  发短消息 网志   编辑帖子  回复  引用回复
darkradx
高级用户





积分 972
发帖 420
注册 2004-5-16
状态 离线
『第 7 楼』:  

據稱用改的C_936.NLS有bug

1.等ERD2006/2007是否支持原版C_936.NLS
2.等Paragon IFS是否支持中文長文件名



平生进退如飙风
2006-4-4 13:26
查看资料  发送邮件  发短消息 网志   编辑帖子  回复  引用回复
riskrisk
初级用户





积分 54
发帖 19
注册 2006-3-31
状态 离线
『第 8 楼』:  

谢谢!

2006-4-4 18:52
查看资料  发送邮件  发短消息 网志   编辑帖子  回复  引用回复

请注意:您目前尚未注册或登录,请您注册登录以使用论坛的各项功能,例如发表和回复帖子等。


可打印版本 | 推荐给朋友 | 订阅主题 | 收藏主题



论坛跳转: