Dinusha's Blog
Pages
Home
Presentations
Azure
SharePoint
Power Platform
Articles
About Me
Monday, November 19, 2012
Get SharePoint sites created after specific date using PowerShell
Following PowerShell Script will provide sites created after a specific date
$date
=
[
datetime
]
"10/15/2012"
Get-SPWebApplication
"http://sp13:8080"
|
Get-SPSite
-Limit
All
|
Get-SPWeb
-Limit
All
|
where
{
$_
.
Created
-lt
$date
}
|
select
Url
,
{
$_
.
Created}
Newer Posts
Older Posts
Home
Subscribe to:
Posts (Atom)