Ever wanted to get the date when sharepoint list was created …hummm.. here is the powershell script to get that info for you.
$web = Get-SPWeb "http://yourweburl"
$list = $web.lists["Your List Name"]
$listCreatedDateTime = $list.Created
$web.Dispose()
$web = $null
Write-Host $listCreatedDateTime