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: Newest
  1. Les Ferch 10,361 Reputation points Volunteer Moderator
    2022-06-16T13:49:09+00:00

    My plan would be to find the insertion point and then use 2 arrays to split the file and then combine these with the new entry (url,etc.), into a third array to be written back to the file?

    I'd really only be interested in checking if the entry already exists, so I was going to use your "date_added" search to create a function to perform a basic check for the url...

    Does this sound feasible, or would I be wasting my time?

    Actually, I got the URL add feature working this morning. I'm still doing some testing, but I'll try to post the updated script very soon.

    Was this answer helpful?

    3 people found this answer helpful.
    0 comments No comments
  2. Anonymous
    2022-06-16T13:28:53+00:00

    My plan would be to find the insertion point and then use 2 arrays to split the file and then combine these with the new entry (url,etc.), into a third array to be written back to the file?

    I'd really only be interested in checking if the entry already exists, so I was going to use your "date_added" search to create a function to perform a basic check for the url...

    Does this sound feasible, or would I be wasting my time?

    Was this answer helpful?

    0 comments No comments
  3. Deleted

    This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.


    Comments have been turned off. Learn more

  4. Anonymous
    2022-06-15T23:07:17+00:00

    BTW, here is the code I used for getting today's date and then converting and shortening it:-

    strDateTime = Now()

    Set objDateTime = CreateObject("WbemScripting.SWbemDateTime")
    Call objDateTime.SetVarDate(strDateTime, False)
    DateAdded = objDateTime.GetFileTime
    DateAdded = Left(DateAdded, 17)

    Was this answer helpful?

    0 comments No comments
  5. Anonymous
    2022-06-15T22:45:16+00:00

    That would be excellent - I’ve been looking into checking for and then inserting entries, but inserting text is a bit trickier than overwriting.☹️

    Was this answer helpful?

    0 comments No comments