Question

I have 2 web app (1 for intranet.domain.com and the other for mysite.domain.com) how to link mysite to intranet site. 1 suggestion seems ok, but I don't know how to implement it is:

$webapp.SuiteBarBrandingElementHtml = '<a href="/" class="ms-core-suiteLink-a">Home</a>'

$webapp.Update():
Was it helpful?

Solution

you need to run the below powershell on one of the sharePoint server in order to put the Link on your mySite.

$webApp = Get-SPWebApplication http://{your My Site web application}
$webApp.SuiteBarBrandingElementHtml = "<div class=""ms-core-brandingText""><a href="http:// your team site ">Your Main Portal</a></div>"
$webApp.Update()
Licensed under: CC-BY-SA with attribution
Not affiliated with sharepoint.stackexchange
scroll top