如何使用 PowerShell 卸載 Windows 10 應用程序,只需 3 個步驟

Windows 10 預裝了很多通用應用程序,例如日曆、郵件、相機照片。雖然有些人喜歡它們並認為它們很有用,但有些人卻不喜歡。如果您不想在 Windows 10 設備上使用這些捆綁的應用程序,您可能想知道是否可以將它們從您的系統中刪除。雖然可以通過右鍵單擊它們並選擇卸載選項來卸載一些內置應用程序,但其中一些不提供此選項。這是因為 Microsoft 認為它們是核心應用程序,Windows 10 要求它們為您提供 Microsoft 預期的用戶體驗。以下是使用 PowerShell 刪除不需要的 Windows 10 應用程序的方法:

內容

  1. 步驟 1. 以管理員身份打開 PowerShell
  2. 步驟 2. 找到您要卸載的 Windows 10 應用程序的完整程序包名稱
  3. 步驟 3. 使用 PowerShell 卸載 Windows 10 應用
  4. Windows 10 核心應用的卸載命令
  5. 您消除了哪些 Windows 10 默認應用程序?

步驟 1. 以管理員身份打開 PowerShell

首先,您必須以管理員身份啟動 PowerShell。但是,如果您趕時間並且不想閱讀另一篇文章,以管理員身份啟動PowerShell的一種快速方法是在 Cortana 的搜索框中鍵入“powershell”,右鍵單擊或點擊並按住“Windows PowerShell”,然後單擊或點擊“以管理員身份運行”。

How to uninstall Windows 10 apps using PowerShell, in 3 steps

在 Windows 10 中搜索並啟動 PowerShell

如果彈出用戶帳戶控制通知,請通過單擊或點擊是批准執行PowerShell

How to uninstall Windows 10 apps using PowerShell, in 3 steps

以管理員身份運行 PowerShell 的用戶帳戶控制通知

啟動 PowerShell後,您應該會看到一個類似於下圖中的窗口。

How to uninstall Windows 10 apps using PowerShell, in 3 steps

Windows 10 中的 PowerShell

步驟 2. 找到您要卸載的 Windows 10 應用程序的完整程序包名稱

要卸載 Windows 10 內置應用程序,您必須為這些應用程序中的每一個運行特定命令。

問題是,要正確運行此命令,您必須知道要卸載的應用程序的完整軟件包名稱。要找出它的名稱,您首先必須列出 Windows 10 計算機上安裝的所有應用程序。要讓PowerShell向您顯示此列表,請運行以下命令並按Enter:Get_-AppxPackage_。”

How to uninstall Windows 10 apps using PowerShell, in 3 steps

PowerShell 中的 Get-AppxPackage 命令

PowerShell開始顯示安裝在 Windows 10 計算機上的應用程序。

How to uninstall Windows 10 apps using PowerShell, in 3 steps

PowerShell 中 Get-AppxPackage 命令的輸出

滾動PowerShell以找到要卸載的應用程序。您可以通過查看列表中每個應用程序的名稱字段來快速識別它。例如,相機應用程序的名稱為“Microsoft.WindowsCamera”。

How to uninstall Windows 10 apps using PowerShell, in 3 steps

Windows 10 中的 Microsoft Windows 相機應用

或者,您可以使用PowerShell中的查找工具搜索應用程序的名稱:右鍵單擊Powershell窗口的標題欄,然後轉到“編輯 -> 查找”。

How to uninstall Windows 10 apps using PowerShell, in 3 steps

PowerShell 中的查找命令

輸入作為應用程序名稱一部分的文本(在我們的例子中為“相機”),然後單擊或點擊“查找下一個”,直到您獲得正在搜索的應用程序的名稱。

How to uninstall Windows 10 apps using PowerShell, in 3 steps

在 PowerShell 中查找應用程序的名稱

但是,為了能夠運行卸載命令,您不需要應用程序的名稱,而是PackageFullName。 將其複製到剪貼板或將其寫下來並移至本教程的下一部分。

How to uninstall Windows 10 apps using PowerShell, in 3 steps

Windows 10 應用的 PackageFullName

步驟 3. 使用 PowerShell 卸載 Windows 10 應用

刪除 Windows 10 應用程序必須運行的PowerShell命令如下:“ Remove-AppxPackage [App Name]。”

在上述命令模型中,您應該將“[App Name]”替換為您要刪除的應用程序的完整包名,即您在本教程上一節中記下的那個。例如,如果您想刪除相機應用程序,您應該運行類似於以下命令的命令:“ Remove-AppxPackage Microsoft.WindowsCamera_5.54.3002.0_x64__8wekyb3d8bbwe

How to uninstall Windows 10 apps using PowerShell, in 3 steps

PowerShell 中的 Remove-AppxPackage 命令

幸運的是,為了讓事情更簡單,Powershell允許我們使用關鍵字作為應用程序名稱,這就是我們將在下一節中向您展示的內容。我們列出了卸載與 Windows 10 捆綁的應用程序所需運行的PowerShell命令。

Windows 10 核心應用的卸載命令

這是卸載預裝在 Windows 10 中的通用應用程序所需運行的PowerShell命令列表:

  • 卸載3D Builder:Get_-AppxPackage *3dbuilder* | 刪除-AppxPackage_
  • 卸載ACG 播放器: Get-AppxPackage *acg* | 刪除-AppxPackage
  • 卸載鬧鐘和時鐘:Get-AppxPackage *alarms* | 刪除-AppxPackage
  • 卸載計算器:Get-AppxPackage *calculator* | 刪除-AppxPackage
  • 卸載日曆和郵件:Get-AppxPackage *communications* | 刪除-AppxPackage
  • 卸載相機:Get-AppxPackage *camera* | 刪除-AppxPackage
  • 卸載Dolby Access: Get-AppxPackage *dolbyaccess* | 刪除-AppxPackage
  • 卸載Fitbit Coach: Get-AppxPackage *fitbitcoach* | 刪除-AppxPackage
  • 卸載Get Office : Get-AppxPackage *officehub* | 刪除-AppxPackage
  • 卸載獲取 Skype:Get-AppxPackage *skypeapp* | 刪除-AppxPackage
  • 卸載開始:Get-AppxPackage *getstarted* | 刪除-AppxPackage
  • 卸載Groove 音樂:Get-AppxPackage *zunemusic* | 刪除-AppxPackage
  • 卸載地圖:Get-AppxPackage *maps* | 刪除-AppxPackage
  • 卸載Microsoft Solitaire Collection:Get-AppxPackage *solitairecollection* | 刪除-AppxPackage
  • 卸載金錢:Get-AppxPackage *bingfinance* | 刪除-AppxPackage
  • 卸載電影和電視:Get-AppxPackage *zunevideo* | 刪除-AppxPackage
  • 卸載新聞:Get-AppxPackage *bingnews* | 刪除-AppxPackage
  • 卸載OneNote:Get-AppxPackage *onenote* | 刪除-AppxPackage
  • 卸載人員:Get-AppxPackage *people* | 刪除-AppxPackage
  • 卸載手機伴侶:Get-AppxPackage *windowsphone* | 刪除-AppxPackage
  • 卸載Phototastic Collage: Get-AppxPackage *phototastic* | 刪除-AppxPackage
  • 卸載照片:Get-AppxPackage *photos* | 刪除-AppxPackage
  • 卸載PicsArt: Get-AppxPackage *picsart* | 刪除-AppxPackage
  • 卸載Plex: Get-AppxPackage *plex* | 刪除-AppxPackage
  • 卸載商店:Get-AppxPackage *windowsstore* | 刪除-AppxPackage
  • 卸載運動:Get-AppxPackage *bingsports* | 刪除-AppxPackage
  • 卸載錄音機:Get-AppxPackage *soundrecorder* | 刪除-AppxPackage
  • 卸載天氣:Get-AppxPackage *bingweather* | 刪除-AppxPackage
  • 卸載Xbox:Get-AppxPackage *xbox* | 刪除-AppxPackage

每次運行卸載命令時,PowerShell都會顯示一個類似於下圖的進度條。

How to uninstall Windows 10 apps using PowerShell, in 3 steps

在 PowerShell 中使用 Remove-AppxPackage 命令

該過程完成後,PowerShell窗口會從屏幕上刪除卸載進度信息,並將控制權返回到命令行。

How to uninstall Windows 10 apps using PowerShell, in 3 steps

使用 Remove-AppxPackage 在 PowerShell 中刪除應用程序

您消除了哪些 Windows 10 默認應用程序?

如您所見,卸載所有 Windows 10 內置通用應用程序是可以完成的,即使它需要一些高級PowerShell命令。如果您不想要或不需要這些應用程序,您可以在幾分鐘內刪除它們。如果您改變主意並希望它們回來,請閱讀本教程:如何使用 PowerShell 重新安裝所有 Windows 10 默認應用程序。您要刪除哪些 Windows 10 默認應用程序?通過在下面發表評論讓我們知道。

留下評論

2026年你需要了解的播客發展趨勢:新手入門指南

2026年你需要了解的播客發展趨勢:新手入門指南

剛接觸播客?了解 2026 年影響影片、發現、文字稿、人工智慧、分析、獲利以及實用啟動計畫的趨勢。

UGC大師班:打造贏得信任並促成行動的使用者生成內容

UGC大師班:打造贏得信任並促成行動的使用者生成內容

這是一門實用的使用者生成內容 (UGC) 大師班,內容涵蓋客戶和創作者內容的來源、授權、簡報、發布和衡量,同時又不失真實性。

為什麼社群建立是新的行銷方式——以及何時它並非如此

為什麼社群建立是新的行銷方式——以及何時它並非如此

社群建立可以加深信任、提高用戶留存率、收集回饋並增強用戶擁護度,但它並不能取代所有行銷管道。權衡利弊,選擇合適的模式。

Navigating Social Media Algorithm Changes in 2026: What’s Confirmed, Contextual, and Still Unknown

Navigating Social Media Algorithm Changes in 2026: What’s Confirmed, Contextual, and Still Unknown

Learn what major social platforms have actually confirmed about ranking changes in 2026, what depends on context, and how to adapt without chasing myths.

品牌行銷中的真實故事敘述:如何在不顯得刻板的情況下建立信任

品牌行銷中的真實故事敘述:如何在不顯得刻板的情況下建立信任

學習如何運用證據、真實的緊張感、符合倫理的客戶故事和實用的真實性檢驗,使品牌故事聽起來可信、人性化且具體。

第四季電子郵件行銷成功策略:哪些方面需要優先考慮、測試和權衡

第四季電子郵件行銷成功策略:哪些方面需要優先考慮、測試和權衡

透過平衡覆蓋範圍、發送頻率、折扣、自動化、送達率和效果衡量,制定更聰明的第四季電子郵件行銷策略,實現假日季獲利成長。

如何製作高轉換率的短影片:一個實用的框架

如何製作高轉換率的短影片:一個實用的框架

學習如何透過平衡吸引眼球的元素、格式、真實性、行動號召、平台契合度以及在 TikTok、Reels 和 Shorts 等平台上進行測試,來製作能夠帶來轉換的短影片。

The Shift from Influencers to Key Opinion Consumers (KOCs): What Brands Need to Know in 2026

The Shift from Influencers to Key Opinion Consumers (KOCs): What Brands Need to Know in 2026

Why are brands testing KOCs instead of relying only on influencers? Learn what KOCs are, why social commerce favors them, common myths, and how to run a measurable pilot.

2026 年 TikTok SEO:如何在不堆砌關鍵字的情況下提升影片搜尋排名

2026 年 TikTok SEO:如何在不堆砌關鍵字的情況下提升影片搜尋排名

學習 2026 年實用的 TikTok SEO 工作流程:找到真正的搜尋需求,匹配搜尋意圖,優化每個視頻,並衡量哪些因素可以提高可見度。

黑色星期五電商備戰:實用店面準備清單

黑色星期五電商備戰:實用店面準備清單

使用實用的清單,為您的電子商務商店做好迎接黑色星期五的準備,清單內容包括優惠、網站速度、結帳、庫存、發貨、分析、安全和支援。