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

More than 1 year has passed since last update.

【Windows11】"このwindowsdefenderリンクを開くには新しいアプリが必要です"という画面が出てきたときの解決方法

Last updated at Posted at 2022-05-19

発生した問題の詳細

Windowsセキュリティを開けない

[Windowsキー]->[設定]->[プライバシーとセキュリティ]に移動。
354ee6884b45835b198bc97cf5f91130bf94fa91286a94f1ca292629fb0b2c53.png
"Windowsセキュリティを開く"や"ウイルスと脅威の防止"をクリック。
しかし、以下のポップアップが表示され、所望のページに移動できません。
c17d83b1ed7a985000059f4c5e2964bda56aa7b041878e5dcfaf843208a4cdab.png
Microsoft Storeでアプリを探すをクリックしても"windowsdefenderは見つかりませんでした"という画面に移動するだけでした。

解決方法

管理者にてwindows PowerShellに以下を実行すると解決できそうです[参考サイト]。

Get-AppxPackage Microsoft.SecHealthUI -AllUsers | Reset-AppxPackage

ca04708e8e41f55fe204b78a73b222f304bea89ae49f887fda92cc08a1f236a4.png

ただ僕の場合は上記の方法では解決できないようでした。

赤字の文章を読むとReset-AppxPackageパッケージをインストールする必要がありそうです。

# 赤文字部分
Reset-AppxPackage : パッケージが見つかりませんでした。
Microsoft.SecHealthUI_1000.22000.1.0_neutral__8wekyb3d8bbwe を削除できません。
このパッケージは現 在のユーザーによってインストールされていません。
Get-AppxPackage を使用して、インストール済みのパッケージの一覧を確認してください。
発生場所 行:1 文字:51
+ Get-AppxPackage Microsoft.SecHealthUI -AllUsers | Reset-AppxPackage
+                                                   ~~~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (:) [Reset-AppxPackage], COMException
    + FullyQualifiedErrorId : System.Runtime.InteropServices.COMException,Microsoft.Windows.App
   x.PackageManager.Commands.ResetAppxPackageCommand

追加で調査し、Windows PowerShell(管理者)にて、

Get-AppxPackage -allusers *Microsoft.SecHealthUI* | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}

を実行してみました。
d117d7dc88ab7eb6352f681c2f044ea0b3025f46eada8580a93e908c6ae855b1.png

確認のためもう一度下記を実行してみます。

Get-AppxPackage Microsoft.SecHealthUI -AllUsers | Reset-AppxPackage

成功したみたいなので、Windowsセキュリティを開いてみようと思います。
[Windowsキー]->[設定]->[プライバシーとセキュリティ]に移動し、
354ee6884b45835b198bc97cf5f91130bf94fa91286a94f1ca292629fb0b2c53.png
"ウイルスと脅威の防止"をクリック。
87a23813ab610e34ef8ac2d56cd86c80766c52c7f10a53f68b5949eb1d40a17e.png
無事開くことができました。

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