Hello guys,
is there a way to find out all the places where a specific URL is used by using PowerShell ?
I tried it this way:
Add-PSSnapin "Microsoft.SharePoint.PowerShell"
get-spsite -limit all| Where-Object {$_.Url -like "https//AAA.BBB.com/CCC"}
Thank you in advance.