Posted on 08-08-2024 04:30 AM
I am trying to setup managed favorites in Microsoft edge. can someone share a working plist for managed browsers in edge?
My basic requirement is to have few URLs in managed favorites and then few URLs in folders structure something like this:
url-Microsoft.com
url-Intune.microsoft.com
Jamf(folder)
url-id.jamf.com
url-jamfcloud.com
Internal(folder)
url-abc.com
Appreciate your help in advanced.
Solved! Go to Solution.
Posted on 08-12-2024 07:01 AM
Posted on 08-14-2024 11:03 AM
This is known issue in jamf pro
Workaround -
Encoding the '&' Character
You need to encode the & character to its HTML entity equivalent, which is &. However, given the issues with double encoding in Jamf Pro, you might need to use a different approach.
Example-
https://mycompany.com/WorkOrder&Temp
you might need to triple encode the & character to ensure it is handled correctly. For example:
https://mycompany.com/WorkOrder&Temp
Posted on 08-08-2024 04:53 AM
Here you will find everything you need to know. Just look at the screenshot with the .plist and use com.microsoft.Edge as preference Domain.
https://community.jamf.com/t5/jamf-pro/microsoft-edge-managedfavorites/m-p/252360
Posted on 08-08-2024 06:32 AM
Microsoft documents all of Edges policies here Microsoft Edge Browser Policy Documentation | Microsoft Learn. You can also navigate to edge://policy and check the box next to Show policies with no value to see what values you are not managing. This is where I would check for what you can manage.
Posted on 08-08-2024 07:49 AM
this is how the plist should be built.
Posted on 08-12-2024 07:01 AM
Posted on 08-14-2024 11:03 AM
This is known issue in jamf pro
Workaround -
Encoding the '&' Character
You need to encode the & character to its HTML entity equivalent, which is &. However, given the issues with double encoding in Jamf Pro, you might need to use a different approach.
Example-
https://mycompany.com/WorkOrder&Temp
you might need to triple encode the & character to ensure it is handled correctly. For example:
https://mycompany.com/WorkOrder&Temp
Posted on 09-09-2024 10:56 PM
Thank you so much for the link.