Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Oyonax/ba59ae566df01310597ade8606d361df to your computer and use it in GitHub Desktop.
Save Oyonax/ba59ae566df01310597ade8606d361df to your computer and use it in GitHub Desktop.
Remove and re-add a user from MacOS FileVault full disk encryption
When a users' password has been changed on the Active Directory, you can use this procedure to remove the user from FileVault and re-add it with his new password.
sudo fdesetup remove -user username
sudo fdesetup add -usertoadd username
Enter the user name: adminusername
Enter the password for user 'adminusername':
Enter the password for the added user 'username':
Where username is the username of the user you want to remove and re-add.
And adminusername is the username of an administrative user.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment