Just had this happen to me today...
Trying to launch the Accounts system preference pane produces the same error in the Console log (as Robert Blade listed):
NSConcreteMutableAttributedString initWithString:: nil value
Apparently, I had three guest accounts:
- Guest
- Guest1
- Guest2
The first one is fine, but 2 and 3 should not be there and not sure how they were created - possibly related to what Cralos mentioned, since I recently done something simliar.
To determine if this is your issue, you can check your accounts by entering this in Terminal:
dscl . -list /Users
To remove the additional guest accounts, this is what I had to do in Terminal:
sudo dscl . -delete /Users/Guest1
sudo dscl . -delete /Users/Guest2
If the above doesn't work, you could also try:
sudo dscl localhost -delete /Local/Default/Users/Guest1
sudo dscl
localhost
-delete
/Local/Default/
Users/Guest2
After deleting the additional guest accounts, I was able to successfully get into the Accounts system preference pane.