Skip to main content
Nintex Community Menu Bar
Solved

Nintex: How to retrieve a user password expiry date

  • January 13, 2025
  • 2 replies
  • 26 views
  • Translate

Forum|alt.badge.img+7

I am using Nintex workflow in SharePoint 2016 on premise. Need to create a site workflow that shall query all users in our Active Directory (AD) and send them a notification letting them know that their password shall expire in 10 days from the expiry date.

I am looking into “Query User profile” action item. Need to know how to query AD to retrieve password expiry information.

 

Thanks in advance.

 

Regards,

 

Mayank Shyam

Best answer by SimonMuntz

Hi ​@guru2000,

Unfortunately, AD doesn’t make this easy. The only attribute they give you is when the password was last set. To make things worse, it is in Windows FILETIME value , which is measured in 100-nanosecond intervals

Example: 131166582658295684

This has to be divided by 10,000,000 as there are 10,000,000 FILETIME units per second, which equals 13116658265.8295684

We then have to deduct 11644473600 to allow for the difference between the Windows File value Epoch and the Unix Epoch. The output will be a UTC UNIX time stamp: 1462184665.8295684

You then use a convert date action to convert to a human readable date.

 

  • Start:

    • Input a Unix timestamp value, such as 1672531200 (corresponds to 01/01/2023 00:00:00 UTC).
  • Set Workflow Variables:

    • EpochDate = 1/1/1970 00:00:00.
  • Add Time:

    • Add the value of UnixTimestamp as seconds to EpochDate.
  • Store the Result:

    • Save the result in ConvertedDate.
  • Output:

    • Use an email, log, or SharePoint field update to display the converted human-readable date.

Once you know when the password was set, you can then add the company policy for password expiry, say 90 days to work out when the password will expire.

View original
Did this topic help you find an answer to your question?

2 replies

SimonMuntz
Nintex Employee
Forum|alt.badge.img+22
  • Nintex Employee
  • 2464 replies
  • Answer
  • January 16, 2025

Hi ​@guru2000,

Unfortunately, AD doesn’t make this easy. The only attribute they give you is when the password was last set. To make things worse, it is in Windows FILETIME value , which is measured in 100-nanosecond intervals

Example: 131166582658295684

This has to be divided by 10,000,000 as there are 10,000,000 FILETIME units per second, which equals 13116658265.8295684

We then have to deduct 11644473600 to allow for the difference between the Windows File value Epoch and the Unix Epoch. The output will be a UTC UNIX time stamp: 1462184665.8295684

You then use a convert date action to convert to a human readable date.

 

  • Start:

    • Input a Unix timestamp value, such as 1672531200 (corresponds to 01/01/2023 00:00:00 UTC).
  • Set Workflow Variables:

    • EpochDate = 1/1/1970 00:00:00.
  • Add Time:

    • Add the value of UnixTimestamp as seconds to EpochDate.
  • Store the Result:

    • Save the result in ConvertedDate.
  • Output:

    • Use an email, log, or SharePoint field update to display the converted human-readable date.

Once you know when the password was set, you can then add the company policy for password expiry, say 90 days to work out when the password will expire.

Translate

MillaZ
Nintex Employee
Forum|alt.badge.img+21
  • Nintex Employee
  • 671 replies
  • January 20, 2025

Hi ​@guru2000 
Has this response helped answer your question? 

Translate

Reply


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie Settings