Posted on 11-20-2023 05:35 PM
Is there a script to set up the home page for Microsoft Edge ?
Solved! Go to Solution.
Posted on 11-21-2023 09:41 AM
This would be accomplished through a configuration profile. Here is an example of what I use to set the default homepage and new tab page in Edge. This is a configuration profile with the Application & Custom Settings configured:
Preference Domain: com.microsoft.Edge
Property List:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>HomepageIsNewTabPage</key>
<false/>
<key>HomepageLocation</key>
<string>https://yourhomepagehere.com</string>
<key>NewTabPageLocation</key>
<string>https://yournewtabpagehere.com</string>
</dict>
</plist>
Posted on 11-21-2023 04:53 AM
I would recommend using a Configuration Profile instead of trying to script it? The only reason to use a script is if you want to allow the user to change the setting later.
See this document on how to use Jamf's Custom Application payload to configure Edge.
https://learn.microsoft.com/en-us/deployedge/configure-microsoft-edge-on-mac-jamf
Posted on 11-21-2023 09:41 AM
This would be accomplished through a configuration profile. Here is an example of what I use to set the default homepage and new tab page in Edge. This is a configuration profile with the Application & Custom Settings configured:
Preference Domain: com.microsoft.Edge
Property List:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>HomepageIsNewTabPage</key>
<false/>
<key>HomepageLocation</key>
<string>https://yourhomepagehere.com</string>
<key>NewTabPageLocation</key>
<string>https://yournewtabpagehere.com</string>
</dict>
</plist>
Posted on 12-25-2023 11:58 AM
Pretty extensive list of key/value pairs...
Startup, home page and new tab page
Posted on 06-18-2024 08:55 AM
Hi,
Is there a script to set up the home page for Microsoft Edge using configuration profile?
Thanks
Posted on 06-20-2024 01:48 AM
Found it.
Thanks