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 s...
- Apr 10, 2018By 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/
Apr 10, 2018
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/
$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 FernandesApr 10, 2018Brass ContributorThanks Trevor!