Posted on 09-05-2019 07:41 AM
Is there a way to allow a FV approved user to unlock the disk but NOT automatically log them in using their AD Credentials?
the reason I ask is because i have some of our MBP configured so that the login credentials supplied at login page are used to initiate the wireless connection and THEN sign them in with their AD credentials , however FV just logs them in and therefore they are not connected to the wireless and then have to initiate the connection or else they have to then log out and sign in to connect the wireless then the AD logon.
how can i get the users to unlock the disk but NOT log them into the OS ?
Solved! Go to Solution.
Posted on 09-05-2019 07:48 AM
Create a Script with this command:
sudo defaults write /Library/Preferences/com.apple.loginwindow DisableFDEAutoLogin -bool YES
Then have a Policy that runs that script once per computer.
Posted on 09-05-2019 07:48 AM
Create a Script with this command:
sudo defaults write /Library/Preferences/com.apple.loginwindow DisableFDEAutoLogin -bool YES
Then have a Policy that runs that script once per computer.
Posted on 09-05-2019 07:59 AM
follow and save for later
Posted on 09-17-2019 03:00 PM
Fixed it for us!
Posted on 05-28-2020 01:47 PM
anyone figure out how to do this via a config profile?
Posted on 05-28-2020 04:41 PM
Create Use a custom configuration profile.
com.apple.loginwindow.plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>DisableFDEAutoLogin</key>
<true/>
</dict>
</plist>