如何清除无效的SPWebConfigModifications?

作为解决方案的一部分,我尝试执行一些无效的修改,但是现在我无法摆脱它们,每次运行ApplyWebConfigModifications时,它都会尝试执行无效的修改。

如何将它们冲洗出系统?

最佳答案

供将来参考(将我的头撞在墙上3天之后):

您可以使用此工具:

http://ianankers.wordpress.com/2011/07/14/web-config-modification-manager-for-sharepoint-2010/

它将列出服务器场中安装的每个WebApp的所有模块,您可以添加新模块,也可以删除旧模块。

该工具将仅列出webapp级别的修改,如果您在服务器场级别安装了mod,则需要运行以下脚本:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.SharePoint;
using Microsoft.SharePoint.Navigation;
using Microsoft.SharePoint.Administration;

namespace ModTool
{
    class Program
    {
        static void Main(string[] args)
        {

            SPSite site = new SPSite(args[0]);
            SPWebService service = site.WebApplication.Farm.Services.GetValue<SPWebService>();


            if (args.Length == 1 || string.IsNullOrEmpty(args[1]))
            {
                Console.Out.WriteLine("Listing all Mods and Owners");
                foreach (SPWebConfigModification mod in service.WebConfigModifications)
                {
                    Console.Out.WriteLine("Mod:" + mod.Name + ", Owner:" + mod.Owner);
                }
            }
            else
            {
                Console.Out.WriteLine("Removing all mods owner:" + args[1] + ", reference site:" + args[0]);

                List<SPWebConfigModification> toDelete = new List<SPWebConfigModification>();

                foreach (SPWebConfigModification mod in service.WebConfigModifications)
                {
                    if (mod.Owner == args[1])
                    {
                        toDelete.Add(mod);
                    }
                }

                Console.Out.WriteLine("Found " + toDelete.Count + "Mods");



                foreach (SPWebConfigModification mod in toDelete)
                {
                    service.WebConfigModifications.Remove(mod);
                }
                service.Update();
                SPWebService.ContentService.ApplyWebConfigModifications();
                Console.Out.WriteLine("Done!!");
            }
        }
    }
}


用法:

ModTool http://site - List all the mods for the farm, site is just an entry point
ModTool http://site owner -Deletes all the mods for the far wich owner is "owner"

关于sharepoint-2010 - 如何刷新无效的SPWebConfigModifications,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10732808/

10-10 02:59