سؤال

أريد أن لا يتم تحديث الاختلافات الصفحات المستهدفة تلقائيا. لذلك قمت بتشغيل البرنامج النصي التالي على PoweShell:

$ rootweb= get-spweb http:///

$ العلاقات المقدمة= $ roadweb.lists ["قائمة العلاقات"]

$ propertystore= $ العلاقات. $ propertystore.properties.add ("disableAutomprapagation"، "صحيح") $ propertystore.update ()؛

لكن smth ليس صحيحا. لأنه عندما:

1 - عند نشر المصدر لأول مرة، يمكنني النقر يدويا على زر إنشاء varioation وعقل الصفحة المستهدفة. وهذا جيد

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