Pergunta

I need to write a quick powershell script to do the following agains SP 2007

  1. Show all the folders within a document library.
  2. Count the documents within each folder.
  3. Show the permissions on each folder within the document library.

Anyone got any ideas on how to do this?

Nenhuma solução correta

Outras dicas

$StartingFolder = "\\sharepointportal\site\subsite"
$FolderList = gci $StartingFolder -recurse | ?{$_.psiscontainer}
foreach ($Folder in $FolderList){

          foreach($item in $folder)
          {
                $count++;
          }
"Folder: $($Folder.fullname) Count: $Count"
$count=0;
     }
}
Licenciado em: CC-BY-SA com atribuição
Não afiliado a sharepoint.stackexchange
scroll top