문제

i 2 개의 웹 앱 (1 intranet.domain.com) 및 mysite.domain.com에서는 mysite를 인트라넷 사이트에 연결하는 방법을 가지고 있습니다.1 제안은 괜찮아 보이지만 구현하는 방법을 모르겠습니다 :

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

$webapp.Update():
.

도움이 되었습니까?

해결책

MySite에 링크를 넣으려면 SharePoint 서버 중 하나에서 아래 PowerShell을 실행해야합니다.

$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()
.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 sharepoint.stackexchange
scroll top