This tip is for SharePoint Foundation 2010, SharePoint Server 2010 and Search Server 2010 Express.
When upgrading to SharePoint 2010 from WSS 3.0, MOSS 2007 or Search Search 2008 there are some choices on whether or not the administrator wants to upgrade sites to the new SharePoint 2010 look and feel.
If the sites are not upgraded to the new look and feel, there is a way to try out and then set the new look and feel through the site settings page->Title, description, and icon page.
If the sites are upgraded to the new look and feel, there is not a way to go back to the previous versions look through the site settings page->Title, description, and icon page.
There is hope though to go back to the previous version look and feel if it is needed, the SharePoint 2010 Management Shell.
To enable the look and feel choice back to enabled on every site within a site collection, use the script below. Replace SiteCollection with the actual URL for your site collection.
$SiteCollection=Get-SPsite http://SiteCollection foreach($SPWeb in $SiteCollection.AllWebs){$SPWeb.UIversionConfigurationEnabled=$true;$SPWeb.update();}
To enable the look and feel choice back to enabled on a single site use the following command. Replace Site with the actual URL for your site/web.
$Site=Get-SPWeb http://Site $Site.UIversionConfigurationEnabled=$true;$Site.update();
Next tip I will show you how you can go back and forth between look and feel versions even on a brand new 2010 site. So if you just love the WSS 3.0 site look you can get that too right in SharePoint 2010.
This tip is for SharePoint Server 2010 and Search Server 2010 Express.
In the olden days MOSS 2007 ;) you could set a dedicated web front end for crawling which is used to reduce the stress of crawling from other web front end servers that users use to browse.
This setting is for the entire search service, so all local SharePoint sites will use the dedicated web front end server.
In SharePoint Server 2010 you can still set a dedicated web front end for crawling but there are some changes. First the setting is not search service wide, it is a web application setting. Second, as of this time, there is no UI to change the web application settings for dedicated crawls. To set a web application to crawl with a dedicated web front end you will need to use PowerShell. The link above has some examples of PowerShell to add a dedicated web front end and to remove a web front end. To list if a web application is using dedicated web front end settings use the example below, if any values are returned, then the web application has dedicate web front end settings. Otherwise the output will be empty (SiteDataServers : {}).
$WebApplication=Get-SPWebApplication http://www.contoso.com
$WebApplication|fl SiteDataServers