Day Tips:ForceDeleteSite

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

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);

}

}