문제

대상 페이지를 자동으로 업데이트하지 않으려면 변형이 필요합니다. 따라서 PowEshell에서 다음 스크립트를 실행합니다.

$ rootweb= get-spweb http : ///

$ relotherthslist= $ rootweb.lists [ "관계 목록"]

$ propertystore= $ relationronalyslist.rootfolder. $ propertystore.properties.add ( "disableAutomaticPropagation", "true")) $ propertystore.update ();

그러나 smth는 옳지 않습니다. 왜냐하면 언제 :

1- 소스가 처음 게시되면 수동으로 버튼을 생성 할 수 있습니다. 대상 페이지가 생성됩니다. 그리고 이것은 괜찮습니다 입니다

2- 그러나이 소스 페이지를 다시 게시하면 업데이트 된 컨텐츠가 자동으로 대상에 반영됩니다.

타겟 페이지가 소스 페이지의 부 버전의 소스 페이지로 자동으로 업데이트되기를 원하지 않습니다. 이것은 내가 그것을 만들었던 이유

SharePoint 2013 에서이 작업을 수행 할 수 있습니까? 방법?

편집

SharePoint 2013에는 변형 설정 페이지가 있지만 작동하지 않는 것 같습니다.

소스 페이지가 다시 게시 될 때 새 대상 페이지를 다시 작성하지 마십시오.이 확인을 체크했지만 페이지는 여전히 다시 작성됩니다

변형 페이지 재현을 중지하는 방법

도움이 되었습니까?

해결책

I did some test and I found out that after creating variations with automatic propagation it is way too difficult to change them. If you configure variation settings with automatic variations set ti off BEFORE creating hierarchies it works.

다른 팁

there is similar question on stackexchange please read it and something is missing in ur powershell command

[System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint")
$site = new-object Microsoft.SharePoint.SPSite("http://yourserver/sites/abc")
$folder = $site.RootWeb.Lists["Relationships List"].RootFolder
$folder.Properties.Add("DisableAutomaticPropagation", "True")
$folder.Update();

Language Variations: Variation Page getting updated by source (When it shouldn't)

You can change the Page Update Behavior by going to 'Site settings' on your root site, clicking on 'Variation labels' (/_layouts/VariationLabels.aspx) and then clicking on your label you want to stop updating. There you can find an option called 'Page Update Behavior'.
The options are:

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