Skip to main content
Solved

Set Home Page for MS Edge using a Configuration Profile

  • November 21, 2023
  • 5 replies
  • 105 views

Forum|alt.badge.img+4

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

Best answer by Nicholaus

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>

 

5 replies

Forum|alt.badge.img+19
  • Honored Contributor
  • November 21, 2023

 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


Forum|alt.badge.img+8
  • Contributor
  • Answer
  • November 21, 2023

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
Forum|alt.badge.img+36
  • Hall of Fame
  • December 25, 2023

Pretty extensive list of key/value pairs...

Startup, home page and new tab page 


Forum|alt.badge.img+3
  • New Contributor
  • June 18, 2024

Hi,

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

Thanks


Forum|alt.badge.img+3
  • New Contributor
  • June 20, 2024

Found it.

Thanks