19
15

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Windows 10 のデフォルトアプリを一括で削除する

Last updated at Posted at 2017-11-21

Candy Crushなどの不要なアプリをまとめて削除する方法です。
PowerShellを管理者権限で開き、以下をコピペして流します。

code.ps1

Get-AppxPackage *3d* | Remove-AppxPackage                               # 3D Builder
Get-AppxPackage king.com.CandyCrushSodaSaga | Remove-AppxPackage        # Candy Crush Soda Saga
Get-AppxPackage Facebook.Facebook | Remove-AppxPackage                  # Facebook
Get-AppxPackage *zune* | Remove-AppxPackage                             # Groove ミュージック、映画、テレビ
Get-AppxPackage KeeperSecurityInc.Keeper | Remove-AppxPackage           # Keeper
Get-AppxPackage NAVER.LINE* | Remove-AppxPackage                        # LINE
Get-AppxPackage *solit* | Remove-AppxPackage                            # Microsoft Solitaire Collection
Get-AppxPackage Microsoft.Office.OneNote | Remove-AppxPackage           # OneNote
Get-AppxPackage *people* | Remove-AppxPackage                           # People
Get-AppxPackage Microsoft.Print3D | Remove-AppxPackage                  # Print3D(CFU)
Get-AppxPackage flaregamesGmbH.RoyalRevolt2 | Remove-AppxPackage        # RoyalRevolt 2
Get-AppxPackage Microsoft.SkypeApp | Remove-AppxPackage                 # Skypeを始めよう
Get-AppxPackage *MicrosoftStickyNotes* | Remove-AppxPackage             # Sticky Notes
Get-AppxPackage *Twitter | Remove-AppxPackage                           # Twitter
Get-AppxPackage Microsoft.Microsoft3DViewer | Remove-AppxPackage        # View 3D
Get-AppxPackage *xbox* | Remove-AppxPackage                             # Xbox
Get-AppxPackage Microsoft.XboxApp | Remove-AppxPackage                  # Xbox(AU以降)
Get-AppxPackage Microsoft.XboxGameOverlay | Remove-AppxPackage          # Xbox(AU以降)
Get-AppxPackage Microsoft.XboxIdentityProvider | Remove-AppxPackage     # Xbox(AU以降)
Get-AppxPackage Microsoft.XboxSpeechToTextOverlay | Remove-AppxPackage  # Xbox(AU以降)
Get-AppxPackage Microsoft.MicrosoftOfficeHub | Remove-AppxPackage       # 新しいOffice を始めよう
Get-AppxPackage *WindowsAlarms* | Remove-AppxPackage                    # アラーム&クロック
Get-AppxPackage *camera* | Remove-AppxPackage                           # カメラ
Get-AppxPackage Microsoft.5220175982889 | Remove-AppxPackage            # テレBing
Get-AppxPackage Microsoft.Getstarted | Remove-AppxPackage               # はじめに
Get-AppxPackage Microsoft.WindowsFeedbackHub | Remove-AppxPackage       # フィードバックハブ
Get-AppxPackage *photo* | Remove-AppxPackage                            # フォト
Get-AppxPackage Microsoft.MSPaint | Remove-AppxPackage                  # ペイント3D
Get-AppxPackage Microsoft.GetHelp | Remove-AppxPackage                  # ヘルプの表示
Get-AppxPackage *soundrec* | Remove-AppxPackage                         # ボイスレコーダー
Get-AppxPackage A278AB0D.MarchofEmpires | Remove-AppxPackage            # マーチ オブ エンパイア
Get-AppxPackage Microsoft.WindowsMaps | Remove-AppxPackage              # マップ
Get-AppxPackage *bing* | Remove-AppxPackage                             # マネー、スポーツ、ニュース、天気
Get-AppxPackage *communi* | Remove-AppxPackage                          # メール、カレンダー
Get-AppxPackage *messaging* | Remove-AppxPackage                        # メッセージング
Get-AppxPackage *phone* | Remove-AppxPackage                            # モバイル コンパニオン
Get-AppxPackage Microsoft.OneConnect | Remove-AppxPackage               # 有料Wi-Fi & 携帯ネットワーク

出典:

こいつらは全部いらない。
という場合は下記コードをコピペ&実行すると楽です。
Windows 10 標準アプリの一括削除

19
15
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
19
15

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?