<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question Re: Regarding the Password Expiration Reminder Feature in Community Central forum</title>
    <link>https://www.servicenow.com/community/community-central-forum/regarding-the-password-expiration-reminder-feature/m-p/3412192#M5227</link>
    <description>&lt;P&gt;Password Expiration and Reminder Configuration in ServiceNow&lt;BR /&gt;============================================================&lt;/P&gt;&lt;P&gt;Overview&lt;BR /&gt;--------&lt;BR /&gt;The property `pwd_reset.enable.password_expiration_reminder` enables password expiration reminders, but it only works when password expiration is actively managed through a credential store that supports expiration metadata. For standard local authentication, this feature does not function by default.&lt;/P&gt;&lt;P&gt;How It Works&lt;BR /&gt;-------------&lt;BR /&gt;ServiceNow manages authentication via Identity Providers (IdPs) and Credential Stores:&lt;BR /&gt;- Local Credential Store: Uses `sys_user.password` and does not include built-in expiration logic.&lt;BR /&gt;- External Credential Stores: LDAP, Azure AD, Okta, etc., can manage expiration and notify users externally.&lt;BR /&gt;- The reminder feature depends on having a **Managed Credential Store** with password expiration data.&lt;/P&gt;&lt;P&gt;Limitations with Local Credential Store&lt;BR /&gt;----------------------------------------&lt;BR /&gt;If you rely on local authentication (no external IdP):&lt;BR /&gt;- There is no built-in password expiration or expiry date field.&lt;BR /&gt;- The property `pwd_reset.enable.password_expiration_reminder` does not trigger notifications.&lt;BR /&gt;- Custom logic is needed to simulate expiration and send reminders.&lt;/P&gt;&lt;P&gt;Approaches&lt;BR /&gt;-----------&lt;/P&gt;&lt;P&gt;Option 1 – Use Password Reset (PRF) with Managed Store&lt;BR /&gt;------------------------------------------------------&lt;BR /&gt;1. Install the **Password Reset** plugin (`com.snc.password_reset`).&lt;BR /&gt;2. Set the property:&lt;BR /&gt;pwd_reset.enable.password_expiration_reminder = true&lt;BR /&gt;3. Configure a **Managed Credential Store**:&lt;BR /&gt;- Go to: *Password Reset → Credential Stores → New*&lt;BR /&gt;- Define the store (local or external like LDAP/Azure AD).&lt;BR /&gt;4. Add an **Expiration Policy** under *Password Reset → Expiration Policies*.&lt;BR /&gt;5. Set up email notifications to alert users before expiration.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt; Works with both local and external credential stores.&lt;/P&gt;&lt;P&gt;Option 2 – Custom Scheduled Job for Local Users (No Plugin)&lt;BR /&gt;-----------------------------------------------------------&lt;BR /&gt;1. Add a field to `sys_user`: `u_password_expiration_date` (Date/Time).&lt;BR /&gt;2. Create a Scheduled Script Job:&lt;BR /&gt;```javascript&lt;BR /&gt;var gr = new GlideRecord('sys_user');&lt;BR /&gt;gr.addQuery('u_password_expiration_date', '&amp;lt;=', gs.daysAgoStart(-5));&lt;BR /&gt;gr.addQuery('active', true);&lt;BR /&gt;gr.query();&lt;BR /&gt;while (gr.next()) {&lt;BR /&gt;gs.eventQueue('custom.password.expiration.reminder', gr, gr.email, '');&lt;BR /&gt;}&lt;BR /&gt;```&lt;BR /&gt;3. Create an Email Notification triggered by `custom.password.expiration.reminder`.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":gear:"&gt;⚙️&lt;/span&gt; Manual but effective for on-prem/local-only users.&lt;/P&gt;&lt;P&gt;Option 3 – Integrate with External Identity Source&lt;BR /&gt;---------------------------------------------------&lt;BR /&gt;If your org uses LDAP, Azure AD, Okta, or Ping:&lt;BR /&gt;- Delegate expiration and reminders to the IdP.&lt;BR /&gt;- Configure SSO (SAML/OIDC) in ServiceNow.&lt;BR /&gt;- Manage expiration policies in the IdP itself.&lt;/P&gt;&lt;P&gt;This is the **recommended enterprise solution** for large environments.&lt;/P&gt;&lt;P&gt;Summary&lt;BR /&gt;--------&lt;BR /&gt;| Approach | Requires Plugin | Works for Local Users | Auto Expiration | Reminder Supported | Recommended For |&lt;BR /&gt;|-----------|----------------|-----------------------|-----------------|--------------------|-----------------|&lt;BR /&gt;| Password Reset (Managed Store) | &lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt; Yes | &lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt; Yes | &lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt; Yes | &lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt; Yes | Full ServiceNow control |&lt;BR /&gt;| Custom Script Job | &lt;span class="lia-unicode-emoji" title=":cross_mark:"&gt;❌&lt;/span&gt; No | &lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt; Yes | &lt;span class="lia-unicode-emoji" title=":gear:"&gt;⚙️&lt;/span&gt; Manual | &lt;span class="lia-unicode-emoji" title=":gear:"&gt;⚙️&lt;/span&gt; Custom | Local-only environments |&lt;BR /&gt;| External Identity Provider | &lt;span class="lia-unicode-emoji" title=":cross_mark:"&gt;❌&lt;/span&gt; No | &lt;span class="lia-unicode-emoji" title=":cross_mark:"&gt;❌&lt;/span&gt; No | &lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt; Yes | &lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt; Yes | Enterprise SSO environments |&lt;/P&gt;&lt;P&gt;Recommendation&lt;BR /&gt;---------------&lt;BR /&gt;- For enterprise users: manage expiration in your **IdP** (Azure AD / LDAP).&lt;BR /&gt;- For standalone instances: install **Password Reset** and enable reminders.&lt;BR /&gt;- For isolated setups: use a **custom scheduled script**.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 24 Oct 2025 09:59:15 GMT</pubDate>
    <dc:creator>MaxMixali</dc:creator>
    <dc:date>2025-10-24T09:59:15Z</dc:date>
    <item>
      <title>Regarding the Password Expiration Reminder Feature</title>
      <link>https://www.servicenow.com/community/community-central-forum/regarding-the-password-expiration-reminder-feature/m-p/3411992#M5213</link>
      <description>&lt;P&gt;I want to set an expiration date for passwords and notify users when the expiration date approaches. From my research, ServiceNow has a property called “pwd_reset.enable.password_expiration_reminder.” Setting this to true seems to enable the feature.&lt;BR /&gt;However, it seems the reminder feature doesn't work with the local credential store. It appears we need to create an external credential store. Furthermore, creating a credential store seems to require installing a separate spoke. Is this understanding correct?&lt;/P&gt;&lt;P&gt;If it's possible to set password expiration and create a reminder feature using only standard functionality without installing plugins, I would appreciate your guidance.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Oct 2025 07:49:58 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/regarding-the-password-expiration-reminder-feature/m-p/3411992#M5213</guid>
      <dc:creator>SotaT</dc:creator>
      <dc:date>2025-10-24T07:49:58Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding the Password Expiration Reminder Feature</title>
      <link>https://www.servicenow.com/community/community-central-forum/regarding-the-password-expiration-reminder-feature/m-p/3412064#M5216</link>
      <description>&lt;P&gt;ServiceNow – Password Expiration and Reminder Configuration&lt;/P&gt;&lt;P&gt;Question Summary&lt;BR /&gt;----------------&lt;BR /&gt;You want to set an expiration date for user passwords and notify users when their password expiration date approaches. You found the property “pwd_reset.enable.password_expiration_reminder” but noticed it doesn’t seem to work with the local credential store. You’re asking whether it’s necessary to create an external credential store or install an additional spoke.&lt;/P&gt;&lt;P&gt;Detailed Answer&lt;BR /&gt;----------------&lt;BR /&gt;1. **Property Overview**&lt;BR /&gt;- The property **pwd_reset.enable.password_expiration_reminder** (boolean) enables password expiration reminder notifications.&lt;BR /&gt;- When set to **true**, it allows ServiceNow to send reminders to users whose passwords are about to expire — **only if password expiration is configured and managed via the Credential Store**.&lt;/P&gt;&lt;P&gt;2. **Local Credential Store Limitation**&lt;BR /&gt;- The **local ServiceNow credential store** (where users authenticate directly via the ServiceNow login page) does **not** natively support password expiration or reminders.&lt;BR /&gt;- Password expiration and enforcement policies are **not managed** within the local user table (`sys_user`) for standard ServiceNow authentication.&lt;/P&gt;&lt;P&gt;3. **External Credential Store Requirement**&lt;BR /&gt;- To use password expiration reminders, ServiceNow expects integration with an **external credential store** (e.g., LDAP, Azure AD, Okta, or another Identity Provider) that manages password policies, including expiration.&lt;BR /&gt;- ServiceNow can then read and relay expiration data from that external system.&lt;/P&gt;&lt;P&gt;4. **Credential Store Setup**&lt;BR /&gt;- External credential stores are defined in the **Credential Store framework** (introduced for password resets and identity management).&lt;BR /&gt;- The credential store configuration may require installation of the **“Password Reset” plugin** or **Credential Store Spoke**, depending on your version.&lt;/P&gt;&lt;P&gt;Example plugins:&lt;BR /&gt;- **Password Reset (com.glideapp.password_reset)** → provides core password management functionality.&lt;BR /&gt;- **Credential Store Spoke** → enables integration with third-party identity systems.&lt;/P&gt;&lt;P&gt;5. **Without Installing Additional Plugins**&lt;BR /&gt;- ServiceNow **does not natively** handle password expiration reminders for local user accounts out of the box.&lt;BR /&gt;- However, you can simulate similar behavior using **scheduled jobs and notifications**:&lt;BR /&gt;- Add a custom **“password_expiration_date”** field on the `sys_user` table.&lt;BR /&gt;- Use a **Scheduled Script Execution** to check for users whose password expiration date is within X days.&lt;BR /&gt;- Send an **email notification** to those users via standard notification templates.&lt;/P&gt;&lt;P&gt;Example pseudo-script:&lt;BR /&gt;```javascript&lt;BR /&gt;var gr = new GlideRecord('sys_user');&lt;BR /&gt;gr.addQuery('active', true);&lt;BR /&gt;gr.addQuery('password_expiration_date', '&amp;lt;=', gs.daysAgoStart(-7)); // within next 7 days&lt;BR /&gt;gr.query();&lt;BR /&gt;while (gr.next()) {&lt;BR /&gt;gs.eventQueue('password.expiration.reminder', gr, gr.email, '');&lt;BR /&gt;}&lt;BR /&gt;```&lt;/P&gt;&lt;P&gt;6. **Recommendation**&lt;BR /&gt;- If your organization uses **SSO / External Authentication**, handle password expiration in that identity provider.&lt;BR /&gt;- If using local ServiceNow authentication, you can only **customize** the expiration logic through scripting, as no OOB configuration exists for reminders without a credential store.&lt;/P&gt;&lt;P&gt;Summary&lt;BR /&gt;-------&lt;BR /&gt;- The property `pwd_reset.enable.password_expiration_reminder` works **only with external credential stores**.&lt;BR /&gt;- For **local accounts**, password expiration and reminders must be custom-built via scripts and notifications.&lt;BR /&gt;- Installing the **Password Reset plugin** or **Credential Store Spoke** enables the official, supported approach.&lt;/P&gt;&lt;P&gt;Best Practice&lt;BR /&gt;--------------&lt;BR /&gt;- For enterprise environments, delegate password management to **SSO or external ID providers** (Azure AD, Okta, LDAP).&lt;BR /&gt;- Avoid storing or managing passwords directly in ServiceNow where possible for security and compliance reasons.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Oct 2025 08:36:56 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/regarding-the-password-expiration-reminder-feature/m-p/3412064#M5216</guid>
      <dc:creator>MaxMixali</dc:creator>
      <dc:date>2025-10-24T08:36:56Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding the Password Expiration Reminder Feature</title>
      <link>https://www.servicenow.com/community/community-central-forum/regarding-the-password-expiration-reminder-feature/m-p/3412095#M5220</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/795122"&gt;@SotaT&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;here is a KB from ServiceNow with custom solution&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.servicenow.com/kb?id=kb_article_view&amp;amp;sysparm_article=KB0854574" target="_blank" rel="noopener"&gt;Force Password Reset 90 Days After Last Change&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;the docs link does say this&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AnkurBawiskar_0-1761297584890.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/478632iC3D9B358402F76FE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AnkurBawiskar_0-1761297584890.png" alt="AnkurBawiskar_0-1761297584890.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":light_bulb:"&gt;💡&lt;/span&gt; If my response helped, please mark it as correct &lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt; and close the thread &lt;span class="lia-unicode-emoji" title=":locked:"&gt;🔒&lt;/span&gt;— this helps future readers find the solution faster! &lt;span class="lia-unicode-emoji" title=":folded_hands:"&gt;🙏&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Oct 2025 09:19:51 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/regarding-the-password-expiration-reminder-feature/m-p/3412095#M5220</guid>
      <dc:creator>Ankur Bawiskar</dc:creator>
      <dc:date>2025-10-24T09:19:51Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding the Password Expiration Reminder Feature</title>
      <link>https://www.servicenow.com/community/community-central-forum/regarding-the-password-expiration-reminder-feature/m-p/3412118#M5221</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/795122"&gt;@SotaT&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;do you have users brought via LDAP or you have local accounts as well?&lt;/P&gt;</description>
      <pubDate>Fri, 24 Oct 2025 09:16:10 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/regarding-the-password-expiration-reminder-feature/m-p/3412118#M5221</guid>
      <dc:creator>Ankur Bawiskar</dc:creator>
      <dc:date>2025-10-24T09:16:10Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding the Password Expiration Reminder Feature</title>
      <link>https://www.servicenow.com/community/community-central-forum/regarding-the-password-expiration-reminder-feature/m-p/3412125#M5222</link>
      <description>&lt;P&gt;There are only local accounts. Only users manually created in sys_user.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Oct 2025 09:22:54 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/regarding-the-password-expiration-reminder-feature/m-p/3412125#M5222</guid>
      <dc:creator>SotaT</dc:creator>
      <dc:date>2025-10-24T09:22:54Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding the Password Expiration Reminder Feature</title>
      <link>https://www.servicenow.com/community/community-central-forum/regarding-the-password-expiration-reminder-feature/m-p/3412192#M5227</link>
      <description>&lt;P&gt;Password Expiration and Reminder Configuration in ServiceNow&lt;BR /&gt;============================================================&lt;/P&gt;&lt;P&gt;Overview&lt;BR /&gt;--------&lt;BR /&gt;The property `pwd_reset.enable.password_expiration_reminder` enables password expiration reminders, but it only works when password expiration is actively managed through a credential store that supports expiration metadata. For standard local authentication, this feature does not function by default.&lt;/P&gt;&lt;P&gt;How It Works&lt;BR /&gt;-------------&lt;BR /&gt;ServiceNow manages authentication via Identity Providers (IdPs) and Credential Stores:&lt;BR /&gt;- Local Credential Store: Uses `sys_user.password` and does not include built-in expiration logic.&lt;BR /&gt;- External Credential Stores: LDAP, Azure AD, Okta, etc., can manage expiration and notify users externally.&lt;BR /&gt;- The reminder feature depends on having a **Managed Credential Store** with password expiration data.&lt;/P&gt;&lt;P&gt;Limitations with Local Credential Store&lt;BR /&gt;----------------------------------------&lt;BR /&gt;If you rely on local authentication (no external IdP):&lt;BR /&gt;- There is no built-in password expiration or expiry date field.&lt;BR /&gt;- The property `pwd_reset.enable.password_expiration_reminder` does not trigger notifications.&lt;BR /&gt;- Custom logic is needed to simulate expiration and send reminders.&lt;/P&gt;&lt;P&gt;Approaches&lt;BR /&gt;-----------&lt;/P&gt;&lt;P&gt;Option 1 – Use Password Reset (PRF) with Managed Store&lt;BR /&gt;------------------------------------------------------&lt;BR /&gt;1. Install the **Password Reset** plugin (`com.snc.password_reset`).&lt;BR /&gt;2. Set the property:&lt;BR /&gt;pwd_reset.enable.password_expiration_reminder = true&lt;BR /&gt;3. Configure a **Managed Credential Store**:&lt;BR /&gt;- Go to: *Password Reset → Credential Stores → New*&lt;BR /&gt;- Define the store (local or external like LDAP/Azure AD).&lt;BR /&gt;4. Add an **Expiration Policy** under *Password Reset → Expiration Policies*.&lt;BR /&gt;5. Set up email notifications to alert users before expiration.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt; Works with both local and external credential stores.&lt;/P&gt;&lt;P&gt;Option 2 – Custom Scheduled Job for Local Users (No Plugin)&lt;BR /&gt;-----------------------------------------------------------&lt;BR /&gt;1. Add a field to `sys_user`: `u_password_expiration_date` (Date/Time).&lt;BR /&gt;2. Create a Scheduled Script Job:&lt;BR /&gt;```javascript&lt;BR /&gt;var gr = new GlideRecord('sys_user');&lt;BR /&gt;gr.addQuery('u_password_expiration_date', '&amp;lt;=', gs.daysAgoStart(-5));&lt;BR /&gt;gr.addQuery('active', true);&lt;BR /&gt;gr.query();&lt;BR /&gt;while (gr.next()) {&lt;BR /&gt;gs.eventQueue('custom.password.expiration.reminder', gr, gr.email, '');&lt;BR /&gt;}&lt;BR /&gt;```&lt;BR /&gt;3. Create an Email Notification triggered by `custom.password.expiration.reminder`.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":gear:"&gt;⚙️&lt;/span&gt; Manual but effective for on-prem/local-only users.&lt;/P&gt;&lt;P&gt;Option 3 – Integrate with External Identity Source&lt;BR /&gt;---------------------------------------------------&lt;BR /&gt;If your org uses LDAP, Azure AD, Okta, or Ping:&lt;BR /&gt;- Delegate expiration and reminders to the IdP.&lt;BR /&gt;- Configure SSO (SAML/OIDC) in ServiceNow.&lt;BR /&gt;- Manage expiration policies in the IdP itself.&lt;/P&gt;&lt;P&gt;This is the **recommended enterprise solution** for large environments.&lt;/P&gt;&lt;P&gt;Summary&lt;BR /&gt;--------&lt;BR /&gt;| Approach | Requires Plugin | Works for Local Users | Auto Expiration | Reminder Supported | Recommended For |&lt;BR /&gt;|-----------|----------------|-----------------------|-----------------|--------------------|-----------------|&lt;BR /&gt;| Password Reset (Managed Store) | &lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt; Yes | &lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt; Yes | &lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt; Yes | &lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt; Yes | Full ServiceNow control |&lt;BR /&gt;| Custom Script Job | &lt;span class="lia-unicode-emoji" title=":cross_mark:"&gt;❌&lt;/span&gt; No | &lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt; Yes | &lt;span class="lia-unicode-emoji" title=":gear:"&gt;⚙️&lt;/span&gt; Manual | &lt;span class="lia-unicode-emoji" title=":gear:"&gt;⚙️&lt;/span&gt; Custom | Local-only environments |&lt;BR /&gt;| External Identity Provider | &lt;span class="lia-unicode-emoji" title=":cross_mark:"&gt;❌&lt;/span&gt; No | &lt;span class="lia-unicode-emoji" title=":cross_mark:"&gt;❌&lt;/span&gt; No | &lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt; Yes | &lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt; Yes | Enterprise SSO environments |&lt;/P&gt;&lt;P&gt;Recommendation&lt;BR /&gt;---------------&lt;BR /&gt;- For enterprise users: manage expiration in your **IdP** (Azure AD / LDAP).&lt;BR /&gt;- For standalone instances: install **Password Reset** and enable reminders.&lt;BR /&gt;- For isolated setups: use a **custom scheduled script**.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Oct 2025 09:59:15 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/regarding-the-password-expiration-reminder-feature/m-p/3412192#M5227</guid>
      <dc:creator>MaxMixali</dc:creator>
      <dc:date>2025-10-24T09:59:15Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding the Password Expiration Reminder Feature</title>
      <link>https://www.servicenow.com/community/community-central-forum/regarding-the-password-expiration-reminder-feature/m-p/3412647#M5236</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi &lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/525693"&gt;@MaxMixali&lt;/a&gt;&amp;nbsp;- &lt;/SPAN&gt;&lt;SPAN&gt;please stop posting replies that are simply cut-and-pasted from ChatGPT. It doesn't help anyone.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Oct 2025 19:33:17 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/regarding-the-password-expiration-reminder-feature/m-p/3412647#M5236</guid>
      <dc:creator>Simon Hendery</dc:creator>
      <dc:date>2025-10-24T19:33:17Z</dc:date>
    </item>
  </channel>
</rss>

