Searching SPS using MSN Desktop Search

By now you will have seen that the MSN Desktop Search Beta is available. (If you haven't, what have you been doing this last week?)

MSN Desktop Search supports some basic extensibility using an aliasing syntax to create web shortcuts.  You can use these shortcuts to enable you to search your intranet from the MSN DeskBand. 

Let's say your SPS site exists at https://my-portal/.  SharePoint Portal Server allows you to initiate a search via an HTTP GET request.  The syntax for this is defined in the SharePoint Products and Technologies SDK.  If I wanted to search for the term Office on the portal the search URL would be: https://my-portal/search.aspx?k=Office.  To perform this search from the DeskBand you need to create a shortcut to the portal search. Type the following command into the deskband and press Enter:

 

@sps,https://my-portal/search.aspx?k=$w

 

Hey Presto, you have some basic integration with SharePoint search!  Now you can just type:

 

sps Office in the Deskbar to kick off SPS search for the word Office. 

 

The SPS search syntax also enables you to further narrow down the search scope, specifying just people, just documents etc., so you could create other more specialist shortcuts.  For instance for a people search you can use this shortcut:

 

@person,https://my-portal/search.aspx?k=$w&w="DAV:contentclass"='urn:content-class:SPSPeople'

 

And do a search from the DeskBand like this:

person Mark Bower

 

The full SPS HTTP-GET syntax is defined here: https://msdn.microsoft.com/library/en-us/spptsdk/html/SearchGET_SV01073871.asp

 

[updated 17/12 to make instructions clearer]