Question

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?

Pas de solution correcte

Autres conseils

$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;
     }
}
Licencié sous: CC-BY-SA avec attribution
Non affilié à sharepoint.stackexchange
scroll top