The new version of SharePoint offers more capabilities in the keyword syntax to enhance the search experience.
While in the previous version you had to resort to FullText SQL queries, a lot of things can now be accomplished with keyword syntax.
For instance if you would like to filter on a date, you could use the following query:
LastModifiedTime>=01/06/2010
The actual format of the date depends on your regional settings (I’m using Dutch (nl-NL) in this case).
To search within a range of dates you can use the following query syntax:
LastModifiedTime:28/06/2010..30/06/2010
To exclude items you could use the following syntax:
LastModifiedTime<>28/06/2010
More info from MSDN about keyword syntax kan be found here: http://msdn.microsoft.com/en-us/library/ee558911.aspx









CSS contents showing in settings page for site based on custom template
At a customer we created a few custom site templates by configuring them and then saving them as template. When creating new sites based on this template, we had the strange issue that the contents of the Alternate CSS (AlternateCSSUrl) were included and showing in the header on layouts pages in the sites.
It appears that the AlternateCSSUrl is also set on the AlternateHeader property of the SPWeb object.
This post on the SharePoint 2010 forums also mentions this issue.
You can off course use powershell to get rid of this problem:
Update:
The post on the forums got answered and according to that it has to do with the publishing feature that was activated before saving the site as a template. However in my case that feature wasn’t activated, because we’re aware that such a scenario isn’t officially supported by Microsoft.