http://www.mobile01.com/topicdetail.php ... 332621&p=1把底下引用內文留下想停用的內容存成Disable-Feature.cmd文字檔
點兩下等他完成後重新開機即可
代碼:
@echo off
echo 停用 桌面小工具
dism /NoRestart /Quiet /Online /Disable-Feature /FeatureName:"WindowsGadgetPlatform"
echo 停用 遊樂場
dism /NoRestart /Quiet /Online /Disable-Feature /FeatureName:"InboxGames"
echo 停用 其他遊戲
dism /NoRestart /Quiet /Online /Disable-Feature /FeatureName:"More Games"
echo 停用 接龍
dism /NoRestart /Quiet /Online /Disable-Feature /FeatureName:"Solitaire"
echo 停用 連環新接龍
dism /NoRestart /Quiet /Online /Disable-Feature /FeatureName:"SpiderSolitaire"
echo 停用 傷心小棧
dism /NoRestart /Quiet /Online /Disable-Feature /FeatureName:"Hearts"
echo 停用 新接龍
dism /NoRestart /Quiet /Online /Disable-Feature /FeatureName:"FreeCell"
echo 停用 踩地雷
dism /NoRestart /Quiet /Online /Disable-Feature /FeatureName:"Minesweeper"
echo 停用 PurblePlace
dism /NoRestart /Quiet /Online /Disable-Feature /FeatureName:"PurblePlace"
echo 停用 西洋棋
dism /NoRestart /Quiet /Online /Disable-Feature /FeatureName:"Chess"
echo 停用 Shanghai
dism /NoRestart /Quiet /Online /Disable-Feature /FeatureName:"Shanghai"
echo 停用 網際網路遊戲
dism /NoRestart /Quiet /Online /Disable-Feature /FeatureName:"Internet Games"
echo 停用 媒體功能
dism /NoRestart /Quiet /Online /Disable-Feature /FeatureName:"MediaPlayback"
echo 停用 WindowsMediaPlayer
dism /NoRestart /Quiet /Online /Disable-Feature /FeatureName:"WindowsMediaPlayer"
echo 停用 MediaCenter功能
dism /NoRestart /Quiet /Online /Disable-Feature /FeatureName:"MediaCenter"
echo 停用 建立光碟功能
dism /NoRestart /Quiet /Online /Disable-Feature /FeatureName:"OpticalMediaDisc"
echo 停用 TabletPC功能
dism /NoRestart /Quiet /Online /Disable-Feature /FeatureName:"TabletPCOC"
echo 停用 遠端差異壓縮
dism /NoRestart /Quiet /Online /Disable-Feature /FeatureName:"MSRDC-Infrastructure"
echo 停用 搜尋功能與索引服務
dism /NoRestart /Quiet /Online /Disable-Feature /FeatureName:"SearchEngine-Client-Package"
echo 停用 XPS檢視器
dism /NoRestart /Quiet /Online /Disable-Feature /FeatureName:"Xps-Foundation-Xps-Viewer"
echo 停用 XPS服務
dism /NoRestart /Quiet /Online /Disable-Feature /FeatureName:"Printing-XPSServices-Features"
echo 完成!請按任意鍵結束。&pause>nul
想恢復功能請用底下內容
代碼:
@echo off
echo 啟用 桌面小工具
dism /NoRestart /Quiet /Online /Enable-Feature /FeatureName:"WindowsGadgetPlatform"
echo 啟用 遊樂場
dism /NoRestart /Quiet /Online /Enable-Feature /FeatureName:"InboxGames"
echo 啟用 其他遊戲
dism /NoRestart /Quiet /Online /Enable-Feature /FeatureName:"More Games"
echo 啟用 接龍
dism /NoRestart /Quiet /Online /Enable-Feature /FeatureName:"Solitaire"
echo 啟用 連環新接龍
dism /NoRestart /Quiet /Online /Enable-Feature /FeatureName:"SpiderSolitaire"
echo 啟用 傷心小棧
dism /NoRestart /Quiet /Online /Enable-Feature /FeatureName:"Hearts"
echo 啟用 新接龍
dism /NoRestart /Quiet /Online /Enable-Feature /FeatureName:"FreeCell"
echo 啟用 踩地雷
dism /NoRestart /Quiet /Online /Enable-Feature /FeatureName:"Minesweeper"
echo 啟用 PurblePlace
dism /NoRestart /Quiet /Online /Enable-Feature /FeatureName:"PurblePlace"
echo 啟用 西洋棋
dism /NoRestart /Quiet /Online /Enable-Feature /FeatureName:"Chess"
echo 啟用 Shanghai
dism /NoRestart /Quiet /Online /Enable-Feature /FeatureName:"Shanghai"
echo 啟用 網際網路遊戲
dism /NoRestart /Quiet /Online /Enable-Feature /FeatureName:"Internet Games"
echo 啟用 媒體功能
dism /NoRestart /Quiet /Online /Enable-Feature /FeatureName:"MediaPlayback"
echo 啟用 WindowsMediaPlayer
dism /NoRestart /Quiet /Online /Enable-Feature /FeatureName:"WindowsMediaPlayer"
echo 啟用 MediaCenter功能
dism /NoRestart /Quiet /Online /Enable-Feature /FeatureName:"MediaCenter"
echo 啟用 建立光碟功能
dism /NoRestart /Quiet /Online /Enable-Feature /FeatureName:"OpticalMediaDisc"
echo 啟用 TabletPC功能
dism /NoRestart /Quiet /Online /Enable-Feature /FeatureName:"TabletPCOC"
echo 啟用 遠端差異壓縮
dism /NoRestart /Quiet /Online /Enable-Feature /FeatureName:"MSRDC-Infrastructure"
echo 啟用 搜尋功能與索引服務
dism /NoRestart /Quiet /Online /Enable-Feature /FeatureName:"SearchEngine-Client-Package"
echo 啟用 XPS檢視器
dism /NoRestart /Quiet /Online /Enable-Feature /FeatureName:"Xps-Foundation-Xps-Viewer"
echo 啟用 XPS服務
dism /NoRestart /Quiet /Online /Enable-Feature /FeatureName:"Printing-XPSServices-Features"
echo 完成!請按任意鍵結束。&pause>nul