Setting Timespan for forms authenticated user in SharePoint
If you want to make user logout after one min of idle status try the below code, this is only for forms authenticated users.
Run the below script in powershell script
$Data = Get-SPSecurityTokenServiceConfig
$Data .UseSessionCookies = $true
$Data .FormsTokenLifetime = (New-Timespan –Minutes 2)
$Data .LogonTokenCacheExpirationWindow = (New-Timespan –Minutes 1)
$Data .Update()
No comments:
Post a Comment