I want to list all site collections under my web application; the purpose is to list all mysites created by users.

Like that:

/members/sites/sqladmin
/members/sites/sqluser
/members/sites/sqluser1
/members/sites/sqluser2
/members/sites/user1
link|improve this question

56% accept rate
feedback

3 Answers

For the purpose of accessing all site collections within a given web application there's, quite naturally, the SPWebApplication.Sites property. To get access to a particular web application you can use a code like this:

SPWebApplication webApp = SPWebApplication.Lookup(new Uri("http://my-web-app-url:80/"));

(see MSDN here as well).

link|improve this answer
feedback

Use SPWebApplication.Sites property for that.

link|improve this answer
feedback

On the Central Administration home page, click Application Management.

On the Application Management page, in the Site Collections section, click View all site collections.

The Site Collection List page lists all the site collections in the Web application.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.