Summary
How to delete the Keychains for a user without deleting the system Keychains.
Environment
MacOS
Directions
This can fix a lot of Keychain issues but will remove ALL saved passwords in Keychain.
- Have the user log in to their account.
- Open up Terminal.
- Change to the Keychains directory:
cd /Users/user/Library/Keychains
- Delete all the regular files:
rm -rf ./*
- Delete the remaining files that start with .f:
rm -rf .f*
- Log out:
exit
- Reboot the machine.