Forum Discussion
Moreno Fernandes
Apr 10, 2018Brass Contributor
using AD security group to manage permissions on sharepoint
I am using SharePoint server 2013. We are managing SharePoint user permissions via AD security groups. If I add an existing user to a AD security group which already has permissions to a SharePoint site, how long will it take for the permission to take effect ?
- By default it is 10 hours. You can shorten that time using the following PoSh:
$sts = Get-SPSecurityTokenServiceConfig
$sts.WindowsTokenLifetime = (New-TimeSpan –minutes 30)
$sts.LogonTokenCacheExpirationWindow = (New-TimeSpan –minutes 5)
$sts.Update()
https://blogs.msdn.microsoft.com/jesusfer/2015/08/27/sharepoint-2013-authentication-lifetime-settings/
2 Replies
- By default it is 10 hours. You can shorten that time using the following PoSh:
$sts = Get-SPSecurityTokenServiceConfig
$sts.WindowsTokenLifetime = (New-TimeSpan –minutes 30)
$sts.LogonTokenCacheExpirationWindow = (New-TimeSpan –minutes 5)
$sts.Update()
https://blogs.msdn.microsoft.com/jesusfer/2015/08/27/sharepoint-2013-authentication-lifetime-settings/- Moreno FernandesBrass ContributorThanks Trevor!