- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-27-2015 11:31 AM
I can create objects, and reset the passwords, but I do not know how to set the password not required field to false?
Solved! Go to Solution.
- Labels:
-
Scripting and Coding
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-27-2015 04:30 PM
You can set the userAccountControl AD property (with Update AD Object activity or Run Powershell) so that the 544 - PASSWD_NOTREQD flag is not set.
We normally set the userAccountControl of each new account to this:
- 8389120 - Password Expired, Normal Account

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-27-2015 12:22 PM
Hi Steven,
I don't see any field OOB "Password not required". However you can set the target fields with the below syntax in import sets.
target.u_password = 'true'; //Assuming u_password is the column name of the target field at target table.
http://wiki.servicenow.com/index.php?title=Creating_New_Transform_Maps#gsc.tab=0
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-27-2015 12:26 PM
In AD, follow this cmd.exe command: net user joe /passwordreq:no
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-27-2015 04:30 PM
You can set the userAccountControl AD property (with Update AD Object activity or Run Powershell) so that the 544 - PASSWD_NOTREQD flag is not set.
We normally set the userAccountControl of each new account to this:
- 8389120 - Password Expired, Normal Account