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 :-)