question

SHAREPOINTER avatar image
0 Votes"
SHAREPOINTER asked JoyZ commented

How can i find all absolute urls in an entire sharepoint web application?

How can i find all absolute urls in an entire sharepoint web application?

office-sharepoint-server-administration
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

cheong00 avatar image
0 Votes"
cheong00 answered cheong00 edited

See if the instruction here to enable "Site Content and Structure" item helps.


5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

JoyZ avatar image
0 Votes"
JoyZ answered JoyZ commented

@SHAREPOINTER,

If you want to list all the sites with absolute url under the web application, use the following Powershell:

 Add-PSSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue
     
 #Set the Web application URL
 $WebAppURL="http://xxx.crescent.com"
     
 #Get the Web Application        
 $WebApp = Get-SPWebApplication $WebAppURL
     
 #Get all Site collections from the web application
 $SitesCollection  = $WebApp.Sites
     
 #Enumerate all site collections in the web application
 Foreach($Site in $SitesCollection)
 {
     #Get Site Collection URL, Owner, Content Database Details
     Write-host $Site.URL
 }

If this is not feasible for you, feel free to reply.

More information for your reference:

https://www.sharepointdiary.com/2016/10/get-all-site-collections-in-web-application-using-powershell.html

Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. Please make sure that you completely understand the risk before retrieving any suggestions from the above link.


If an Answer is helpful, please click "Accept Answer" and upvote it.

Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


· 2
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

@SHAREPOINTER,

Do you have any progress on this issue?

Please remember to update this thread if you need further assistance.

0 Votes 0 ·

@SHAREPOINTER,

I’m checking how the things are going on about this issue. Whether the post helps you?

You can accept the post as answer if it helps.

Thank you for your understanding and support.

0 Votes 0 ·