Rimuovere ms-resource:AppName/elemento di testo dal menu Start di Windows

Alcuni utenti di Windows 11/10 hanno segnalato di aver visto ms-resource:AppName/Text mutant/voce canaglia nel menu Start dopo l'aggiornamento alle versioni successive di Windows 10 . In questo post, descriviamo cos'è questo articolo e come eliminarlo.

ms-risorsa: nomeapp/testo

La buona notizia è che non c'è motivo di allarmarsi. Questo oggetto è praticamente innocuo perché non è certamente un virus o un RAT e non influisce in alcun modo sulle prestazioni del tuo sistema. Quindi questo ci porta alla domanda, what is ms-Resource:AppName/Text nel menu Start di Windows 10?

Che cos'è ms-resource:AppName/elemento di testo nel menu Start di (Start Menu)tutte le(All) app

ms-resource:AppName/Text potrebbe essere una traccia di un'applicazione incorporata che è stata rimossa durante l'installazione dell'aggiornamento. Ora diamo un'occhiata a due casi in questione.

Un utente di Windows 10 segnala quanto segue-

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

Secondo un altro utente di 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.

Come eliminare la voce ms-resource:AppName/Text

Se vedi gli elementi ms-resource:AppName/Text o ms-resource:appDisplayName nel menu Start Tutte le app(Start Menu All Apps) in Windows 10 , puoi rimuoverlo seguendo queste istruzioni.

1] Avvia PowerShell in modalità elevata(Launch PowerShell in elevated mode) .

2] Nel prompt, copia e incolla il comando seguente e premi Invio(Enter) :

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

3] Termina il processo explorer.exe .

4 ] Torna(] Back) sull'ambiente PowerShell , copia e incolla il comando seguente e premi Invio(Enter) :

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

Il comando ti metterà nella directory all'interno della directory del tuo profilo, come di seguito

AppData\Local\Packages\Microsoft.Windows.StartMenuExperienceHost_cw5n1h2txyewy

5] Ora nell'ambiente PowerShell , esegui il comando seguente:

Remove-Item -Recurse -Force .\TempState\

6] Riavvia explorer.exe(Restart explorer.exe) .

La voce di menu di avvio canaglia dovrebbe essere scomparsa.

Modo alternativo(Alternate way)

In alternativa, puoi copiare e incollare quanto segue nel Blocco note(Notepad) e salvarlo come file .bat ( Tutti i(All) file) . Quindi eseguilo con i diritti di amministratore:

@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

Questa correzione si applica a voci canaglia simili ma con un nome diverso, ad esempio; ms-risorsa:appDisplayName(ms-resource:appDisplayName) .

Come si rimuove il nome dell'elenco delle applicazioni delle risorse MS(MS-resource) ?

È possibile utilizzare Windows PowerShell per rimuovere il nome dell'elenco delle applicazioni ms-resource dal PC Windows 11/10 . Per questo, è necessario inserire il Remove-AppPackage -AllUsersparametro in PowerShell . Successivamente, è necessario interrompere il processo Esplora file(File Explorer) utilizzando Task Manager e immettere il seguente comando in PowerShell :

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

Quindi, vai a questo percorso in PowerShell :

AppData\Local\Packages\Microsoft.Windows.StartMenuExperienceHost_cw5n1h2txyewy

Ed esegui questo comando:

Remove-Item -Recurse -Force .\TempState\

Una volta terminato, è possibile riavviare il processo di Esplora risorse(Windows Explorer) .

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



About the author

Sono un ingegnere del software ed esploratore. Ho esperienza sia con Microsoft Xbox 360 che con Google Explorer. Sono in grado di fornire consigli di esperti per determinati strumenti di sviluppo software, nonché aiutare le persone a risolvere gli errori comuni di Explorer.



Related posts