Hi
Using SharePoint 2013 with powershell 3.
I try to use: get-spsite | get-spweb
But this displays both sub-sites and Site collections.
Is there any way to filter only sub sites?
br
bjorn
Technology Tips and News
Hi
Using SharePoint 2013 with powershell 3.
I try to use: get-spsite | get-spweb
But this displays both sub-sites and Site collections.
Is there any way to filter only sub sites?
br
bjorn
Can you try this?
get-spsite -limit ALL | get-spweb | ?{$_.IsRootWeb -eq $false}