TouchID Status Not Working with macOS Sonoma

Starlord
New Contributor II

Ever since we upgraded to macOS Sonoma, the following script is no longer working that is used as an Extension Attribute within Jamf Pro to report if TouchID is Enabled and Disabled:

#!/bin/sh

TouchIDStatus=`bioutil -rs | grep functionality | awk '{print $4}'`
if [[ "$TouchIDStatus" = "0" ]]; then
result="TouchIDDisabled"
elif [[ "$TouchIDStatus" = "1" ]]; then
result="TouchIDEnabled"
else
result="Error"
fi
echo "<result>$result</result>"

What I see for TouchID is Error.

Any advice is very much appreciated!

1 ACCEPTED SOLUTION

jamf-42
Valued Contributor II

looks like your $4 needs to be $3 

View solution in original post

4 REPLIES 4

jamf-42
Valued Contributor II

looks like your $4 needs to be $3 

Starlord
New Contributor II

Success! This resolved my issued and thank you SO very much!!

sdagley
Esteemed Contributor II

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.

Starlord
New Contributor II

Thank you for this additional suggestion!