Domanda

È possibile svuotare tutti i bidoni ricicli in una raccolta di siti?Ho provato ad andare nel cestino situato sulla pagina di amministrazione, ma era vuoto.

È stato utile?

Soluzione

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();
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a sharepoint.stackexchange
scroll top