使用管理員權限開啟Windows PowerShell
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 |
#移除所有APP Get-AppxPackage -AllUsers | Remove-AppxPackage #移除所有APP(只限User) Get-AppxPackage -User | Remove-AppxPackage #移除某APP #3D Builder get-appxpackage *3dbuilder* | remove-appxpackage #時鐘&鬧鐘 get-appxpackage *alarms* | remove-appxpackage #App Connector get-appxpackage *appconnector* | remove-appxpackage #App Installer get-appxpackage *appinstaller* | remove-appxpackage #日曆、郵件 get-appxpackage *communicationsapps* | remove-appxpackage #計算機 get-appxpackage *calculator* | remove-appxpackage #相機 get-appxpackage *camera* | remove-appxpackage #feedback get-appxpackage *feedback* | remove-appxpackage #Get Office get-appxpackage *officehub* | remove-appxpackage #Get Started or Tips get-appxpackage *getstarted* | remove-appxpackage G#et Skype get-appxpackage *skypeapp* | remove-appxpackage #Groove Music get-appxpackage *zunemusic* | remove-appxpackage #Groove Music、Movies、TV get-appxpackage *zune* | remove-appxpackage #地圖 get-appxpackage *maps* | remove-appxpackage #Messaging、Skype Video get-appxpackage *messaging* | remove-appxpackage #Microsoft Solitaire Collection get-appxpackage *solitaire* | remove-appxpackage #Microsoft Wallet get-appxpackage *wallet* | remove-appxpackage #Microsoft Wi-Fi get-appxpackage *connectivitystore* | remove-appxpackage #財經 get-appxpackage *bingfinance* | remove-appxpackage #財經,新聞,運動,天氣 get-appxpackage *bing* | remove-appxpackage #電影與電視 get-appxpackage *zunevideo* | remove-appxpackage #新聞 get-appxpackage *bingnews* | remove-appxpackage #OneNote get-appxpackage *onenote* | remove-appxpackage #付費 Wi-Fi & Cellular get-appxpackage *oneconnect* | remove-appxpackage #Paint 3D get-appxpackage *mspaint* | remove-appxpackage #聯絡人 get-appxpackage *people* | remove-appxpackage #電話 get-appxpackage *commsphone* | remove-appxpackage #Phone Companion get-appxpackage *windowsphone* | remove-appxpackage #電話、Phone Companion get-appxpackage *phone* | remove-appxpackage #相片 get-appxpackage *photos* | remove-appxpackage #運動 get-appxpackage *bingsports* | remove-appxpackage #自黏便箋 get-appxpackage *sticky* | remove-appxpackage #Sway get-appxpackage *sway* | remove-appxpackage #View 3D get-appxpackage *3d* | remove-appxpackage #錄音 get-appxpackage *soundrecorder* | remove-appxpackage #天氣 get-appxpackage *bingweather* | remove-appxpackage #Windows Holographic get-appxpackage *holographic* | remove-appxpackage #Windows Store get-appxpackage *windowsstore* | remove-appxpackage #Xbox get-appxpackage *xbox* | remove-appxpackage |