0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【Windows 11】Xbox Game Barを削除後、再インストールしたいときの復旧コマンド

0
Posted at

環境

Windows 11

現象

  1. Xbox Game Bar をアンインストールしたが、スタートメニューにアイコンが残っている。
  2. 「この ms-gamebar リンクを開くには新しいアプリが必要です」と通知が出る。
  3. Win + G でGame Barは起動するが、音量と設定など限定的な機能のみが表示される。

試したこと

  • Microsoft Storeで検索してもアプリが出てこない。
  • Windowsのアプリの設定から、リセットと修復を実行。
    → 症状変わらず。
  • PowerShellから、winget install 9NZKPSTSNW4P を実行。
    → Found an existing package already installed(インストール済み)と表示され失敗。

対処法

PowerShellにて残留パッケージを強制削除した後、ID指定で再インストールを行う。

# 1. 残留パッケージの強制削除
Get-AppxPackage *XboxGamingOverlay* | Remove-AppxPackage

# 2. パッケージIDを指定してインストール
winget install 9NZKPSTSNW4P

結果

正常にインストールが完了し、Game Barが起動することを確認。

0
1
0

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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?