Welcome to deBUG.to Community where you can ask questions and receive answers from Microsoft MVPs and other experts in our community.
0 like 0 dislike
120 views
in SharePoint Server by 18 21 31
What is the most effective method for retrieving the Site Created Date in SharePoint 2019 for Site Colelction and Subsite without using PowerShell

1 Answer

1 like 0 dislike
by 155 174 354
selected by
 
Best answer

Is it possible to get site Created Date in SharePoint Server without using PowerShell?

As a short answer, "NO", there is no GUI view to get such info, instead you have to use the PowerShell.

How to get Site Collection Created Date in SharePoint 2019 using PowerShell?

To find the created date of a site collection in SharePoint 2019, type the below cmdlet in SharePoint Management Shell

$SPSiteCollection = Get-SPSite https://YourSiteCollectionURL
$SPSiteCollection
$SPSiteCollection.RootWeb.Created

Result

Tuesday, April 23, 2024 9:39:49 AM

Example
How to get Site Collection Created Date in SharePoint 2019 using PowerShell


Get all subsites created date in SharePoint 2019

$site = get-spsite https://YourSiteCollection/
$site.allwebs |  ForEach-Object {Write-host $_.title  $_.created}
by 18 21 31
0 0
What about subsite?
by 155 174 354
0 0
I have updated my answer, hope it help!
If you don’t ask, the answer is always NO!
...