Windowsのスタートメニューからms-resource:AppName/Textアイテムを削除します

一部のWindows 11/10ユーザーは、 Windows 10の新しいバージョンにアップグレードした後、 [スタート]メニューに(Start)ms-resource:AppName/Textミュータント/不正なエントリが表示されると報告しています。この投稿では、このアイテムとは何か、そしてそれを取り除く方法について説明します。

ms-resource:AppName / Text

良いニュースは、警告の原因がないということです。このアイテムは確かにウイルスやRATではないため、ほとんど無害であり、システムのパフォーマンスに影響を与えることはありません。それで、これは私たちに質問につながります、Windows 10スタートメニューwhat is ms-Resource:AppName/Text

すべての(All)アプリのスタートメニュー(Start Menu)のms-resource:AppName/Textアイテムとは

ms-resource:AppName / Textは、アップグレードのインストール中に削除された組み込みアプリケーションからのトレースである可能性があります。次に、2つのケースを見てみましょう。

Windows10ユーザーは次のように報告します-

After upgrading my Windows 10, there has been a broken app in start list called ms-resource:AppName/Text. The link does not work, right-clicking does not bring up a file location, and when App Settings is clicked, Settings either crashes, or shows “Apps and features” in which this entry is not present. It is also not in C:\ProgramData\Microsoft\Windows\Start Menu\Programs. I had this issue before in version 1803, but I was able to access the settings of the broken app, and either clicking “Reset” or “Repair” removed the link. (By the way, the broken link I had earlier was not called ms-resource:AppName/Text, but they were likely related to the Mixed Reality Portal program as in the name there was “holographic”)

別のWindows10(Windows 10)ユーザーによると-

ms-resource:AppName/Text has appeared on Start Menu All Apps. This rogue entry, which does not start anything and can’t be removed, appeared on most of the accounts across all of our three different machines. If you drag the entry to the desktop, it seems that underneath the “ms-resource:AppName/Text” it is pointing at Microsoft.Windows.HolographicFirstRun which is not listed anywhere else (Settings/Applications) and even through PowerShell Get-AppXPackage. It would appear this is something that was uninstalled but left the entries which the (new Start Menu in 1903) All Apps picks up. I have found no way to delete this rogue entry – and searching for this shows plenty of examples of the problem, and STILL no resolutions.

ms-resource:AppName/Textエントリを削除する方法

Windows 10の[スタート]メニューの[すべてのアプリ](Start Menu All Apps)ms-resource:AppName/Textまたはms-resource:appDisplayNameの(ms-resource:appDisplayName)項目が表示されている場合は、次の手順に従って削除できます。

1] PowerShellを昇格モードで起動します(Launch PowerShell in elevated mode)

2]プロンプトで、以下のコマンドをコピーして貼り付け、Enterキー(Enter)を押します。

Get-AppxPackage -all *HolographicFirstRun* | Remove-AppPackage -AllUsers

3] explorer.exeプロセスを終了します。

4 ] PowerShell環境に(PowerShell)戻り(] Back)、以下のコマンドをコピーして貼り付け、Enterキー(Enter)を押します。

cd $Env:localappdata\Packages\Microsoft.Windows.StartMenuExperienceHost_cw5n1h2txyewy

このコマンドは、以下のように、プロファイルディレクトリ内のディレクトリに移動します。

AppData\Local\Packages\Microsoft.Windows.StartMenuExperienceHost_cw5n1h2txyewy

5] PowerShell環境で、次のコマンドを実行します。

Remove-Item -Recurse -Force .\TempState\

6] explorer.exeを再起動し(Restart explorer.exe)ます。

不正なスタートメニュー項目は消えているはずです。

別の方法(Alternate way)

または、以下をコピーしてメモ帳に貼り付け、((Notepad)すべての(All)ファイル).batファイルとして保存することもできます。次に、管理者権限で実行します。

@echo off
taskkill /f /im explorer.exe
taskkill /f /im shellexperiencehost.exe
timeout /t 3 /NOBREAK > nul
del %localappdata%\Packages\Microsoft.Windows.ShellExperienceHost_cw5n1h2txyewy\TempState\* /q
timeout /t 1 /NOBREAK > nul
start explorer
@echo on

この修正は、同様の不正なエントリに適用されますが、名前は異なります。ms-resource:appDisplayName

MSリソース(MS-resource)アプリケーションリスト名を削除するにはどうすればよいですか?

Windows PowerShellを使用して、 Windows 11/10からms-resourceアプリケーションリスト名を削除できます。そのためには、 PowerShellRemove-AppPackage -AllUsersにパラメーターを入力する必要があります。その後、タスクマネージャーを使用して(Task Manager)ファイルエクスプローラー(File Explorer)プロセスを停止し、 PowerShellで次のコマンドを入力する必要があります。

cd $Env:localappdata\Packages\Microsoft.Windows.StartMenuExperienceHost_cw5n1h2txyewy

次に、PowerShellでこのパスに移動します。

AppData\Local\Packages\Microsoft.Windows.StartMenuExperienceHost_cw5n1h2txyewy

そして、次のコマンドを実行します。

Remove-Item -Recurse -Force .\TempState\

完了したら、Windowsエクスプローラー(Windows Explorer)プロセスを再起動できます。

That’s it, folks on how to get rid of the pesky bug!



About the author

私は、Apple Mac、iOS デバイス、および Google Chrome ブラウザーの構築と保守に 10 年以上の経験を持つソフトウェア エンジニアです。私の経験には、ソフトウェア製品のゼロからの開発、保守、運用、またはオープン ソース プロジェクトへの貢献が含まれます。また、病院の壊れた画面の修理から iPhone の新機能の設計と実装まで、さまざまなハードウェア プロジェクトに携わる機会がありました。余暇には、お気に入りのビデオ ゲームをしたり、本を読んだり、家族と一緒に夕食を作ったり、友達と時間を過ごしたりしています。



Related posts