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.
Hi LesFerch,
I think I found the solution using your own script. I set an already expired date DateAdded = "01/05/2022 and it removed all the links on a PC Test. Tomorrow I try on the production PDL Domain PC where I have 12 user profiles. I will update you.
Thank you
Do you have the solution to delete sites entered by mistake in mixed case?
If you only have a few profiles to fix, just load them manually in Notepad and edit the URL to lowercase. If you have a lot of profiles to fix, let me know and I'll either modify the existing script to correct those entries or make you a separate fix script.
Doing a deletion via a script will require code that works with the JSON format, so it's easier to correct the mixed case entry with a simple search and replace.
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
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.
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