Get the user who created a document library in SharePoint 2010 -
for auditing purposed need know create each document library in sharepoint site (not document document library) there can prefereably through powershell can automated document libraries?
this cmdlet want:
$web = get-spweb "http://yoursiteurl" $library = $web.lists["library name"] $author = $library.author write-host $author
Comments
Post a Comment