Fix Start Menu/Search/Action Center not working

 

 


Error Log

Unable to load DCOM Server (Event ID: 10001)

[說明]

Start Menu 它是一個 App 來(StartMenuExperienceHost.exe)

位於 C:\Windows\SystemApps\Microsoft.Windows.StartMenuExperienceHost_ID\StartMenuExperienceHost.exe

[Fix]

[方案1]

sfc /scannow

[方案2]

DISM /Online /Cleanup-Image /CheckHealth

DISM /Online /Cleanup-Image /ScanHealth

DISM /Online /Cleanup-Image /RestoreHealth

[方案3]

Powershell # admin mode

Get-AppxPackage | Select-String -Pattern "ShellExperienceHost"

方式1) Add-AppxPackage

$ManifestPath = (Get-AppxPackage -Name "*ShellExperienceHost*").InstallLocation + "\Appxmanifest.xml"

Add-AppxPackage -Path $ManifestPath -Register -DisableDevelopmentMode

Notes

-Register

registers an application in development mode.

To register an existing app package installation, you must specify with the "-DisableDevelopmentMode" parameter.

-DisableDevelopmentMode

Indicates that this cmdlet registers an existing app package installation that has been disabled, did not register, or has become corrupted.

Use the current parameter to specify that the manifest is from an existing installation,
and not from a collection of files in development mode.

 

方式2) Reset-AppxPackage

* Starting at Windows 10 Insider Preview Build 20215 you get access to the Reset-AppxPackage

Get-AppxPackage *Microsoft.Windows.ShellExperienceHost* | Reset-AppxPackage

Notes: Other App

Get-AppxPackage *Microsoft.Windows.Search* | Reset-AppxPackage

RunDll32.exe InetCpl.cpl,ResetIEtoDefaults

 

 

Creative Commons license icon Creative Commons license icon