Windows 10 移除預裝APP
使用管理員權限開啟Windows PowerShell
#移除所有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 #Get 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
留言
張貼留言