PowerShell para obtener información de todas las colecciones de sitio de un Web Application de SharePoint 2010 y 2013. Parametros de entrada: $ Output =" $Siteurl= #Configure the location for the output file $ Output ="L:\SharePoint\site-collection-information-mi_sitio.csv"; "Site URL"+","+"Owner Login"+","+"Owner Email"+","+"Root Site Last Modified"+","+"Quota Limit (MB)"+","+"Total Storage Used (MB)"+","+"Site Quota Percentage Used" | Out - File -Encoding Default -FilePath $ Output ; #Specify the root site collection within the Web app $Siteurl="http: //mi_sitio.contoso.com"; $Rootweb= New - Object Microsoft.Sharepoint.Spsite($Siteurl); $Webapp=$Rootweb.Webapplication; #Loops through each site collection within the Web app, if the owner has an e-mail address this is written to the output file ...