我希望变体不会自动更新目标页面。 所以我在Poweshell上运行以下脚本:

$ rootweb= get-spweb http:///

$ haltionalslist= $ rootweb.lists [“关系列表”]

$ propertystore= $ haltionalslist.rootfolder $ propertystore.properties.add(“disableautompropagation”,“true”) $ propertystore.update();

但smth不对。因为时间:

1-源首次发布时,我可以手动单击按钮创建变型 而不是目标页面。这是OK

2-但是当我重新发布此源页面时,更新的内容会自动反映在目标上。

我不希望使用刚刚重新发布的次要版本的次要版本自动更新目标页面。这是我制作IT手册的原因

我可以在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归因
scroll top