Other issues or features related to Microsoft Edge on Windows 10
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
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.
Other issues or features related to Microsoft Edge on 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.
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.
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?
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
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)
That would be excellent - I’ve been looking into checking for and then inserting entries, but inserting text is a bit trickier than overwriting.☹️