Hi @Chapter7-2723 •
You can try this command to force kerberos Preauthentication:
Get-ADUSer -Filter 'DoesNotRequirePreAuth -eq $true ' |
Set-ADAccountControl -doesnotrequirepreauth $false
Please don't forget to mark helpful answer as accepted
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi
I have 200 users in my active directory. Few of them have kerberos pre-authentication is disabled.
I can get a list of users who have Kerberos pre-authentication disabled with the help of below cmlets:
Get-ADUSer -Filter { DoesNotRequirePreAuth -eq $true } -Properties DoesNotRequirePreAuth | select SamAccountName, DoesNotRequirePreAuth
My question is:
How to enabled all those users who have disabled kerberos preauthentication.
I have command to enabled one by one user or OU based users. I do not want this.
I want to enabled all those users who have disabled kerberos preauthentication in a domain.
Thanks
Hi @Chapter7-2723 •
You can try this command to force kerberos Preauthentication:
Get-ADUSer -Filter 'DoesNotRequirePreAuth -eq $true ' |
Set-ADAccountControl -doesnotrequirepreauth $false
Please don't forget to mark helpful answer as accepted