Skip to main content

Posts

Unable to start Windows search service

We will get below error while starting windows search service from services.msc Windows Could not start the Windows search on local computer. For more information, review the System event log. If this is a non-Microsoft service, Contact the service vendor, and refer to service-specific error code - 1906441712 Resolution: Navigate to below locations and delete the files and folders present over there. C:\ProgramData\Microsoft\Search\Data\Applications\Windows C:\ProgramData\Microsoft\Search\Data\Temp After reboot the service should start automatically.

WMI Error - Windows Management files may be moved or missing.

WMI ERRORs: Symptoms: >>Unable to open System Information. >>WMI Error - Windows Management files may be moved or missing. Resolution : Navigate to Start >> All programs >> accessories >> right click on CMD >> run as administrator, and run the below commands one by one. 1)     sc config winmgmt start= disabled 2)     net stop winmgmt /y 3)     %systemdrive% 4)     cd %windir%\system32\wbem 5)     for /f %s in ('dir /b *.dll') do regsvr32 /s %s     6)     regsvr32 %windir%\system32\tscfgwmi.dll           7)     wmiprvse /regserver                                 ...