Quite an old thread but maybe someone can benefit from this:
Code:
for each _user where _userid = "JohnDoe"
delete _user.
end.
Code:
create _user.
assign _user._userid = "JohnDoe"
_user._password = decode ("mypassword")
_user.user-name = "John Doe"
I just did this because I had the same problem and I was searching google for how to decode and saw this thread. Didn't know root password so I deleted _user for root and created it again. Worked perfectly. Now I can get into the system using the new password I created for root.