PW=`niutil -read / /users/$1 | grep '^passwd: ' | awk '{print $2}'`
echo $PW | grep '^*DQ*' > /dev/null
if [ $? -eq 0 ]; then
  PW=`echo $PW | sed 's/^....//'`
  niutil -createprop / /users/$1 passwd $PW
fi
