Have you ever wondered when your site collections were created?
Try the following one liner to get all the information you need:
Get-SPSite -Limit All | %{$root = $_.rootweb; $date = $root.created.toShortDateString(); Write-Host "$($root.url) was created on $($date)"} |
![image image]()