- ·上一篇文章:Windows Vista操作系统安全性能剖析
- ·下一篇文章:刚装了Vista.C盘空间占用6.5G正常吗?
使用命令行BCDEDIT.EXE成功修改VISTA启动菜单
---
Identifier: {1625d476-43a5-11da-a549-f1ee9bdf6971} 这是第三个菜单项(注意这个才是唯一的ID,不会重复的)
Type: 10200003
Device: partition=D: 启动分区是D
Path: \Windows\system32\winload.exe 使用\Windows\system32\winload.exe作为引导程序
Description: Microsoft Windows Vista 32 显示为Microsoft Windows Vista 32
Locale: ENG-US
Inherit options: {emssettings}
{dbgsettings}
Windows device: partition=D:
Windows root: \Windows
No Execute policy: OptIn
Detect hal: Yes
对BCDEDIT的简单探索:
BCDEDIT 查看当前启动菜单内容
BCDEDIT -? 查看BCDEDIT命令帮助
BCDEDIT -? -xxxxx 查看BCDEDIT能够使用的命令选项的帮助(其中的xxxxx可以是TIME, DELETE, SET等等)
有用的命令:
BCDEDIT -TIME 30 设置启动菜单等待时间为30秒
BCDEDIT -DELETE {2d0d9c22-4a77-11da-a56e-d40c063bbf5e} 删除Identifier为{2d0d9c22-4a77-11da-a56e-d40c063bbf5e}的菜单项,如果没有发现这个Identifier的有效菜单,则什么也不做,推荐使用
BCDEDIT -DELETE {2d0d9c22-4a77-11da-a56e-d40c063bbf5e} 强制删除Identifier为{2d0d9c22-4a77-11da-a56e-d40c063bbf5e}的菜单项,请一定小心使用
BCDEDIT -SET {2d0d9c22-4a77-11da-a56e-d40c063bbf5e} Description "MY god1" 将Identifier为{2d0d9c22-4a77-11da-a56e-d40c063bbf5e}的菜单的显示文字改为MY god1(注意:如果中间有空格,则要包括在引号中)
其他命令选项我暂时不需要用,所以没有试了.我使用这个命令删除了重复安装时多出来的菜单,并将VISTA32和VISTA64改名以便区分
Identifier: {1625d476-43a5-11da-a549-f1ee9bdf6971} 这是第三个菜单项(注意这个才是唯一的ID,不会重复的)
Type: 10200003
Device: partition=D: 启动分区是D
Path: \Windows\system32\winload.exe 使用\Windows\system32\winload.exe作为引导程序
Description: Microsoft Windows Vista 32 显示为Microsoft Windows Vista 32
Locale: ENG-US
Inherit options: {emssettings}
{dbgsettings}
Windows device: partition=D:
Windows root: \Windows
No Execute policy: OptIn
Detect hal: Yes
对BCDEDIT的简单探索:
BCDEDIT 查看当前启动菜单内容
BCDEDIT -? 查看BCDEDIT命令帮助
BCDEDIT -? -xxxxx 查看BCDEDIT能够使用的命令选项的帮助(其中的xxxxx可以是TIME, DELETE, SET等等)
有用的命令:
BCDEDIT -TIME 30 设置启动菜单等待时间为30秒
BCDEDIT -DELETE {2d0d9c22-4a77-11da-a56e-d40c063bbf5e} 删除Identifier为{2d0d9c22-4a77-11da-a56e-d40c063bbf5e}的菜单项,如果没有发现这个Identifier的有效菜单,则什么也不做,推荐使用
BCDEDIT -DELETE {2d0d9c22-4a77-11da-a56e-d40c063bbf5e} 强制删除Identifier为{2d0d9c22-4a77-11da-a56e-d40c063bbf5e}的菜单项,请一定小心使用
BCDEDIT -SET {2d0d9c22-4a77-11da-a56e-d40c063bbf5e} Description "MY god1" 将Identifier为{2d0d9c22-4a77-11da-a56e-d40c063bbf5e}的菜单的显示文字改为MY god1(注意:如果中间有空格,则要包括在引号中)
其他命令选项我暂时不需要用,所以没有试了.我使用这个命令删除了重复安装时多出来的菜单,并将VISTA32和VISTA64改名以便区分

