Xóa ms-resource: AppName / Text item khỏi Windows Start Menu

Một số người dùng Windows 11/10 đã báo cáo thấy mục ms-resource:AppName/Text mutant / rogue trên menu Start sau khi nâng cấp lên các phiên bản Windows 10 mới hơn . Trong bài đăng này, chúng tôi mô tả mục này là gì và cách loại bỏ nó.

ms-resource: AppName / Text

Tin tốt là, không có lý do gì để báo động. Mục này hoàn toàn vô hại vì nó chắc chắn không phải là Virus hoặc RAT , và nó không ảnh hưởng đến hiệu suất của hệ thống của bạn theo bất kỳ cách nào. Vì vậy, điều này dẫn chúng ta đến câu hỏi, what is ms-Resource:AppName/Text trong Windows 10 Start Menu là gì?

Ms-resource là gì: AppName / Text item trong All apps Start Menu

ms-resource: AppName / Text có thể là một dấu vết từ một ứng dụng cài sẵn đã bị xóa trong quá trình cài đặt nâng cấp. Bây giờ chúng ta hãy xem xét hai trường hợp cụ thể.

Người dùng Windows 10(Windows 10) báo cáo như sau-

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

Theo một người dùng Windows 10(Windows 10) khác-

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.

Cách xóa ms-resource: AppName / Text entry

Nếu bạn thấy các mục ms-resource:AppName/Text hoặc ms-resource: appDisplayName trong Start Menu Tất cả ứng dụng(Start Menu All Apps) trong Windows 10 , thì bạn có thể xóa nó bằng cách làm theo các hướng dẫn sau.

1] Khởi chạy PowerShell ở chế độ nâng cao(Launch PowerShell in elevated mode) .

2] Trong lời nhắc, sao chép và dán lệnh bên dưới và nhấn Enter :

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

3] Chấm dứt quá trình explorer.exe .

4 ] Quay lại(] Back) môi trường PowerShell , sao chép và dán lệnh bên dưới và nhấn Enter :

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

Lệnh sẽ đưa bạn vào thư mục bên trong dir hồ sơ của bạn, như bên dưới

AppData\Local\Packages\Microsoft.Windows.StartMenuExperienceHost_cw5n1h2txyewy

5] Bây giờ trong môi trường PowerShell , hãy chạy lệnh bên dưới:

Remove-Item -Recurse -Force .\TempState\

6] Khởi động lại explorer.exe(Restart explorer.exe) .

Mục menu bắt đầu giả mạo sẽ biến mất.

Cách thay thế(Alternate way)

Ngoài ra, bạn có thể sao chép và dán nội dung sau vào Notepad và lưu nó dưới dạng tệp .bat ( Tất cả(All) các tệp) . Sau đó chạy nó với quyền quản trị:

@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

Bản sửa lỗi này áp dụng cho các mục nhập giả mạo tương tự nhưng có tên khác, ví dụ; ms-resource: appDisplayName .

Làm cách nào để xóa tên danh sách ứng dụng MS-resource ?

Bạn có thể sử dụng Windows PowerShell để xóa tên danh sách ứng dụng tài nguyên ms khỏi PC Windows 11/10 . Để làm được điều đó, bạn cần nhập Remove-AppPackage -AllUserstham số vào PowerShell . Sau đó, bạn phải dừng quá trình File Explorer bằng Trình quản lý tác vụ(Task Manager) và nhập lệnh sau vào PowerShell :

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

Tiếp theo, điều hướng đến đường dẫn này trong PowerShell :

AppData\Local\Packages\Microsoft.Windows.StartMenuExperienceHost_cw5n1h2txyewy

Và chạy lệnh này:

Remove-Item -Recurse -Force .\TempState\

Sau khi hoàn tất, bạn có thể khởi động lại quá trình Windows Explorer .

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



About the author

Tôi là nhà tư vấn công nghệ với hơn 10 năm kinh nghiệm trong lĩnh vực phần mềm. Tôi chuyên về Microsoft Office, Edge và các công nghệ liên quan khác. Tôi đã làm việc trong nhiều dự án khác nhau cho cả các công ty lớn và nhỏ, và tôi cực kỳ am hiểu về các nền tảng và công cụ khác nhau hiện nay.



Related posts