Hello JAMF!
I've tired using this manifest as Managed Preferences (https://jamfnation.jamfsoftware.com/viewProductFile.html?id=73&fid=774), scoped it to my testing computers and Google Chrome will not recognize any of the changes.
I've also tried the Master Preferences file so I could apply the settings during imaging and Chrome didn't recognize it as well.
if [ ! -d "/Library/Google" ]
then
mkdir "/Library/Google"
fi
(
sudo cat <<'EOD'
{
"homepage" : "http://domain.com”,
"homepage_is_newtabpage" : false,
"browser" : {
"show_home_button" : true,
"check_default_browser" : true
},
"bookmark_bar" : {
"show_on_all_tabs" : false
},
"distribution" : {
"suppress_first_run_bubble": true,
"show_welcome_page" : false,
"skip_first_run_ui" : true,
"import_history" : false,
"import_bookmarks" : false,
"import_home_page" : false,
"import_search_engine" : false
},
"sync_promo" : {
"user_skipped" : true
},
"first_run_tabs" : [
"http://domain.com/“
]
}
EOD
) > "/Library/Google/Google Chrome Master Preferences"
Can someone point me in the right direction on why Chrome isn't pickung up these changes?
