Set Home Page for MS Edge using a Configuration Profile

happy02
New Contributor II

Is there a script to set up the home page for Microsoft Edge ?

1 ACCEPTED SOLUTION

Nicholaus
Contributor

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>

 

View solution in original post

5 REPLIES 5

Tribruin
Valued Contributor II

 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

Nicholaus
Contributor

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>

 

donmontalvo
Esteemed Contributor III

Pretty extensive list of key/value pairs...

Startup, home page and new tab page 

--
https://donmontalvo.com

willjamf
New Contributor II

Hi,

Is there a script to set up the home page for Microsoft Edge using configuration profile?

Thanks

willjamf
New Contributor II

Found it.

Thanks