Some workstations may require different timeout settings or complete exemption from automatic locking. Configure security filtering to control policy application scope.
In GPMC, select your session locking GPO and navigate to the "Scope" tab. Under "Security Filtering," you can add or remove security groups to control which computers receive the policy.
Create a security group for exempt computers:
New-ADGroup -Name "SessionLock-Exempt" -GroupScope Global -GroupCategory Security -Path "OU=Security Groups,DC=yourdomain,DC=com"
Add computers to the exempt group:
Add-ADGroupMember -Identity "SessionLock-Exempt" -Members "WORKSTATION01$","WORKSTATION02$"
In the GPO's Delegation tab, add the exempt group with "Apply group policy" permission set to "Deny." This prevents the policy from applying to group members.
Alternative approach: Create separate GPOs with different timeout values for different computer groups, providing more granular control.
Verification: Test exempt computers to confirm they don't receive the session locking policy. Use gpresult /r to verify policy exclusion.