In this article we can learn, who created the list with
name and date using PowerShell.
This script is very useful to know who created the list
with created username and created date with time in any environment like Dev, QA
and Prod using PowerShell.
Here we are having a list someone created long time back
but as of now we don’t know who created this list, using below PowerShell
script we can get it easily.
Add-PSSnapin microsoft.sharepoint.powershell
$web = Get-SPWeb
"http://dotnetsharepoint.com/sites/sharepoint"
$list = $web.lists["listname"]
$listwhocreated = $list.Author
$listcreateddate = $list.Created
Write-Host "Created User Name:" $listwhocreated
Write-Host "Created Date:" $listcreateddate
SharePoint Online Real Time Training Contact: JLAKSHMITULASI@GMAIL.COM