IMG_0384

Windows 10 / 11 移除、重新安裝預設APP

1. 以下指令可以移除預設APP

#移除所有APP
#注意:Win11移除所有APP會將 Windows Terminal 一起移除不建議使用此指令
Get-AppxPackage -AllUsers | Remove-AppxPackage
 
#移除所有APP(只限User)
#注意:Win11移除所有APP會將 Windows Terminal 一起移除不建議使用此指令
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

2. 以下指令可以重新安裝APP

# *App名稱* 需替換成要得 APP Name

Get-AppxPackage -AllUsers *App名稱* | Foreach {add-appxpackage -register -DisableDevelopmentMode "$($_.InstallLocation)\AppXManifest.xml"}

#安裝APP
add-appxpackage -register "C:\Program Files\WindowsApps\APP XML位置 (修改這裡)\appxmanifest.xml" -disabledevelopmentmode

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *