This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Password Last Set on Web Console

We have migrate to ARS 7 and do not want anymore to deploy the MMC to user/operators. They should only use the web console.

I've a request from operators: they want the equivalent of the "Additional account Info" tab to the web console.

I've customize the User Properties Form by adding a new Advanced Account info tab and adding different entry on it.

Now I'm stuck on how to add the Password Last Set property. Any help on how to do it would be greatly appreciated.

PS: I've found an old post about this on the forum but the link provided on the resolution is no longer available.

Regards

Parents
  • Active Roles computes the "Password Last Set" field based on the PWDLastSet attribute.


    This value is stored in Integer time format, also known as "LDAP/FILETIME".


    For example, 131167085140000000 is the current time of Fri, 26 Aug 2016 18:08:34 GMT

    In order to display this in a friendly format, you would have to script a solution and store the result in a virtual attribute as a string. This virtual attribute would then be displayed.

    The script itself should be fairly simple (unless you want to get into fancy time-zone and DST conversions - that can get pretty messy), and you can have it triggered by a Workflow so that updates to the PWDLastSet automatically fire off the script, which in turn updates your virtual attribute. You might also have to run a script to populate existing Users with a value for the new attribute. PowerShell has some solid time conversion methods, and would be a good choice for this implementation.

Reply
  • Active Roles computes the "Password Last Set" field based on the PWDLastSet attribute.


    This value is stored in Integer time format, also known as "LDAP/FILETIME".


    For example, 131167085140000000 is the current time of Fri, 26 Aug 2016 18:08:34 GMT

    In order to display this in a friendly format, you would have to script a solution and store the result in a virtual attribute as a string. This virtual attribute would then be displayed.

    The script itself should be fairly simple (unless you want to get into fancy time-zone and DST conversions - that can get pretty messy), and you can have it triggered by a Workflow so that updates to the PWDLastSet automatically fire off the script, which in turn updates your virtual attribute. You might also have to run a script to populate existing Users with a value for the new attribute. PowerShell has some solid time conversion methods, and would be a good choice for this implementation.

Children
No Data