PALMisLIFE 討論區

搜索
鹹魚爸魅力四射舞蹈教室
查看: 8048|回復: 1

Windows7停用與啟用各種不想用的功能

[複製鏈接]

701

主題

19

好友

1萬

積分

永遠想不透一直是個謎

  • TA的每日心情
    慵懶
    2012-1-1 10:38
  • 簽到天數: 1 天

    連續簽到: 1 天

    [LV.1]初來乍到

    文章
    10262
    發表於 2009-12-4 18:44 |顯示全部樓層
    本文最後由 czh 於 2009-12-13 12:44 編輯

    把底下內文留下想停用的內容存成Disable-Feature.cmd文字檔
    點兩下等他完成後重新開機即可
    1. @echo off
    2. echo 停用 桌面小工具
    3. dism /NoRestart /Quiet /Online /Disable-Feature /FeatureName:"WindowsGadgetPlatform"
    4. echo 停用 遊樂場
    5. dism /NoRestart /Quiet /Online /Disable-Feature /FeatureName:"InboxGames"
    6. echo 停用 其他遊戲
    7. dism /NoRestart /Quiet /Online /Disable-Feature /FeatureName:"More Games"
    8. echo 停用 接龍
    9. dism /NoRestart /Quiet /Online /Disable-Feature /FeatureName:"Solitaire"
    10. echo 停用 連環新接龍
    11. dism /NoRestart /Quiet /Online /Disable-Feature /FeatureName:"SpiderSolitaire"
    12. echo 停用 傷心小棧
    13. dism /NoRestart /Quiet /Online /Disable-Feature /FeatureName:"Hearts"
    14. echo 停用 新接龍
    15. dism /NoRestart /Quiet /Online /Disable-Feature /FeatureName:"FreeCell"
    16. echo 停用 踩地雷
    17. dism /NoRestart /Quiet /Online /Disable-Feature /FeatureName:"Minesweeper"
    18. echo 停用 PurblePlace
    19. dism /NoRestart /Quiet /Online /Disable-Feature /FeatureName:"PurblePlace"
    20. echo 停用 西洋棋
    21. dism /NoRestart /Quiet /Online /Disable-Feature /FeatureName:"Chess"
    22. echo 停用 Shanghai
    23. dism /NoRestart /Quiet /Online /Disable-Feature /FeatureName:"Shanghai"
    24. echo 停用 網際網路遊戲
    25. dism /NoRestart /Quiet /Online /Disable-Feature /FeatureName:"Internet Games"
    26. echo 停用 媒體功能
    27. dism /NoRestart /Quiet /Online /Disable-Feature /FeatureName:"MediaPlayback"
    28. echo 停用 WindowsMediaPlayer
    29. dism /NoRestart /Quiet /Online /Disable-Feature /FeatureName:"WindowsMediaPlayer"
    30. echo 停用 MediaCenter功能
    31. dism /NoRestart /Quiet /Online /Disable-Feature /FeatureName:"MediaCenter"
    32. echo 停用 建立光碟功能
    33. dism /NoRestart /Quiet /Online /Disable-Feature /FeatureName:"OpticalMediaDisc"
    34. echo 停用 TabletPC功能
    35. dism /NoRestart /Quiet /Online /Disable-Feature /FeatureName:"TabletPCOC"
    36. echo 停用 遠端差異壓縮
    37. dism /NoRestart /Quiet /Online /Disable-Feature /FeatureName:"MSRDC-Infrastructure"
    38. echo 停用 搜尋功能與索引服務
    39. dism /NoRestart /Quiet /Online /Disable-Feature /FeatureName:"SearchEngine-Client-Package"
    40. echo 停用 XPS檢視器
    41. dism /NoRestart /Quiet /Online /Disable-Feature /FeatureName:"Xps-Foundation-Xps-Viewer"
    42. echo 停用 XPS服務
    43. dism /NoRestart /Quiet /Online /Disable-Feature /FeatureName:"Printing-XPSServices-Features"
    44. echo 完成!請按任意鍵結束。&pause>nul
    複製代碼
    附件是已經作好的檔案,內容完全一樣



    想恢復功能請用底下內容,一樣要重新開機才能生效
    1. @echo off
    2. echo 啟用 桌面小工具
    3. dism /NoRestart /Quiet /Online /Enable-Feature /FeatureName:"WindowsGadgetPlatform"
    4. echo 啟用 遊樂場
    5. dism /NoRestart /Quiet /Online /Enable-Feature /FeatureName:"InboxGames"
    6. echo 啟用 其他遊戲
    7. dism /NoRestart /Quiet /Online /Enable-Feature /FeatureName:"More Games"
    8. echo 啟用 接龍
    9. dism /NoRestart /Quiet /Online /Enable-Feature /FeatureName:"Solitaire"
    10. echo 啟用 連環新接龍
    11. dism /NoRestart /Quiet /Online /Enable-Feature /FeatureName:"SpiderSolitaire"
    12. echo 啟用 傷心小棧
    13. dism /NoRestart /Quiet /Online /Enable-Feature /FeatureName:"Hearts"
    14. echo 啟用 新接龍
    15. dism /NoRestart /Quiet /Online /Enable-Feature /FeatureName:"FreeCell"
    16. echo 啟用 踩地雷
    17. dism /NoRestart /Quiet /Online /Enable-Feature /FeatureName:"Minesweeper"
    18. echo 啟用 PurblePlace
    19. dism /NoRestart /Quiet /Online /Enable-Feature /FeatureName:"PurblePlace"
    20. echo 啟用 西洋棋
    21. dism /NoRestart /Quiet /Online /Enable-Feature /FeatureName:"Chess"
    22. echo 啟用 Shanghai
    23. dism /NoRestart /Quiet /Online /Enable-Feature /FeatureName:"Shanghai"
    24. echo 啟用 網際網路遊戲
    25. dism /NoRestart /Quiet /Online /Enable-Feature /FeatureName:"Internet Games"
    26. echo 啟用 媒體功能
    27. dism /NoRestart /Quiet /Online /Enable-Feature /FeatureName:"MediaPlayback"
    28. echo 啟用 WindowsMediaPlayer
    29. dism /NoRestart /Quiet /Online /Enable-Feature /FeatureName:"WindowsMediaPlayer"
    30. echo 啟用 MediaCenter功能
    31. dism /NoRestart /Quiet /Online /Enable-Feature /FeatureName:"MediaCenter"
    32. echo 啟用 建立光碟功能
    33. dism /NoRestart /Quiet /Online /Enable-Feature /FeatureName:"OpticalMediaDisc"
    34. echo 啟用 TabletPC功能
    35. dism /NoRestart /Quiet /Online /Enable-Feature /FeatureName:"TabletPCOC"
    36. echo 啟用 遠端差異壓縮
    37. dism /NoRestart /Quiet /Online /Enable-Feature /FeatureName:"MSRDC-Infrastructure"
    38. echo 啟用 搜尋功能與索引服務
    39. dism /NoRestart /Quiet /Online /Enable-Feature /FeatureName:"SearchEngine-Client-Package"
    40. echo 啟用 XPS檢視器
    41. dism /NoRestart /Quiet /Online /Enable-Feature /FeatureName:"Xps-Foundation-Xps-Viewer"
    42. echo 啟用 XPS服務
    43. dism /NoRestart /Quiet /Online /Enable-Feature /FeatureName:"Printing-XPSServices-Features"
    44. echo 完成!請按任意鍵結束。&pause>nul
    複製代碼
    附件是已經作好的檔案,內容完全一樣

    本帖子中包含更多資源

    您需要 登錄 才可以下載或查看,沒有帳號?免費註冊

    已有 1 人評分分享 互動 收起 理由
    小賤健 + 10 + 1 很好很好 (Y)

    總評分: 分享 + 10  互動 + 1   查看全部評分

    不回答已經有答案或內容不清晰的問題
    把問題PM我也沒用,會答的在討論區已經答了,你PM我我也只會叫你去討論區發問

    2

    主題

    12

    好友

    72

    積分

  • TA的每日心情
    慵懶
    2011-4-10 22:09
  • 簽到天數: 1 天

    連續簽到: 1 天

    [LV.1]初來乍到

    文章
    81
    發表於 2009-12-4 20:04 |顯示全部樓層
    好東西, 晚一點試一試, 先謝過
    回復

    使用道具 舉報

    您需要登錄後才可以回帖 登錄 | 免費註冊

    與站長聯繫| PALMisLIFE 掌上生活      下載:更快、更棒、更好玩

    GMT+8, 2024-4-19 00:14 , Processed in 0.052331 second(s), 36 queries , Gzip On.

    Powered by Discuz!

    © 2001-2012 Comsenz Inc. style by eisdl

    回頂部