Browse by Tags

Error: Property MustChangePassword is not available for login
Published 7 August 7 9:50 AM | SSQA.net
If you have stumbled with the error "Error: Property MustChangePassword is not available for login.." or same as the picture show below: To solve the issue either you have to take out the "enforce password policy" using SA privileges...
TSQL to find a login's properties such as password expiration?
Published 23 July 7 7:22 AM | SSQA.net
declare @name nchar ( 100 ) SET @name = '<LoginName' SELECT LOGINPROPERTY ( @name , 'PasswordLastSetTime' ) AS PasswordLastSetTime , LOGINPROPERTY ( @name , 'IsExpired' ) AS IsExpiried , LOGINPROPERTY ( @name , 'IsLocked'...
Filed under: , , , ,