SharePoint
轻轻插一下

Day Tips:ForceDeleteSite

最近遇到一个奇怪的问题,如下图:

   

试了各种删除方式都不行。

   

谷歌了一下发现需要使用如下代码删除。

   

SPWebApplication w = SPWebApplication.Lookup(new Uri("xxx")); ;

   

SPContentDatabaseCollection dbs = w.ContentDatabases;

   

foreach (SPContentDatabase db in dbs)

{

if (db.Name == "Contents_DB")

{

db.ForceDeleteSite(new Guid("b8821c18-d72d-4b7a-b72d-b617fd266e36"), true, false);

}

}

   

posted on 2013-11-06 18:32  轻轻插一下  阅读(240)  评论(0编辑  收藏  举报