P-L-P 小站

2012-02-20 升級至 3.0.10
現在的時間是 2024-09-20, 02:57

所有顯示的時間為 UTC + 8 小時




發表新文章 回覆主題  [ 2 篇文章 ] 
發表人 內容
 文章主題 : [Win7]Windows7停用與啟用各種不想用的功能
文章發表於 : 2013-02-14, 22:57 

註冊時間: 2006-10-31, 14:26
文章: 2145
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


回頂端
 個人資料  
 
 文章主題 : Re: [Win7]Windows7停用與啟用各種不想用的功能
文章發表於 : 2013-02-14, 23:00 

註冊時間: 2006-10-31, 14:26
文章: 2145
保留 搜尋功能與索引服務 媒體功能 WindowsMediaPlayer


回頂端
 個人資料  
 
顯示文章 :  排序  
發表新文章 回覆主題  [ 2 篇文章 ] 

所有顯示的時間為 UTC + 8 小時


不能 在這個版面發表主題
不能 在這個版面回覆主題
不能 在這個版面編輯您的文章
不能 在這個版面刪除您的文章
不能 在這個版面上傳附加檔案

搜尋:
前往 :  
cron
Powered by phpBB® Forum Software © phpBB Group
正體中文語系由 竹貓星球 維護製作