TS=`date`
PW=`niutil -read / /users/$1 | grep '^passwd: ' | awk '{print $2}'`
echo Current Password: $PW
echo $PW | grep '^*' > /dev/null
if [ $? -eq 1 ]; then
  PW=`echo $PW | awk '{print "*DQ*" $1}'`
  echo New Password: $PW
  niutil -createprop / /users/$1 passwd $PW
  echo $1 $TS >> disabled
fi
