I'm looking for the stsadm command that will list all site collections and their size on disk. Thanks.
相关问题
- sharepoint copy a list to a different web
- sts adm command for MOSS 2007
- SharePoint wsp solution: How to Deploy Globally
- Proper stsadm commands to update SharePoint Soluti
相关文章
- SharePoint中的列表复制到不同的网络(sharepoint copy a list to a
- 2007年MOSS STS ADM命令(sts adm command for MOSS 2007)
- WSP的SharePoint解决方案:如何在全球部署(SharePoint wsp solution
- sharepoint copy a list to a different web
- sts adm command for MOSS 2007
- SharePoint wsp solution: How to Deploy Globally
- Proper stsadm commands to update SharePoint Soluti
This will output the site collection list into a file called sites.xml, which can be used in other stsadm commands, like mergecontentdbs
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:
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:
Unfortunately, it doesn't give you the size of the web either.