Tom Mayfield
Tom Mayfield

Reputation: 6276

Custom Windows 7 Start Menu Search Provider

I'd like to write custom providers for start menu searching, but I can't seem to find where to begin.

Things I'd like to be able to do when I type in the search box on the start menu

I'm not looking for a tool to do this for me. Rather, I'd like to find any documentation on writing custom search result providers, ideally in C#.

Upvotes: 3

Views: 1883

Answers (4)

Olivier Dagenais
Olivier Dagenais

Reputation: 1552

Scott Hanselman's blog covers how to create a simple search connector by creating .osdx files, which are XML files that configure which URL(s) to invoke with the search terms. He then shows how to enable those connectors from within the start menu itself by adding entries to the registry.

Upvotes: 1

Olivier Dagenais
Olivier Dagenais

Reputation: 1552

I just discovered Start++, which has plug-in support (it appears to use JavaScript with Windows Scripting Host).

Upvotes: 0

Neil N
Neil N

Reputation: 25258

You might want to look into SlickRun a search bar alternate/replacement. While I dont think it can be put in the place of the actual start menu search, going to thier site and getting involved will probably get you a lot closer to where you want to go.

For all I know, the functionality you describe may already be an option.

Upvotes: 0

D'Arcy Rittich
D'Arcy Rittich

Reputation: 171351

I believe you are looking for the Windows 7 API Code Pack for .NET.

On a related note, you can add all kinds of searches to your favourites in Windows Explorer. Check out Windows 7 Search Federation Providers.

Upvotes: 3

Related Questions