从 Windows 开始菜单中删除 ms-resource:AppName/Text 项

一些Windows 11/10用户报告在升级到更高版本的Windows 10后,在(Windows 10)开始菜单上看到(Start)ms-resource:AppName/Text突变/流氓条目。在这篇文章中,我们描述了这个项目是什么以及如何摆脱它。

毫秒资源:应用程序名称/文本

好消息是,没有理由惊慌。这个项目几乎是无害的,因为它肯定不是Virus或RAT,并且它不会以任何方式影响系统的性能。所以这引出了一个问题,Windows 10 开始菜单中what is ms-Resource:AppName/Text

什么是 ms-resource:AppName/Text 项目在所有(All)应用开始菜单(Start Menu)

ms-resource:AppName/Text 可能是在升级安装过程中删除的内置应用程序的跟踪。现在让我们来看两个恰当的案例。

Windows 10用户报告如下:

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”)

根据另一位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的“(Windows 10)开始”菜单中的所有应用程序中看到(Start Menu All Apps)ms-resource:AppName/Textms-resource:appDisplayName项目,则可以按照以下说明将其删除。

1]在提升模式下启动 PowerShell(Launch PowerShell in elevated mode)

2] 在提示符中,复制并粘贴以下命令,然后按 Enter(Enter)

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

3]终止explorer.exe进程。

4 ] 回到(] Back)PowerShell环境,复制并粘贴下面的命令,然后按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

此修复适用于类似的恶意条目,但名称不同,例如;毫秒资源:appDisplayName(ms-resource:appDisplayName)

如何删除MS 资源(MS-resource)应用程序列表名称?

您可以使用Windows PowerShellWindows 11/10 PC 中删除 ms-resource 应用程序列表名称。为此,您需要在PowerShellRemove-AppPackage -AllUsers中输入参数。之后,您必须使用任务管理器停止(Task Manager)文件资源管理器进程并在(File Explorer)PowerShell中输入以下命令:

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

接下来,在PowerShell(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

我是一名免费软件开发人员和 Windows Vista/7 倡导者。我已经写了数百篇关于操作系统相关主题的文章,包括提示和技巧、修复指南和最佳实践。我还通过我的公司 Help Desk Services 提供与办公室相关的咨询服务。我对 Office 365 的工作原理、功能以及如何最有效地使用它们有着深刻的理解。



Related posts