Tagged Questions

Windows Search, also known as Windows Desktop Search, is the Windows service that indexes files on the user's hard drive.

learn more… | top users | synonyms

7
votes
1answer
437 views

Windows Search - IFilter search term highlighting

My development team are having a problem having snippets of text shown for search results in windows 7 for our own custom files (note we are NOT talking about the preview pane that uses the ...
5
votes
4answers
2k views

Query Windows Search from Java

I would like to get to query Windows Vista Search service directly ( or indirectly ) from Java. I know it is possible to query using the search-ms: protocol, but I would like to consume the result ...
4
votes
1answer
841 views

ASP.NET OLEDB code breaks when deployed on IIS7

I'm trying to write a simple website (ASP.NET v4), which will call Windows Search, find a specific file and return it to the user. I've put together the following as an example: it calls the Windows ...
4
votes
2answers
116 views

Cannot WriteXML for DataTable because Windows Search Returns String Array for Authors Property

The System.Author Windows property is a multiple value string. Windows Search returns this value as an array of strings in a DataColumn. (The column's data-type is string[] or String().) When I call ...
2
votes
2answers
727 views

Access Windows Search index using ASP.NET MVC

I'm on a project that is being upgraded from vbscript to ASP.NET MVC. It used Microsoft Index Server to index Word and PDF files on a Windows Server 2003 machine. It simply opened an OleDbConnection ...
2
votes
3answers
242 views

Tracking “Windows Search” Queries

I can enable logging for Windows Search through the registry (see below), but this only captures queries sent through the default user-interface for Windows Search. I want to capture queries used by ...
1
vote
2answers
127 views

COM interop failing in release mode

I have a console app which makes a call to the windows search using a ComImport. While this works fine in debug mode...the console application crashes in release mode. What could be the problem? ...
1
vote
1answer
238 views

Windows Search equivalent to Indexing Services “vpath” and “characterication”

I'm trying to move a website that was on: Windows 2003, IIS 6, and Indexing Services -- to -- Windows 2008, IIS 7, and Windows Search It's Windows Search that's giving me a problem. I've set ...
1
vote
0answers
73 views

C# definition for IStemmer interface from Windows Search

Can anyone help me with translating COM IStemmer interface definition to C# or suggest tool to do that? I searched in Google and at pinvoke.net and was unable to find C# signatures. The interface ...
1
vote
0answers
247 views

Windows 2008 R2:Files in Windows Search Results are not able to be deleted

As title says, I am searching .eml files in some dir with keywords, the .eml files'content are indexed. Listing the results, I click mouse right button, no delete choice. How can I delete files from ...
1
vote
1answer
373 views

Windows Search 4 Query - Delphi Example

The following web page describes querying Windows Search programmatically: http://msdn.microsoft.com/en-us/library/aa965362.aspx Does anyone have examples using Delphi/Pascal? Examples I have in ...
1
vote
5answers
2k views

How to start/stop/pause the windows search indexer

I'd like to determine how to programatically start/stop/pause the indexer from Microsoft Search. I know it is possible because I've seen it done in programs like this one: ...
0
votes
0answers
24 views

Windows 7 Search Network Path [migrated]

Is there any way to index a UNC / Network Path with Windows 7 without making that path "Always Available offline"? With Windows XP there was Windows Desktop Search that allowed to index a UNC Path ...
0
votes
0answers
78 views

Connect to Windows Desktop Search on Remote Machine

I "inherited" a program which is using Windows Desktop Search (WDS) on a remote server to search indexed pdfs. The original coder did most of the code using VB 6 style programming, so when he ...
0
votes
0answers
14 views

Windows-search email property list

I'm trying to develop a Windows Search 3rd party software, and more specifically to search Outlook emails with the QueryHelper, like this: ' Set list of columns we want ...
0
votes
0answers
29 views

search-ms or AQS advanced Query documentation

I'm struck trying to create a custom search .NET application running on Windows 7 (or Vista) and using the Windows Search index. Ideally I'd like to use the search-ms syntax to launch an explorer ...
0
votes
0answers
30 views

APIs for index server listener

I'm new to index server and right now I'm using it to index DICOM files in my system. But I also need to convert these DICOM files into text files when there is any Change/Modification/Rename/Addition ...
0
votes
0answers
99 views

opening OleDbConnection via WCF service

I'm working on building a search model based on windows search in particular Dsearch sample in the following link http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=7388 under ...
0
votes
0answers
87 views

Where are Windows Search 4.0 log files?

Where is the log file for Windows Search 4.0? I want to look at the log file to see what the actual SQL statements are that are issued to the SystemIndex when a user searches from the GUI. I have ...
0
votes
3answers
337 views

Searching for files containing specified strings in C#

I am trying to write a WinForms app, that allows searching for a files, that contain a string written in textbox ( press WIN+F and you understand ;) ) in this app, there is a list of files and ...
0
votes
1answer
147 views

Is there a way to create my own index with Windows Search?

I have an application which store files (mostly Office documents) in various distant locations. I want my users to be able to search for these files based on some criteria on its own machine. I though ...
0
votes
1answer
1k views

Windows Desktop Search - Force re-index / index now from command line

I'm working on a project where we're using Windows Desktop Search (WDS) to index files on a web share and then later allow the user to search via a website for documents in the share. These documents ...