質問

サイトコレクションですべてのごみ箱を空にすることは可能ですか?管理ページにあるごみ箱に入ってみましたが、空でした。

役に立ちましたか?

解決

The following powershell script will delete all items in the site collection recycle bin and recycle bins of each of the webs in the provided sitecollection url:

[System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint");
$site = new-object microsoft.sharepoint.spsite("SITE COLLECTION URL");
for ($i=0;$i -lt $site.allwebs.count;$i++)
{ 
  if($site.allwebs[$i].recyclebin.count >0)
{
  $site.allwebs[$i].recyclebin.deleteall();
}}
$site.recyclebin.deleteall();
$site.dispose();
ライセンス: CC-BY-SA帰属
所属していません sharepoint.stackexchange
scroll top