Reset local password using background script - ServiceNow The next thing I tried was to reset password of a user who doesn't have scoped app privileges The background script allows me to reset password, however that password doesn't work when I try to login to the user's account
Useful ServiceNow Scripts Scripting Examples - SN Pro Tips Copy the snippet you need, paste it into the right script field on your instance (background script, business rule, script include, client script, etc ), replace any placeholder values, and run
Set password of user created with Scripted API in Service now I am new to the Service now and trying to build a Client Web-app with Service Now My requirement is to register a user in Service Now using my web app I have tried to do so with Table API and Sc
How to get encrypted Password in decrypted Format ServiceNow Encrypter = new GlideEncrypter(), grBasicAuthProfile = new GlideRecord('sys_auth_profile_basic'); grBasicAuthProfile get('cf1f0fe44705b1100d901d98036d43a7'); decryptedPass = Encrypter decrypt(encryptedPass); gs print(decryptedPass); Sorry, you do not have permission to read comments
How to use Password Properties — SNow Underground If you need to get around this security limitation, you can easily create a global script include wrapper for GlideEncrypter, and then just call that from your scoped app