Ir al contenido principal

Entradas

Mostrando entradas de julio, 2014

Forzar la parada y luego iniciar un rastreo completo de todas las fuentes de contenido en unagranja de SharePoint 2010 usando PowerShell

  Fuente: Andres Felipe Franco – Yammer Intergrupo S.A. Comprueba si el estado se establece en "Inactivo" Si la fuente de contenido está actualmenteinvolucrada en una actividad que no finaliza, detenga la actividad de rastero y esperar que finalice.Si la fuente de contenido está inactiva, entonces iniciar un rastreo completo para usar, ejecute lasiguiente secuencia de comandos en el Shell de administración, reemplazando la " Search ServiceApplication" con el nombre de la aplicación de servicio de búsqueda de sharepoint: Get -SPEnterpriseSearchCrawlContentSourceForEach- Object { if ($_.CrawlStatus -ne "Idle" ){Write-Host "Stopping currently running crawl for content source $($_.Name)..." $_.StopCrawl() do { Start-Sleep -Seconds 1 } while ($_.CrawlStatus -ne "Idle" )}Write-Host "Starting full crawl for content source $($_.Name)..." $_.StartFullCrawl()} Para obtener información, puede utilizar el siguiente script si desea

Find and Delete Orphaned Users in SharePoint

Fuente: http://www.sharepointdiary.com/2012/09/find-and-delete-orphaned-users-in-sharepoint.html Orphaned User? Who are they? Orphaned users are those who have been disabled/removed from Active Directory, but still have permissions to sites, lists and items. Internally, SharePoint keeps them in " UserInfo " table of the content database for meta-data such as created/modified by fields. Its unavoidable in any organization where employees constantly on-boarding and off-boarding. Its really difficult to manage, when it comes to thousands of sub-sites, sites, libraries and lists with their own sets of permissions. Why we care about Orphaned users? It is a best practice to delete orphaned users to keep the farm clean & organized. Also this will solve the problem of deleted active directory users still appearing on the people picker which was discussed here  People Picker not showing users from Active Directory? . If you know the user base or criteria then you can use: Clea