Forked from TomCan/gist:8c5976d62523b57ddeb13705af54c45d
Created
April 23, 2020 11:32
-
-
Save Oyonax/ba59ae566df01310597ade8606d361df to your computer and use it in GitHub Desktop.
Remove and re-add a user from MacOS FileVault full disk encryption
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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