Question
Changing a user password in a service
Can I change a user's password from a service?
I have tried this.
var newPassword="pickles"
var params = {
data: newPassword
};
// result: STRING
var encryptedPassword = Resources["EncryptionServices"].Encrypt({
data: newPassword
});
Users["testuser1"].password=encryptedPassword
But the property password does not exist.

