sts adm command for MOSS 2007

2019-08-13 00:19发布

I'm looking for the stsadm command that will list all site collections and their size on disk. Thanks.

标签: stsadm
1条回答
神经病院院长
2楼-- · 2019-08-13 01:01

This will output the site collection list into a file called sites.xml, which can be used in other stsadm commands, like mergecontentdbs

stsadm -o enumsites -url http://MySharePointSite > C:\sites.xml

Note that this can take a long time if there are lots of site collections - it takes 2 hours on my SharePoint system.

Edit: Added commands for subwebs:

For the subwebs, you can use the enumsubwebs command, passing it the root url of the site collection to enumerate:

stsadm -o enumsubwebs -url http://MySharePointSite

However, this doesn't give you the size of the web, nor does it output the value for the root web in the site collection, nor does it recurse, so you don't get the subwebs of the subwebs. Its just a list of top-level subwebs.

You can get a complete list of all the webs in a content database with the new enumallwebs command:

stsadm -o enumallwebs -databasename MyContentDatabaseName

Unfortunately, it doesn't give you the size of the web either.

查看更多
登录 后发表回答