looks like your $4 needs to be $3
looks like your $4 needs to be $3
Success! This resolved my issued and thank you SO very much!!
looks like your $4 needs to be $3
Not to quibble but using $NF instead of $4 would work better since it grabs the last field and will work in macOS Ventura or Sonoma.
Not to quibble but using $NF instead of $4 would work better since it grabs the last field and will work in macOS Ventura or Sonoma.
Thank you for this additional suggestion!
So, just been looking for something, but this one in Sonoma anyways, doesn't seem to work.
I get "TouchIDEnabled" even though it's off.
Rebooted and ran two more recons, same result.
Anyone reporting otherwise? I double-checked TouchID setup on my test Mac and it's definitely off.
So, just been looking for something, but this one in Sonoma anyways, doesn't seem to work.
I get "TouchIDEnabled" even though it's off.
Rebooted and ran two more recons, same result.
Anyone reporting otherwise? I double-checked TouchID setup on my test Mac and it's definitely off.
OK, was helped on MacAdmins, and got this nifty piece.
Works well, if you're looking to see if Touch ID has been actually setup.
Kudos to @franton for the code 🙏
#!/bin/zsh
touchIDstatus=$( /usr/bin/bioutil -s -c | /usr/bin/awk 'NR==1{ print }' | /usr/bin/tr -d '\\t' )
if [[ "$touchIDstatus" == *"no fingerprints"* ]];
then
echo "<result>Not configured</result>"
else
echo "<result>$touchIDstatus</result>"
fi