Click here to Skip to main content
15,884,099 members
Articles / Productivity Apps and Services / Sharepoint / SharePoint 2013

Adding the org Chart Back into a SharePoint 2013 My Site

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
18 Sep 2014CPOL 14.1K  
How to add the org Chart Back into a SharePoint 2013 My Site

One thing everyone loved about the SharePoint 2010 my sites was the Silverlight Organisation chart.

It seems to have been dropped from SharePoint 2013, my guess as Silverlight is no longer flavour of the month.

However, it's still there on the \organizationview.aspx page in the My Site Host Collection Site.

All we need to do to bring it back is modify the quick navigation and add a link to it and hey presto!

We can do this via the GUI or we can use PowerShell to do this.

Using the GUI

Log onto the my site root site as a site collection administrator.

  • Select the ‘Gear Wheel’
  • Select ‘Site Settings’.
  • Under ‘Look and Feel’ select ‘Quick Launch’.
  • Select ‘New Heading’.

    New Heading

  • Set the web address to ‘http://<my site host collection root site URL>/organizationview.aspx’.
  • Set the description to ‘Organisation Chart’.
  • Select ‘OK‘.

Using PowerShell

PowerShell
$Web = Get-SPWeb -Identity:"http://<my site host collection root site URL>/"

$Navigation = $Web.Navigation.QuickLaunch

$Node = New-Object `

-TypeName:"Microsoft.SharePoint.Navigation.SPNavigationNode" `

-ArgumentList:"Organisation Chart", 
"http://<my site host collection root site URL>/OrganisationView.aspx", $true

$Web.Navigation.QuickLaunch.AddAsLast($Node)

Organisation Chart Link

Enjoy!

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Satellite Provider Satellite Provider
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
-- There are no messages in this forum --