I have 2 users enabled with FileVault 2 but only one of them shows up when the computer is started/restarted !!!
system is Monterey
why is only 1 of the 2 users available?
the user that doesn't show up is hidden with the following script so it doesn't show up in the regular login window, but I don't see how this would effect the FV2 screen. I don't see this on pre-Monterey computers that run this script (if it is the cause of the script).
#!/bin/sh
########################### Hide from login screen
# Hide a User Account from the Login Screen of OS X
# dscl . create /Users/joey IsHidden 1
defaults write /Library/Preferences/com.apple.loginwindow HiddenUsersList -array-add joey
# Unhide a User Account from the Login Screen of OS X
# dscl . create /Users/joey IsHidden 0
# defaults delete /Library/Preferences/com.apple.loginwindow HiddenUsersList
exit $?



