【转载】Windows 7下使用bcdedit删除多余启动项的命令
在Windows ?7中是使用bcdedit來代替Windows XP中的boot.ini
bcdedit位置:C:\Windows\System32 (直接使用命令bcdedit即可)
bcdedit?/enum?>>c:\list.txt
常用命令:
1.修改啟動項描述.
命令:
復(fù)制內(nèi)容到剪貼板 程序代碼
bcdedit /set 標識符 description "描述內(nèi)容"
例如我們把上面的"Windows 7"修改成"Windows7旗艦版"的命令就是
復(fù)制內(nèi)容到剪貼板 程序代碼
bcdedit /set {current} description "Windows7旗艦版"
2.刪除某個啟動項.
命令:
復(fù)制內(nèi)容到剪貼板 程序代碼
bcdedit /delete 標識符
例如我們刪除maxdos8的啟動項.
復(fù)制內(nèi)容到剪貼板 程序代碼
bcdedit /delete {ee888888-8888-8888-8888-8888888888ee}
3.修改啟動菜單顯示時間.
命令:
復(fù)制內(nèi)容到剪貼板 程序代碼
bcdedit /timeout 數(shù)字
例如我們把啟動菜單顯示時間修改為3秒.
復(fù)制內(nèi)容到剪貼板 程序代碼
bcdedit /timeout 3
4.修改默認啟動菜單.
命令:
復(fù)制內(nèi)容到剪貼板 程序代碼
bcdedit /default 標識符
例如我們把默認啟動項修改為maxdos8.
復(fù)制內(nèi)容到剪貼板 程序代碼
bcdedit /defaulte {ee888888-8888-8888-8888-8888888888ee}
5.開啟PAE支持.
命令:
以下內(nèi)容為程序代碼:
bcdedit /set標識符 PAE ForceEnable
以下內(nèi)容為程序代碼:
以下內(nèi)容為程序代碼:
以下內(nèi)容為程序代碼:
例如我們開啟win7的PAE支持.
復(fù)制內(nèi)容到剪貼板 程序代碼
bcdedit /set {current} PAE ForceEnable
6.關(guān)閉DEP文件保護.
命令:
復(fù)制內(nèi)容到剪貼板 程序代碼
bcdedit.exe /set 標識符 nx AlwaysOff
例如我們關(guān)閉win7的DEP保護.
復(fù)制內(nèi)容到剪貼板 程序代碼
bcdedit.exe /set {current} nx AlwaysOff
7.調(diào)整啟動菜單順序.
命令:[bcdedit /bootsequence 標識符1 標識符2 ....]
例如,我們把順序調(diào)整為maxdos8 win7...
復(fù)制內(nèi)容到剪貼板 程序代碼
bcdedit /bootsequence{ee888888-8888-8888-8888-8888888888ee} {current}
也可以直接將某一個標識符調(diào)整到頂部.命令為
復(fù)制內(nèi)容到剪貼板 程序代碼
bcdedit /bootsequence 標識符 /addfirst
把某一個標識符調(diào)整到最后.
復(fù)制內(nèi)容到剪貼板 程序代碼
bcdedit /bootsequence 標識符 /addlast
從列表中刪除某一個標識符.
復(fù)制內(nèi)容到剪貼板 程序代碼
bcdedit /bootsequence 標識符 /remove
轉(zhuǎn)載于:https://www.cnblogs.com/morven/p/3284204.html
總結(jié)
以上是生活随笔為你收集整理的【转载】Windows 7下使用bcdedit删除多余启动项的命令的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: android 系统级闹铃,Androi
- 下一篇: 生成数据库结构字段SQL语句