Skip to main content
Question

Possible to hide "Password hint: (Recommended)" box?

  • March 24, 2021
  • 8 replies
  • 70 views

Forum|alt.badge.img+3

Our Security team has asked if the "Password hint: (Recommended)" box can be hidden on the password change window in System Preferences -> Users & Groups -> Change Password

If so, how? Haven't found any discussions here asking for this, and Google is no help. Thank you!

8 replies

Forum|alt.badge.img+9
  • Valued Contributor
  • March 24, 2021

How are you "managing" user passwords? do you use LDAP, AD, or something like that?


Forum|alt.badge.img+11
  • Contributor
  • March 25, 2021

@user-CimMKXfEHV , you can disable the hint feature with defaults write com.apple.loginwindow RetriesUntilHint -int 0.. Not sure if it hides the box though..


Forum|alt.badge.img+16
  • Honored Contributor
  • March 25, 2021

99% sure it doesn't hide the box or prevent users from adding a hint.. It will just keep it from showing up after failed attempts. And in the past it's been buggy as updated and upgrades in the past from Apple have broken it and then the next update from Apple fixes it..

C


Forum|alt.badge.img+3
  • Author
  • New Contributor
  • March 25, 2021

@walt We're authenticating against AD, but are in the process of moving to JAMF Connect.


Forum|alt.badge.img+16
  • Honored Contributor
  • March 25, 2021

@eliu01

You can build a config profile com.apple.loginwindow

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict> <key>{RetriesUntilHint</key> <integer>0</integer>
</dict>
</plist>


Forum|alt.badge.img+3
  • Author
  • New Contributor
  • March 25, 2021

@gachowski - does this disable the hint box on the password reset window shown in the original post, or only prevent password hints from appearing on the login screen? The "RetriesUntilHInt" string makes me think it's for the login screen.


Forum|alt.badge.img+16
  • Honored Contributor
  • March 25, 2021

Apple doesn't support disabling that window in your post ... The best solution is to keep the hint from showing on failed logins attempts usually that is what the Security teams want. or ... who cares what the hint is if you can't see it when you need it? : )

C


Forum|alt.badge.img+9
  • Valued Contributor
  • March 26, 2021

@eliu01 what we do is use AD + the Apple Kerberos SSO plugin, so to help prevent out of sync passwords we restrict the change password via Users & Groups and Security preferences. So that ultimately would prevent the user from changing their password and adding a password hint. you can also hide the Hint for the login window via a config profile.