Get author of SharePoint list
Below I write a powershell script to get the author and date of creation of SharePoint List. Today I have suddenly found out the new list. I was very surprised to see it and wanted to know who and when created it.
#Get author of SharePoint list and date it was created Add-PSSnapin Microsoft.SharePoint.PowerShell -erroraction SilentlyContinue cls $url = "http://mysite/mysubsite/" $spweb = Get-SPWeb $url $list = $spweb.Lists["my List Name"] Write-Host "List Author: " $list.Author, "created" $list.Created

PostgreSQL in Docker: when DBeaver lies (and psql saves the day)
SharePoint onPrem: Create ContentType with the specific ID
Send props from Child class component to Parent state component in React App