
Announcements
I have a power pages portal where users login with a local password, I want to make it so that the passwords reset every 90 days and they need to update it to a new one, is there a way to do this? It would also be nice if I could expire the invitation codes after a set amount of time as well.
Hello @FGRODRIGUEZ
Implementing Password Expiration:
• Power Pages doesn’t natively support a direct feature to force password resets every 90 days. However, you can achieve this by using a Power Automate flow.
• Create a flow in Power Automate that checks the modifiedon date of the user’s password (stored in the Dataverse) and sends a notification to the user to change their password if it’s been 90 days.
• Additionally, you can customize the login process to check the last password change date and prompt for a password reset if needed. (This would require some code most likely)
2. Expire Invitation Codes:
• For managing the expiration of invitation codes, you can use a similar approach. You can set up a custom field to track the creation or sent date of an invitation code.
• Use a scheduled Power Automate flow to regularly check this date and mark the invitation codes as expired after the set amount of time.