customizing my sites - spssac

45
Customizing My Sites By Michael Doyle

Upload: michael-doyle

Post on 01-Jul-2015

1.148 views

Category:

Technology


2 download

TRANSCRIPT

Page 1: Customizing My Sites - SPSSAC

Customizing My Sites

ByMichael Doyle

Page 2: Customizing My Sites - SPSSAC

About Me

• Michael Doyle

• SharePoint Architect for Waggener Edstrom Worldwide

• Email: [email protected] or [email protected]

• Twitter: @SharePointNinja

• Blog: www.sharepointninja.com• Or aiimcommunities.org/sharepoint

Page 3: Customizing My Sites - SPSSAC

3

The My Site Dilemma

I installed My Sites but nobody uses them. Now what?

Page 4: Customizing My Sites - SPSSAC

Increasing My Site Usage

Make it easier to get to Integrate My Site training into new hire training Add custom properties that make sense for your

organization Make People Search easy to get to Integrate operationally critical pages into My Sites

with personalization pages. Use intranet feature stories

Page 5: Customizing My Sites - SPSSAC

My Site Navigation Options

Stick with current My Site navigation

Make My Sites a one-click on home page

Make the My Site the user’s home page

Integrate My Site pieces into the home page

Page 6: Customizing My Sites - SPSSAC

OTB My Site Navigation

•My Site•My Profile•My Settings•Sign in as

Different User•Sign Out

Page 7: Customizing My Sites - SPSSAC

Hiding the Welcome button

Add Visible=“false”

Page 8: Customizing My Sites - SPSSAC

Navigation Levels

Top Level

Sub Level

Page 9: Customizing My Sites - SPSSAC

Top Level Navigation

• From the site settings at the My Site’s host site collection level choose Top Link Bar

• Under the User Profile service application in the personalization sites area.Note: Audience based links.

Page 10: Customizing My Sites - SPSSAC

My Sites Sub Navigation

• Via the quick launch• Or appending _layouts/AreaNavigationSettings.aspx

to My Sites top level directory.

Page 11: Customizing My Sites - SPSSAC

Quick Launch Settings

Page 12: Customizing My Sites - SPSSAC

Sub Navigation considerations

• Phase in Tags and Notes

• Consider the redundancy of organization chart

• Value of memberships (shows SharePoint site memberships and Outlook distribution lists)

• Value of colleagues

Page 13: Customizing My Sites - SPSSAC

Personalization Site Creation

Page 14: Customizing My Sites - SPSSAC

Add Personalization site link

• In Central Administration navigate to Service Applications-> User Profile Service ->My Site Settings -> Configure Personalization Sites

• Click on New Item

• Add link to site

• Choose audiences if needed

Page 15: Customizing My Sites - SPSSAC

Personalization Examples

Human Resources Targeted to different groups (i.e. Regions)

Manager’s Page

New Hire Page

Contractor Page

Page 16: Customizing My Sites - SPSSAC

Colleague and Outlook connection

Page 17: Customizing My Sites - SPSSAC

Everybody or not Everybody

• Make the decision to allow visibility options early on.

• Controlling visibility is often seen as unnecessary complications and may inhibit My Site adoption.

• If profile fields are all set to everybody and the user can’t change, remove the visibility dropdown from master page.

Page 18: Customizing My Sites - SPSSAC

Removing “View My Profile as seen by”

• Remove or hide the line (i.e. add Visible=“false”)

<SPSWC:AsSeenBy runat="server" id="ddlAsSeenBy" SelectionMode="Single" autopostback="true"/>

on person.aspx (only page with it)

Page 19: Customizing My Sites - SPSSAC

Profile Pictures

• No longer tied to a person’s personal content area.

• Now stored in central area (http://<my site host>/User Photos).

• Three sizes stored but not original (144x144, 96x96, and 32x32)

Page 20: Customizing My Sites - SPSSAC

Newsfeed Considerations

• Lots of items are tracked by default.

• Users can change what is tracked.

• Some companies might view the level of exposure as intrusive or afraid that users may be spending too much time looking at what others are doing.

Page 21: Customizing My Sites - SPSSAC

Newsfeed Options

Page 22: Customizing My Sites - SPSSAC

Organizational Chart Considerations

• Interactive one requires Silverlight which may be an issue in some environments.

• Shows up in three places within My Sites and once on People Search.

• In some companies titles reflect pay grade and may be sensitive information.

Page 23: Customizing My Sites - SPSSAC

Tags and Notes Considerations

• New concepts in SP 2010

• Adding a note also sends an email.

• Tags and Notes can quickly add up. Doesn’t take much space but the number of items can increase crawl time.

• Built in tag/note maintenance is cumbersome (read time consuming)

Page 24: Customizing My Sites - SPSSAC

Managing Notes/Tags

Page 25: Customizing My Sites - SPSSAC

My Site page locations

• Root of My Site host. Overview (default) – person.aspx Organization – Organization.aspx Content – personcontent.aspx

• _layouts directory (file system)Document – viewlsts.aspxTags and Notes – thoughts.aspxColleagues – MyContactLinks.aspxMemberships – MyMemberships.aspx

Page 26: Customizing My Sites - SPSSAC

Editing My Site Pages

• Can use SharePoint Designer to edit files located under My Site Host

• Other files can be opened as individual files with other tools but don’t appear as part of the site.

• Always make backups. Designer can throw in code that makes recovery difficult.

Page 27: Customizing My Sites - SPSSAC

Multiple Page Issues

Items that cross pages Everything in the Mysite.master (or master page

chosen). The top level menu The sub level menu

Profile information is displayed independently on each page.

Page 28: Customizing My Sites - SPSSAC

Personal Content Sites

Page 29: Customizing My Sites - SPSSAC

Personal Content Site Concerns

• Each person is a site collection administrator

• Each site can have it’s own theme (theme does not inherit) and potentially it’s own master page

• User’s can potentially delete their own sites (yes, I have seen this happen)

• Increases administration needs

Page 30: Customizing My Sites - SPSSAC

Themes

• Same themes used in the Office 2010 suite.

• Easy to apply.

• PowerPoint has the best and easiest to use theme editor.

• Limited.

• Combination of themes and CSS is probably your best bet.

Page 31: Customizing My Sites - SPSSAC

Themes

Page 32: Customizing My Sites - SPSSAC

Getting My Site Information

• SharePoint Web Controls

• Web Services

• SharePoint Object Model

Page 33: Customizing My Sites - SPSSAC

SharePoint Web Controls• Register SPSWC at top• User Profile data accessible via adding

<SPSWC:ProfilePropertyLoader id="m_objLoader" LoadFullProfileOfCurrentUser="true" runat="server"/>

• User profile data can be put anywhere on a pagei.e. <SPSWC:ProfilePropertyImage PropertyName="PictureUrl" RenderWrapTable="False" runat="server"/>

Page 34: Customizing My Sites - SPSSAC

Social Web Services

• People.asmxUseful for getting a list of users.

• UserProfileService.asmxProvides profile information based upon an individual

user.

• SocialDataService.asmxUseful for dealing with tag data.

Page 35: Customizing My Sites - SPSSAC

User Information List Issues

• Still in SharePoint 2010

• Users who are added individually or have visited the site collection.

• Provides data for the drop down for people list.

• Can cause problems when user logon changes.

Page 36: Customizing My Sites - SPSSAC

What about My Links

• They are not on My Sites by default

• To add them back edit one of the pages (such as person.aspx) and put the Quick Links control on there.

• Being replaced with the Tag cloud

Page 37: Customizing My Sites - SPSSAC

Twitter on Your Overview Page

• Get a widget from Twitter.com• Create a User Profile Property• Copy the code into a Content Editor Web Part• Modify it with Javascript to read in User

Profile Property• Instructions at

http://www.sharepointninja.com/Blog/Lists/Posts/Post.aspx?ID=54

Page 38: Customizing My Sites - SPSSAC

Twitter Example

Page 39: Customizing My Sites - SPSSAC

Outlook integration with My Sites

• My Site info is visible in Outlook once the social connector is configured.

• Can be found by going to the View tab on Outlook and clicking on People Pane and going to Account settings.

• Pulls in activities and status updates.

Page 40: Customizing My Sites - SPSSAC

Hooking up My Sites

• Users have to enter My Site Host and user name/password.

Page 41: Customizing My Sites - SPSSAC

Current Outlook Social Connectors

• SharePoint My Sites• Facebook• My Space• Linked In• MSN Messenger

Note: Relaxed privacy settings on most social sites can cause some accidental sharing of private information.

Page 42: Customizing My Sites - SPSSAC

Facebook Scenario

• You have the FB social connector added and you received an email from someone who is also your friend on FB. It shows recent activities of that person including anything someone has posted on their wall (i.e. pictures, profanity, etc.) right at the bottom of your Outlook.

• Depending on privacy settings you don’t even have to be friends to see information.

Page 43: Customizing My Sites - SPSSAC

Facebook Social Connector Example

Page 44: Customizing My Sites - SPSSAC

Don’t ForgetSharePint!!

Join us at 6:00 pm at BJs Brewhouse for a free drink, kindly provided by Rackspace! A

great opportunity to network with other SharePoint Professionals!

Don’t forget to fill out your bingo cards and surveys to be eligible for GREAT end of day raffles!

Sponsored By…..

Page 45: Customizing My Sites - SPSSAC

Thanks to Our Sponsors