Add URL for more than 30 days under Internet Explorer mode pages under Edge Browser with users signed in /non local mode

2 min read 23-10-2024
Add URL for more than 30 days under Internet Explorer mode pages under Edge Browser with users signed in /non local mode

When working with Microsoft Edge, particularly in Internet Explorer (IE) mode, users may encounter limitations when it comes to adding URLs that persist longer than 30 days. This can be particularly frustrating for those relying on legacy applications or websites that require Internet Explorer. In this article, we'll explore how to add URLs for more than 30 days while using Edge's IE mode, regardless of whether users are signed in or operating in non-local mode.

Understanding the Problem

The original scenario you provided can be summarized as follows: "How can users add URLs for more than 30 days in Internet Explorer mode on the Edge browser, regardless of whether they are signed in or using non-local mode?"

Here’s a simplified version of the scenario:

"How can I add URLs in Internet Explorer mode on Edge for more than 30 days for both signed-in users and those not in local mode?"

Steps to Configure URL Persistence in IE Mode

To extend the URL retention period beyond the default 30 days in Edge’s IE mode, follow these steps:

  1. Open Edge Settings:

    • Click on the three dots (menu) in the upper right corner of the Edge browser.
    • Select "Settings."
  2. Navigate to Default Browser:

    • In the settings menu, find the “Default browser” section.
  3. Enable Internet Explorer Mode:

    • Ensure that the "Allow sites to be reloaded in Internet Explorer mode" is enabled.
  4. Add URLs to the IE Mode Site List:

    • To do this, you need to create an XML file that specifies which websites should open in IE mode.
    • An example XML structure for your site list might look like this:
    <?xml version="1.0" encoding="utf-8"?>
    <site-list version="1.0">
        <site url="http://example.com" compatibility="IE7" />
        <site url="http://example2.com" compatibility="IE11" />
    </site-list>
    
  5. Import the Site List:

    • Go back to the "Settings" menu and click on "Site list for Internet Explorer mode."
    • Select "Import" to upload the XML file you just created.
  6. Use Group Policy or Registry for Longer URL Persistence:

    • For organizations using Group Policy, you can set specific policies that govern how long URLs remain active.
    • If you’re not using Group Policy, consider creating a registry key. Open the Registry Editor and navigate to:
      HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge
      
    • Create or modify the SitePerProcess DWORD value to a higher limit.
  7. Restart Edge:

    • After making these changes, restart Microsoft Edge for the new settings to take effect.

Practical Example

Let's say you have an internal corporate application accessible only through Internet Explorer. By following the steps above, you can create a persistent link to this application in Edge's IE mode, allowing employees to access it seamlessly beyond the typical 30-day limitation. This is essential for users who are not in local mode but still need access to legacy web applications.

Conclusion

Adding URLs for more than 30 days in Internet Explorer mode on Microsoft Edge is crucial for users relying on legacy systems. By following the outlined steps, organizations can ensure that their employees maintain uninterrupted access to essential websites. Remember to check Microsoft's documentation for the most current information on IE mode and its features.

Additional Resources

By utilizing these techniques, you can enhance productivity and ensure a smoother transition for users working with legacy applications.