SynTPEnh.exe constantly restarting/respawning in Windows 10
I just upgraded to Windows 10 and I noticed that the SynTPEnh.exe
process is constantly restarting/respawning
To be more precise, there are two SynTPEnh.exe
processes. One of them (with pid 2972 in the below pictures) is always there.
However, every ~5 seconds a second SynTPEnh.exe
process pops up (pid 16192 in the below picture) then disappears in about a second.
I know that these processes belong to the Synaptics trackpad and I have downloaded the latest driver for Windows 10 on their website (Windows 10 PS/2 and SMBus Devices v19.0.19.1
) but the problem is still there.
Is anyone having the same issue and know if there's a fix for this?
Solution 1:
Removing the service at start is not a good idea because this service does provide functionality for synaptic touchpads. Without this service mouse pointer can behave erratically and jump over the screen.
I successfully resolved the issue. In this case I looked into event viewer and saw the error 7011. This means the service took too long to start after login and timeout occured after 30000 milliseconds. Manually starting the service did work though.
So I increased the timeout limit to 120000 milliseconds (2 Minutes) and the service could start after login (it took a while, acutually longer than 30 seconds, after the service was running).
- To increase the timout limit open regedit.exe and go to key
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control
Then make a new DWORD (32-Bit) and name it
ServicesPipeTimeout
Change the value to decimal 120000 and reboot.
Source 1: Kepware Knowledge Base: Solution
Source 2: Stack Overflow