Solución:
Este script atraviesa la jerarquía y deshabilita la función Contenido siguiente en cada sitio web. Recibe un mensaje de error para cada sitio donde la función no está activa o falta. Esto se puede ignorar
$w = Get-SPWeb http://MySharePointURL | ForEach{ $_.URL }
Get-SPFeature -Web $w |%{ Disable-SPFeature -Identity "FollowingContent" -URL $w -Confirm:$false}
Este script deshabilita la configuración “Permitir solicitud de acceso” en Configuración del sitio -> Permisos del sitio -> Permitir solicitud de acceso para todos los sitios y subsitios y la URL configurada
$Webapp = Get-SPWebApplication "http://MySharePointURL"
ForEach ($site in $webapp.Sites)
{ForEach ($web in $site.AllWebs | where {$_.RequestAccessEnabled -and $_.Permissions.Inherited -eq $false})
{$web.RequestAccessEmail=""
write-host $web.Title, $web.URL updated}}
Fuente: Desactivar la función social MySite, Newsfeed, OneDrive, Sync, Share & Follow en SharePoint 2013
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)