How to Extend IE mode more than 30 days

Anonymous
2022-03-03T10:10:12+00:00

After adding URL's in IE mode pages it has a expire days of 30. I would like to know how to extend more than 30 days as per InternetExplorerIntegrationLocalSiteListExpirationDays policy.

Please help.

Microsoft Edge | Other | Windows 10

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

167 answers

Sort by: Oldest
  1. Les Ferch 10,361 Reputation points Volunteer Moderator
    2022-06-16T14:50:25+00:00

    In case you still have time and desire you could also integrate the protocol https://www.x****

    No need. It only prepends "http://" if nothing has been specified. The Edge Preferences file requires a fully qualified URL in order for Delete (Trash can icon) to work.

    For https pages, simply enter the full URL in the AddSites variable. Example:

    AddSites = "https://www.site1.com/|https://www.site2.com/"

    Was this answer helpful?

    4 people found this answer helpful.
    0 comments No comments
  2. Anonymous
    2022-06-16T15:47:49+00:00

    In case you still have time and desire you could also integrate the protocol https://www.x****

    No need. It only prepends "http://" if nothing has been specified. The Edge Preferences file requires a fully qualified URL in order for Delete (Trash can icon) to work.

    For https pages, simply enter the full URL in the AddSites variable. Example:

    AddSites = "https://www.site1.com/|https://www.site2.com/"

    Just perfect!!! She is very professional.

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments
  3. Anonymous
    2022-06-17T13:15:26+00:00

    Hi LesFerch,

    I noticed a strange behavior of the script. If I use the AddSite function the first address becomes non-erasable and at the end it inserts "/" e.g. http://localServer/register/login.aspx AddSite >= http://localServer/register/login.aspx/ (not working ie mode)

    Thanks

    Was this answer helpful?

    0 comments No comments
  4. Les Ferch 10,361 Reputation points Volunteer Moderator
    2022-06-17T14:24:08+00:00

    I noticed a strange behavior of the script. If I use the AddSite function the first address becomes non-erasable and at the end it inserts "/" e.g. http://localServer/register/login.aspx AddSite >= http://localServer/register/login.aspx/ (not working ie mode)

    The script adds the trailing slash (if it's missing) because you won't be able to delete the entry otherwise. The reason this particular entry cannot be deleted is the mixed case. Edge converts all entries to lowercase when manually entered, so the script should do the same. I have modified the script to convert the entry to lowercase before it's added.

    Was this answer helpful?

    0 comments No comments
  5. Anonymous
    2022-06-17T16:00:17+00:00

    Hi LesFerch,

    AddSite = LCase(aAddSites(i)) has corrected the strange behavior of mixed case text, now the sites are erasable. Do you have the solution to delete sites entered by mistake in mixed case?

    your script gets better every day!

    Thank you

    Was this answer helpful?

    0 comments No comments