@adriandupre I just put together this extension attribute that returns
if the root password is set or not. #!/bin/bash RESULT=$(sudo dscl .
-read /Users/root Password) if [[ $RESULT == "Password: ********" ]];
then echo "Root password set" elif [[ $R...