TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Author in SharePoint List Powershell commands
Lakshmanan Sethu Sankaranarayan
Apr 10, 2014
5.9
k
0
0
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
Author in SharePoint List Powershell commands
Here are the PowerShell commands to find the custom list author who created the list.
$web = Get-SPWeb “http://mysites/sites”
$list = $web.lists["customlist"]
$listAuthor = $list.Author
$web.Dispose()
Write-Host $
listAuthor
Happy Share Pointing :-)
Author in SharePoint List Powershell commands
Next Recommended Reading
How To Copy SharePoint List Data From One List To Other Using PnP PowerShell