Microsoft has posted the following comparison of various Microsoft SharePoint 2010 editions on their Web site. For more information, including licensing details and pricing, click here.
| Foundation | Standard | Enterprise | ||||||
|
|
|
You can permanently register the SharePoint PowerShell commands into PowerShell ISE so you don’t always have to manually add the command Add-PSSnapIn Microsoft.SharePoint.PowerShell every time you start PowerShell ISE. Here’s the step-by-step procedure.
Content Organizer is a new feature in SharePoint Server 2010. If you enable the Content Organizer feature it adds a library called “Drop Off Library” to the site. The idea is that after you fill out the properties of a file, the file can be automatically moved to another library or folder according to rules created by the site owner. In other words, this is a document routing feature available in SharePoint Server 2010. In Microsoft Office SharePoint Server (MOSS) 2007 the routing feature was available for records routing in the Record Center site. In SharePoint Server 2010 it is available for all the sites.
Due to a bug, or some people may consider this a “feature”, once you activate the Content Organizer feature the Drop Off Library cannot be deleted because the option “Delete this document library’ is not available under Permissions and Management.
Obviously, you can hide the Drop Off Library under Navigation but that won’t delete the library itself. I am not sure why the option to delete is not available in the Library Settings but there are a couple of ways to work around this problem. You can either use SharePoint Manager 2010 from CodePlex or you can use the PowerShell. I recommend the PowerShell option.
Option 1: SharePoint Manager 2010
SharePoint Manager 2010 is an object model explorer. You can open the site and set the AllowDeletion property to true and then save the setting. You can download the SharePoint Manager 2010 here.
Option 2: PowerShell Script (recommended)
The second method is to use a PowerShell script. I prefer this method because in my opinion this option is much safer and easier than installing additional software on the server. Here are the steps.
$spWeb = Get-SPWeb -Identity http://YourDomainName
$spLibrary = $spWeb.GetList(“http://YourDomainName/YourSiteName/DropOffLibrary“)
$spLibrary.AllowDeletion = “True”
$spLibrary.Update()
Replace the domain and site name in the above script, for example.
$spWeb = Get-SPWeb -Identity https://extranet.seattlepro.com/microsoft
$spLibrary = $spWeb.GetList(“https://extranet.seattlepro.com/microsoft/DropOffLibrary“)
$spLibrary.AllowDeletion = “True”
$spLibrary.Update()
As soon as you execute the last step and refresh the Document Library Settings page, you will see the option to delete the Drop Off Library available in the GUI, as shown below. Now you can delete the library.
If you have additional sites that you need to delete the Drop Off Library, you will need to run the scripts for those sites as well.
There is a free Wake-On-LAN GUI tool available that you can use to wake a remote computer up by either using it’s IP address or it’s Fully Qualified Domain Name (FQDN). You can use the Wake-On-LAN feature to start a computer either on the LAN or through the Internet.
You can download the tool here.
In Microsoft Office SharePoint Server (MOSS) 2007 there was a Collaboration Portal template that a lot of us used. Unfortunately, in SharePoint 2010 that template has been removed. That’s not the only template that has been deprecated in SharePoint 201o, there are seven templates that are no longer available in SharePoint 2010. Here’s a listing, in alphabetical order, of the new as well as the old templates that are removed from SharePoint 2010.
New SharePoint Site Templates
Site Templates No Longer Available in SharePoint 2010
Todd Baginski has an excellent blog post that lists in great detail all the new, subsite, deprecated and hidden templates in SharePoint 2010.
Some of the templates that are removed in SharePoint 2010 are simply hidden and you can install them using PowerShell. The Collaboration Portal template is one of those hidden templates. Some of the hidden templates, along with their code, include the following. Check out Todd’s blog for a complete listing.
Installing Collaboration Portal Site Template
Here’s the method I use to install the hidden Collaboration Portal template in SharePoint 2010. First you need to create a new Site Collection, unless you want to use an existing Site Collection, and then install the Collaboration Portal template using PowerShell. In this article we will first create a new Web Application, then a new Site Collection, and finally install the Collaboration Portal site template in that Site Collection. In this scenario we will be creating the Collaboration Portal at the subsite level.
You can also create the Collaboration Portal at the top-level site in SharePoint 2010. This can be useful when you are creating an intranet site collection. I don’t like to use the Team Site template in SharePoint 2010 for the intranet because it limits me from searching only the intranet site on the home page. You cannot search other site collections, unless you add a Search Center site. To add Search Center to the Team Site tempplate you first have to enable the Publishing feature, which may or may not be a big deal but even then on the homepage of your intranet you can still only search the intranet site. With Collaboration Portal you will be able to search any site, anywhere because when you search it will take you to the Search Center which offers enhacned search functionality.
Creating Collaboration Portal at the Top-Level Site Collection
To add the Collaboration Portal to the top-level site, use the following syntax.
New-SPSite -URL http://YourSite:PortNumber -OwnerAlias Domain\Administrator -Name “Name of the Portal” -Template “SPSPortal#0″
For example, New-SPSite -URL http://intranet.seattlepro1.com -OwnerAlias Domain\Administrator -Name “intranet” -Template “SPSPortal#0″.
This will create a top-level site collection for your intranet.
PowerShell Tip
You can permanently register the SharePoint PowerShell commands into PowerShell ISE so you don’t always have to manually add the command Add-PSSnapIn Microsoft.SharePoint.PowerShell every time you start PowerShell ISE. Here’s the step-by-step procedure.

Contact E-mail | Terms of Use | Privacy Policy
Copyright © 2013 Zubair Alexander. All rights reserved.
| M | T | W | T | F | S | S |
|---|---|---|---|---|---|---|
| « Jan | Mar » | |||||
| 1 | 2 | 3 | 4 | 5 | 6 | |
| 7 | 8 | 9 | 10 | 11 | 12 | 13 |
| 14 | 15 | 16 | 17 | 18 | 19 | 20 |
| 21 | 22 | 23 | 24 | 25 | 26 | 27 |
| 28 | ||||||
24 queries. 0.461 seconds