March 2011 - SharePoint Tips

  • Find information quicker with Metadata navigation

    Mattias Karlsson -Expert in Residence Metadata navigation is a new feature in SharePoint 2010 that allows you to quickly find and filter content in large document libraries. End users will get a new navigation pane in the left-hand side navigation of the document library when they enable the Metadata navigation. The entries displayed in the pane are the columns that are specified in the Metadata Navigation settings. Clicking on any of the items in...
  • Sync User Information from Active Directory

    Niklas Goude -Expert in Residence You can sync User information from the User Directory Store. Simply, use the Set-SPUser cmdlet and use the SyncFromAD switch parameter to enable syncing. PS > Set-SPUser -Identity powershell\user3 ` >> -Web http : // sp01 -SyncFromAD ReTweet this Tip!
  • Create templates of your lists

    Mattias Karlsson -Expert in Residence Some SharePoint lists could be useful to reuse at other locations in your SharePoint environment. Customized SharePoint lists can easily be created as templates so the customized list will be available when other users are creating new lists. You can browse the List, select the List tab in the Ribbon, and click List settings to create a template of a list in SharePoint 2010. ,. Under Permissions and Management...
  • Add an existing user to a Group

    Niklas Goude -Expert in Residence You can add an existing SharePoint User to a group using the Set-SPUser cmdlet. Simply specify the group using the Group parameter as shown in the example below. PS > Set-SPUser -Identity powershell\user3 ` >> -Web http : // sp01 -Group "Design" ReTweet this Tip!
  • Limit the amount of site collections in each content database

    Mattias Karlsson -Expert in Residence When creating a new content database in SharePoint 2010 the default value for maximum amount of sites is set to 15,000. A quite ridiculous figure since the soft recommendation from Microsoft for a content database is 200 GB. You should always create Site quotas and then calculate how many sites you can have in each content database to control storage in you content database. But even if the soft recommendation...
  • Add a new User to a specific Group

    Niklas Goude -Expert in Residence You can add a new user to a specific Group in SharePoint 2010 by using the New-SPUser cmdlet and then specifying the group using the Group parameter. In the example below, the user “powershell\User3” is added to the “Contribute” Group in the site http://SP01. PS > New-SPUser -UserAlias "powershell\user3" ` >> -Web http : // sp01 -Group "Contribute" UserLogin DisplayName...
  • Connect to external data using Business connectivity Services

    Mattias Karlsson -Expert in Residence The business connectivity Service (formerly known as the Business Data Catalogue) is a set of services and features that enable you to both read and write information to external Line of Business applications. Using SharePoint designer 2010, you can now create a connection to databases and publish the connection to SharePoint so that end users are able to view, create, and modify the information. These connections...
  • Embedding YouTube Videos

    Anjali Sharma -Expert in Residence To embed YouTube videos on your SharePoint site, get the ‘embed video code’ from the YouTube site and copy paste into a notepad. Upload the notepad to a library. Add a content editor web part and point the content link to this notepad. This will embed the video on the SharePoint page and can be played via the SharePoint media player. ReTweet this Tip!
  • Add a new User to a SharePoint Site

    Niklas Goude -Expert in Residence You can add a User to a Site in SharePoint with the New-SPUser cmdlet. In the example below, the user: “powershell\User2” is added to the site http://SP01. PS > New-SPUser -UserAlias "powershell\user2" -Web http : // sp01 UserLogin DisplayName --------- ----------- POWERSHELL\user2 User2 ReTweet this Tip!
  • Allow end users to create their own Site collection

    Mattias Karlsson -Expert in Residence With the Self-Service Site Creation feature in SharePoint 2010, you can now allow users with this the Use Self-Service Site Creation permission to create new Site Collections within a specified URL space. This can be particularly useful in collaboration environments where a large number of site collections are created. However, this feature should be handled with care so that the amount of site collection does...
  • Using the Note Board Web Part for Feedback

    Anjali Sharma -Expert in Residence In order to get user feedback or comment posted on a SharePoint site, add a note board web part to any page layout or a web part page to allow users to easily post comments. This web part can also be used to create a message board for any site or for users to post feedback to blogs and wiki articles. ReTweet this Tip!
  • Find information about a SharePoint User

    Niklas Goude -Expert in Residence You can use the Get-SPUser cmdlet when you want to find out information about a SharePoint user. Simply specify the user’s login name and the Web Site. In the example below the Format-List cmdlet is used to display all properties that are available. PS > Get-SPUser -Identity powershell\user1 -Web http : // SP01 | >> Format-List UserLogin : POWERSHELL\user1 DisplayName : User1 Name : User1 Email : Notes...
  • Show relevant information to end users using Audiences

    Mattias Karlsson -Expert in Residence With Audiences (Target audiences in SharePoint 2007), you are able to create groups that can be shown specific information that is only relevant to that audience. For example, you can create an Audience for each office location within the company. You can then select the specific Audience to receive company announcements that are relevant to them, filtering the information for the other offices. Audiences in SharePoint...
  • Powerful Workflows using SharePoint Designer

    Anjali Sharma -Expert in Residence Achieve common business functionality by writing powerful workflows using SharePoint Designer 2010. This does not involve a developer and is a 100% codeless approach to writing workflows. Additionally, workflows sometimes need to be triggered by the end user via the click of a button vs. having them start or run automatically. This can be easily achieved in SharePoint 2010 by adding a workflow-powered button to the...
  • List all SharePoint Users that are member of a specific group

    Niklas Goude -Expert in Residence You can return a list showing all SharePoint Users that are member of a specific group by using the Get-SPUser cmdlet. The example below shows how to list all SharePoint Users that are member of the “Viewers” group in the Site http://sp01.You can return a list showing all SharePoint Users that are member of a specific group by using the Get-SPUser cmdlet. The example below shows how to list all SharePoint...
1 2 Next >
Idera SharePoint Reviews SMBology, Inc. Rackspace Hosting Sponsored by Idera and SharePoint Reviews and SMBology and EPCGroup.net
Copyright 2011 SecretsOfSharePoint.com. All rights reserved.