Hey there,
I tried to set the homepage and new tab page for Chrome and Edge using the Deploy Custom Configuration feature. The new tab configuration is working fine for both, but when I click the homepage button, it opens the same URL that’s been configured for the new tab page. I’m confused as to why this is happening, and I’m pretty sure that the configuration profile to set the homepage is correct. Here are the two profiles I used:
Chrome: –
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
<?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>PayloadContent</key> <array> <dict> <key>HomepageLocation</key> <string> <URL> </string> <key>NewTabPageLocation</key> <string> <URL> </string> <key>PayloadDisplayName</key> <string>Google Chrome</string> <key>PayloadIdentifier</key> <string>com.google.Chrome.1F430DD2-2D10-475F-98AB-170CA08D0508</string> <key>PayloadType</key> <string>com.google.Chrome</string> <key>PayloadUUID</key> <string>1F430DD2-2D10-475F-98AB-170CA08D0508</string> <key>PayloadVersion</key> <integer>1</integer> </dict> </array> <key>PayloadDisplayName</key> <string>Untitled</string> <key>PayloadIdentifier</key> <string>MacBook-Air-M2.62E07C13-28C7-43DB-88C3-53B6AAA88C54</string> <key>PayloadType</key> <string>Configuration</string> <key>PayloadUUID</key> <string>B25E619C-07A4-411E-86F5-9156FE2651A1</string> <key>PayloadVersion</key> <integer>1</integer> </dict> </plist> |
Edge:-
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
<?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>PayloadContent</key> <array> <dict> <key>HomepageLocation</key> <string> <URL> </string> <key>NewTabPageLocation</key> <string> <URL> </string> <key>PayloadDisplayName</key> <string>Microsoft Edge</string> <key>PayloadIdentifier</key> <string>com.microsoft.Edge.6373C10C-909F-4151-AD82-0418C8300D53</string> <key>PayloadType</key> <string>com.microsoft.Edge</string> <key>PayloadUUID</key> <string>66891E4E-449F-4D67-BECA-7FE3611377CD</string> <key>PayloadVersion</key> <integer>1</integer> </dict> </array> <key>PayloadDisplayName</key> <string>Untitled</string> <key>PayloadIdentifier</key> <string>MacBook-Air-M2.62E07C13-28C7-43DB-88C3-53B6AAA88C54</string> <key>PayloadType</key> <string>Configuration</string> <key>PayloadUUID</key> <string>4B7D832B-3E97-4210-8122-B90789F10F32</string> <key>PayloadVersion</key> <integer>1</integer> </dict> </plist> |