Windows Indexing Service

Windows Indexing Service

Windows indexing service is a service in the Windows NT (Separately in free Windows NT Option Pack), Windows 2000 and later Windows NT-family of operating systems that allows searching on PCs and corporate computer networks. It is an operating system level service that maintains an index of most of the files on a computer and updates them without user intervention.

History

The first incarnation of the indexing service was shipped in August 1996 as a content search system for Microsoft's web server software, Internet Information Services. Its origins, however, date further back to Microsoft's Cairo operating system project, with the component serving as the Content Indexer for the Object File System. Cairo was eventually shelved, and with it OFS, but the content indexing capabilities would go on to be included as a standard component of later Windows desktop and server operating systems, starting with Windows 2000.

In Windows Vista, the content indexer was replaced with the Windows Search indexer which is enabled by default. Indexing Service is still included with Windows Vista but is not installed or running by default.

Search interfaces

Comprehensive searching is available after initial building of the index, which can take up to hours or days, depending on the size of the specified directories, the speed of the hard drive, user activity, indexer settings and other factors.

Once the indexing service has been turned on and has built its index it can be searched in three ways.

The search option available from the Start Menu will use the indexing service if it is enabled and will even accept complex queries. Searching using Indexing service works also on UNC paths and/or mapped network drives if the sharing server indexes appropriate directory and is aware of it's sharing. Queries can also be performed using either the Indexing Service Query Form in the Computer Management application or alternatively using third party interface applications such as 'Aim at File' or 'Grokker Desktop'.

Indexing Service can also be easily accessed using popular scripting languages such as VBScript - see ASP sample of Web based interface to pdf archive below:

PDF - Search Page

<%Dim strQuery ' The text of our queryDim objQuery ' The index server query objectDim rstResults ' A recordset of results returned from I.S.

strQuery = Request.QueryString("query") 'Server.URLEncode(Request.QueryString("query"))

If strQuery <> "" Then Set objQuery = Server.CreateObject("ixsso.Query") With objQuery .Catalog = "pdf" 'name of catalogue - CHANGE to your catalogue name. Also make sure it's assigned to appropriate web !!! .Query = strQuery .MaxRecords = 100 .SortBy = "rank [d] " .Columns = "filename, vpath, size, write, DocTitle" End With

on error resume next

Set rstResults = objQuery.CreateRecordset("nonsequential")

If (Err.number <> 0) or rstResults.EOF Then Response.Write "Sorry. No results found." Else

%>

<%Do While Not rstResults.EOF %><% rstResults.MoveNext Loop %>
FilenameSizeDateTitle
"><% = rstresults.fields("Filename") %> <% = rstresults.fields("size") %> <% = rstresults.fields("write") %> <% = rstresults.fields("DocTitle") %>
<%

End If SET strQuery = Nothing Set objQuery = Nothing Set rstResults = NothingEnd If%>

Restrictions

The following restriction applies to version 2.0 of Index Server. When running Indexing Service, Index Server does not detect changes to a catalog if the data is located on a mounted partition. Indexing Service does not support mounted volumes because of limitations in the underlying file system notification systems. [cite web | url = http://support.microsoft.com/kb/319506 | title = INFO: Index Server Does Not Support Mounted Volumes | accessdate = 2007-09-16]

References

External links

* [http://msdn2.microsoft.com/en-us/library/ms951563.aspx History of the Windows Indexing Service]
* [http://msdn2.microsoft.com/en-us/library/ms689644.aspx Indexing Service Start Page] - from the MSDN Library Archive
* [http://msdn2.microsoft.com/en-us/library/ms689718.aspx What is Indexing Service] - from the Microsoft Platform SDK
* [http://www.theinquirer.net/default.aspx?article=20214 Howto use Indexing Service on Windows 2000 and XP]


Wikimedia Foundation. 2010.

Игры ⚽ Нужна курсовая?

Look at other dictionaries:

  • Windows Search — (formerly known as Windows Desktop Search or WDS on Windows XP and Windows Server 2003) is an indexed desktop search platform released by Microsoft for the Windows operating system.[citation needed] Windows Search for Windows Vista, Windows 7,… …   Wikipedia

  • Windows 2000 — Part of the Microsoft Windows family Screenshot of Windows 2000 Professional …   Wikipedia

  • Windows Search — (anteriormente conocido como Windows Desktop Search o WDS en Windows XP y Windows Server 2003) es una plataforma de búsqueda en escritorio indizadas publicado por Microsoft para el sistema operativo Windows.[1] Windows Search para Windows Vista y …   Wikipedia Español

  • Windows Server 2003 — Part of the Microsoft Windows family …   Wikipedia

  • Windows NT 4.0 — Part of the Microsoft Windows family …   Wikipedia

  • Windows API — (англ. application programming interfaces)  общее наименование целого набора базовых функций интерфейсов программирования приложений операционных систем семейств Microsoft Windows корпорации «Майкрософт» и совместимой с ними свободной… …   Википедия

  • Windows Application Programming Interface — Windows API (application programming interfaces) общее наименование целого набора базовых функций интерфейсов программирования приложений операционных систем семейств Windows и Windows NT корпорации «Майкрософт». Является самым прямым способом… …   Википедия

  • Windows Explorer — This article is about the Windows file system browser. For the similarly named web browser, see Internet Explorer Windows Explorer A component of Microsoft Windows Details Included with Microsoft Windows …   Wikipedia

  • Windows Metafile vulnerability — The Windows Metafile vulnerability is a security vulnerability in Microsoft Windows NT based operating systems which has been used in a variety of exploits since late December 2005. The vulnerability was first discussed in the computer security… …   Wikipedia

  • Features new to Windows Vista — This article is part of a series on Windows Vista New features Overview Technical and core system Security and safety Networking technologies I/O technologies Management and administration Removed features …   Wikipedia

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”