2 min read

Windows10のいらないプリインを消す

メモ

PowerShellでがんばる。

# 3D Builder
Get-AppxPackage Microsoft.3DBuilder | Remove-AppxPackage

# 3Dビューアー(1809以降)
Get-AppxPackage Microsoft.Microsoft3DViewer | Remove-AppxPackage

# Candy Crush Saga(1809以降)
Get-AppxPackage king.com.CandyCrushSaga | Remove-AppxPackage

# Candy Crush Soda Saga
Get-AppxPackage king.com.CandyCrushSodaSaga | Remove-AppxPackage

# Dolby Access
Get-AppxPackage DolbyLaboratories.DolbyAccess | Remove-AppxPackage

# Facebook
Get-AppxPackage Facebook.Facebook | Remove-AppxPackage

# Fitbit Coach(1809以降)
Get-AppxPackage Fitbit.FitbitCoach | Remove-AppxPackage

# Groove ミュージック
Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage

# Keeper
Get-AppxPackage KeeperSecurityInc.Keeper | Remove-AppxPackage

# Hidden City アイテム探しアドベンチャー(FCU以降)
Get-AppxPackage 828B5831.HiddenCityMysteryofShadows | Remove-AppxPackage

# LINE
Get-AppxPackage NAVER.LINE* | Remove-AppxPackage

# LinkedIn(FCU以降)
Get-AppxPackage 7EE7776C.LinkedInforWindows | Remove-AppxPackage

# Microsoft Solitaire Collection
Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage

# Mixed Realityポータル(1809以降)
Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage

# Office Lens
Get-AppxPackage Microsoft.OfficeLens | Remove-AppxPackage

# OneNote
Get-AppxPackage Microsoft.Office.OneNote | Remove-AppxPackage

# People(1809以降)
Get-AppxPackage Microsoft.People | Remove-AppxPackage

# Phototastic Collage(1809以降)
Get-AppxPackage ThumbmunkeysLtd.PhototasticCollage | Remove-AppxPackage

# Print3D(CFU以降)
Get-AppxPackage Microsoft.Print3D | Remove-AppxPackage

# RoyalRevolt 2
Get-AppxPackage flaregamesGmbH.RoyalRevolt2 | Remove-AppxPackage

# SketchBook(FCU以降)
Get-AppxPackage 89006A2E.AutodeskSketchBook | Remove-AppxPackage

# Skypeを始めよう
Get-AppxPackage Microsoft.SkypeApp | Remove-AppxPackage

# Spotify(FCU以降)
Get-AppxPackage SpotifyAB.SpotifyMusic | Remove-AppxPackage

# Sticky Notes
Get-AppxPackage Microsoft.MicrosoftStickyNotes | Remove-AppxPackage

# Twitter
Get-AppxPackage *Twitter | Remove-AppxPackage

# View 3D
Get-AppxPackage Microsoft.Microsoft3DViewer | Remove-AppxPackage

# Xbox(AU以降)
Get-AppxPackage Microsoft.XboxApp | Remove-AppxPackage

# Xbox(AU以降)
Get-AppxPackage Microsoft.XboxGameOverlay | Remove-AppxPackage

# Xbox(1809以降)
Get-AppxPackage Microsoft.XboxGamingOverlay | Remove-AppxPackage

# Xbox(AU以降)
Get-AppxPackage Microsoft.XboxIdentityProvider | Remove-AppxPackage

# Xbox(AU以降)
Get-AppxPackage Microsoft.XboxSpeechToTextOverlay | Remove-AppxPackage

# 新しいOffice を始めよう
Get-AppxPackage Microsoft.MicrosoftOfficeHub | Remove-AppxPackage

# アラーム&クロック
Get-AppxPackage Microsoft.WindowsAlarms | Remove-AppxPackage

# 映画 & テレビ
Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage

# カメラ
Get-AppxPackage Microsoft.WindowsCamera | Remove-AppxPackage

# ゲーム バー(1809以降)
Get-AppxPackage Microsoft.Xbox.TCUI | Remove-AppxPackage

# 切り取り & スケッチ(1809以降)
Get-AppxPackage Microsoft.ScreenSketch | Remove-AppxPackage

# テレBing
Get-AppxPackage Microsoft.5220175982889 | Remove-AppxPackage

# ヒント/はじめに
Get-AppxPackage Microsoft.Getstarted | Remove-AppxPackage

# バブルウィッチ3(FCU以降)
Get-AppxPackage king.com.BubbleWitch3Saga | Remove-AppxPackage

# フィードバックHub
Get-AppxPackage Microsoft.WindowsFeedbackHub | Remove-AppxPackage

# フォト
Get-AppxPackage Microsoft.Windows.Photos | Remove-AppxPackage

# ペイント3D
Get-AppxPackage Microsoft.MSPaint | Remove-AppxPackage

# 問い合わせ/ヘルプの表示
Get-AppxPackage Microsoft.GetHelp | Remove-AppxPackage

# ボイスレコーダー
Get-AppxPackage Microsoft.WindowsSoundRecorder | Remove-AppxPackage

# マーチ オブ エンパイア
Get-AppxPackage A278AB0D.MarchofEmpires | Remove-AppxPackage

# マップ
Get-AppxPackage Microsoft.WindowsMaps | Remove-AppxPackage

# マネー、スポーツ、ニュース、天気
Get-AppxPackage *bing* | Remove-AppxPackage

# メール、カレンダー
Get-AppxPackage microsoft.windowscommunicationsapps | Remove-AppxPackage

# メッセージング
Get-AppxPackage Microsoft.Messaging | Remove-AppxPackage

# スマホ同期/モバイル コンパニオン
Get-AppxPackage Microsoft.YourPhone | Remove-AppxPackage

# モバイル通信プラン/有料Wi-Fi & 携帯ネットワーク
Get-AppxPackage Microsoft.OneConnect | Remove-AppxPackage

参考