1. Introduction
I am a Windows 11 system, and this article also applies to Windows 10. This phenomenon includes clicking to enlarge to view the pictures sent by others on the PC side will be stuck, it will be stuck when sending pictures in WeChat, and dragging pictures or other files to the WeChat chat window to send them. The lag is manifested as the PC-side WeChat has no response for about 1 second.
Since when, in the PC WeChat of Win10 and Win11, when clicking to view pictures sent by others, it will often stumble for one second, that is, WeChat has no response for about 1 second, and this is also occasionally happening when sending pictures.
So I searched for a solution on the Internet. Some people said that it was caused by the file protection function of Tencent Computer Manager, but there was no Tencent Computer Manager on my computer, and other security software did not improve after exiting. (If you have a computer manager installed on your computer, you can try to close or uninstall it to see if it can solve the problem. I don’t have it here, so I won’t try it.)
So I remembered the situation when I found that the Windows Search service occupied the CPU and hard disk abnormality some time ago, so I tried to disable the Windows Search service and then found that everything was normal. Whether you are viewing or sending pictures on the PC WeChat, there will be no lag, and the problem will be solved.
2. Solution
The method to solve the problem of stuttering pictures on WeChat on Win10 computer isDisable Windows Search Services. This article provides two ways to disable it:
The first method:
1. UseWin + RShortcut keys, open the run window, and enterAnd press Enter to open the service management window.
2. FindWindows SearchRight-click this service,Disabled. Right-click it, property, andStartup TypeChange toDisabled。
The second method:
In Windows 10, the default terminal is CMD, and two CMD commands are given here. The following two lines of command code need to be executed in the cmd command line of Win10.
It should be noted thatCMD needs to be opened using the administrator, otherwise access will be denied.
// In the Windows 10 CMD command line
// Stop Windows Search Service
net stop WSearch
// Disable Windows Search Service
sc config WSearch start=disabled
In Windows 11, the default terminal has changed from CMD to PowerShell, and the commands used by the two are different. There are two lines of code, and it also requiresStart PowerShell with Administrator。
// In Windows 11 PowerShell Terminal
// Close Windows Search Service
Stop-Service WSearch
// Disable Windows Search Service
Set-Service WSearch -StartupType Disabled
After the two lines of code are executed, now go to WeChat to try opening the picture in the chat history to see if the stuttering phenomenon of WeChat on the PC side has been solved.