Skip to main content

What is SearchIndexer.exe and Why Is It Running?

What is SearchIndexer.exe and Why Is It Running?


You’re no doubt reading this article because you’re wondering what that SearchIndexer.exe process is all about, and why it’s chewing up a lot of RAM or CPU. Here’s the explanation you’re looking for, and how to deal with it.

So What Is This Process?

 

SearchIndexer.exe is the Windows service that handles indexing of your files for Windows Search, which fuels the file search engine built into Windows that powers everything from the Start Menu search box to Windows Explorer, and even the Libraries feature.
You can see this for yourself by simply right-clicking on the process name in the Task Manager list, and then choosing Go to Service(s) from the menu.



This will take you to the Services tab, where you can clearly see the Windows Search item selected in the list.



If you take a look at the file properties, you can clearly see that this particular executable is the Indexer component for Windows Search—though the name probably gave that away already.




 

How Do You Stop This Process?

 

If you want to stop the service from running, you can open up Services through Control Panel, or type in services.msc into the Start Menu search box. Once you’re there, you can find Windows Search in the list and click the Stop button.



We wouldn’t recommend disabling the service—you can simply uninstall it if you don’t want it.

 

How Do You Uninstall This Service?

 

We’re not recommending that you uninstall the Windows Search service, since it powers so much of the behind the scenes stuff in Windows 7, but if you want to remove it you can type windows features into the Control Panel search to pull up the Turn Windows features on or off screen. In here you can simply uncheck Windows Search and click the OK button. You’ll probably have to reboot your PC once that’s done.


 

How Can I Make SearchIndexer Use Less RAM or CPU?

 

Your best option is to cut down on the amount of data that you’re indexing—there’s usually no reason to index every single file on your drive. You’ll need to open up the Indexing Options through the Control Panel or Start Menu search box to make the changes.
The first thing you should notice is the Pause button on this window, which can pause indexing for up to 15 minutes—useful if you’re trying to do something and Windows Search happens to be in overdrive mode, though it really shouldn’t since it only runs while your PC is idle.




You’ll want to click the Modify button and then trim down the list of locations to just the ones you really need indexed—this can seriously improve the performance of your Start Menu search box as well.


 

Advanced Tip: Make Windows Search Index Only Filenames

 

If you click the Advanced button on the Indexing Options dialog, you’ll be able to access another set of settings—what we’re looking for here is the File Types tab on this dialog. Once you’re there, scroll down to some common formats like doc, docx, and other files, and you’ll see that they are configured to search the file contents by default.




If you don’t actually search within the files and only care about the file names, you can trim down the index by changing this setting to Index Properties Only.

Conclusion: This Process Shouldn’t Be Removed

 

You really shouldn’t remove this process, but hopefully the lessons in this article will help you trim it down to size, and remember that you can always temporarily stop the service if you feel like it.


Comments

Popular posts from this blog

Defacing Sites via HTML Injections (XSS)

Defacing Sites via HTML Injections Defacing Sites via HTML Injections What Is HTML Injection: "HTML Injection" is called as the Virtual Defacement Technique and also known as the "XSS" Cross Site Scripting. It is a very common vulnerability found when searched for most of the domains. This kind of a Vulnerability allows an "Attacker" to Inject some code into the applications affected in order to bypass access to the "Website" or to Infect any particular Page in that "Website". HTML injections = Cross Site Scripting, It is a Security Vulnerability in most of the sites, that allows an Attacker to Inject HTML Code into the Web Pages that are viewed by other users. XSS Attacks are essentially code injection attacks into the various interpreters in the browser. These attacks can be carried out using HTML, JavaScript, VBScript, ActiveX, Flash and other clinet side Languages. Well crafted Malicious Code can even hep the ...

EKS Cluster and Create CSI Driver to store credentials in AWS Secrets Manager via SecretProviderClass

EKS Cluster | CSI Driver | SecretProviderClass | AWS Secrets Manager Setup EKS Cluster and Manage Credentials at runtime using CSI driver using SecretProviderClass and Secrets Manager Assuming you have Configured/Installed AWS CLI, EKSCTL, KUBECTL, HELM. CSI Basic Information: CSI (Container Storage Interface) widely used as a Storage Technology. Created by Google | Mesosphere | Docker.  It has two two Plugins one runs on the Master Node (Centralized Controller Plugin) and another one on Worker Nodes (Decentralized headless Node Plugin).  CSI communication protocol is gRPC.   The communication between Container Orchestration to Controller Plugin (Master) and to Node Plugin (Worker Node) happens using gRPC .  CSI Drivers : vendor specific compiled into Kubernetes/openshift binaries. To use a CSI driver, a StorageClass needs to be assigned first.  The CSI driver is then set as the Provisioner for the Storage Class. CSI drivers provide three main service...

Linux Systems Performance/Observability (BPF (bpfcc-tools), BCC Tools

  Linux System Performance/Observability Tools Linux Systems Performance/Observability (BPF (bpfcc-tools), BCC Tools Assuming you have Linux Server in place and have the required BPF aka BCC related packages installed on the system(s) for the required Linux distribution. BPF(eBPF) aka BCC Tools (bpfcc-tools) : BPF, which originally stood for Berkley Packet Filter is the dynamic tracing tools for Linux Systems.  BPF initially used for the speeding up for the tcpdump expressions and since then it has been know as the extended Berkley packet Filter (eBPF).  Its new uses are Tracing Tools where it provides programmability for the BPF Compiler Collection (BCC) and bpftrace front ends .   Example: execsnoop, biosnoop etc is a BCC Tool. When facing production performance crisis these such list of tools comes handy to trace and fix the issue. However, it requires certain KERNEL level config options to be enabled such as CONFIG_FTRACE, CONFIG_BPF. Profiling tools typically re...