I created a SQL Server login for an application user and forgot to uncheck the policy options. Now when I try to uncheck the options from SQL server management studio I get:
The CHECK_POLICY and CHECK_EXPIRATION options cannot be turned OFF when MUST_CHANGE is ON.
How can I make the policy changes short of removing the user and starting over?
I created a SQL Server login for an application user and forgot to uncheck
Share
Check out this link:
Fix a SQL Server Login which has MUST_CHANGE set to ON
You can use the following query to fix that:
Replacing UserName and password with the proper values.
The link will also walk you through the process of fixing it in the management studio interface.