Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to force Windows Indexing "activity" [closed]

Tags:

The Windows Indexing Service pauses itself when it detects the "user is active." Is there a registry entry or something to make it continue indexing regardless of user activity?

Clarification: in Windows XP

like image 379
sep332 Avatar asked Nov 06 '08 17:11

sep332


People also ask

How do I force start indexing?

Go to Control Panel | Administrative Tools | Services, scroll down the list to Windows Search and restart the service. The registry changes don't take effect until the search services has restarted. Go to Control Panel | Indexing Options to monitor the indexing.

Why does Windows indexing take so long?

Indexing helps Windows Search do its job faster. However, this process can use up many of your computer's resources and take a long time to complete. The reason for this is because your laptop typically has many files, and the more files there are to index, the longer it takes to complete the process.

How do I force Windows to index files?

You can force Windows Search Indexing Service to run even when a user is using the system by configuring a policy setting with the Group Policy Editor. To start, press Win + R, type gpedit. msc and press the Enter button. The above action will open Group Policy Editor.


1 Answers

Microsoft Indexing service indexing optimization is controlled by a set of registry entries in HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\ContentIndex

Follow these steps to easily tune the performance of Indexing Service to index documents immediately:

  1. Open the Computer Management control panel.
  2. Expand the "Services and Applications" item.
  3. Stop Indexing Service (right click -> Stop).
  4. Right click Indexing Service -> All Tasks -> Tune Performance.
  5. Select the Customize radio button and click the "Customize" button.
  6. Select "Instant" indexing performance.
  7. OK, OK.
  8. Start Indexing Service (right click -> Start).

Note, that now indexing service will index documents as soon as the file system notifies it of any changes. WARNING: This setting applies to all catalogs. The setting could cause system slowdown due to the amount of documents being indexed in the background.

The indexing settings can be further tuned by selecting other items in the Tune Performance dialog. Each of these tunings, correspond to a set of values written to the ContentIndex registry key. These values can be tweaked to obtain the best performance balance.

like image 109
J Davis Avatar answered Oct 11 '22 22:10

J Davis