I've been very impressed with Google Chrome Master Preferences options but have not been able to get Chrome to suppress the first run browser setting using this feature. More details can be found here: http://www.chromium.org/administrators/configuring-other-preferences
Has anyone gotten this to work successfully? I believe it might be a Google bug, but I haven't found anything conclusive. I've validated my JSON code and am seeing the other settings take, just not that particular one. Here is my Preferences code:
{
"homepage" : "http://www.mysite.com",
"homepage_is_newtabpage" : false,
"browser" : {
"show_home_button" : false,
"check_default_browser" : false
},
"bookmark_bar" : {
"show_on_all_tabs" : false
},
"sync_promo" : {
"show_on_first_run_allowed": false
},
"distribution" : {
"auto_launch_chrome": false,
"import_bookmarks": false,
"import_history": false,
"import_home_page": false,
"import_search_engine": false,
"show_welcome_page": false,
"skip_first_run_ui": true,
"suppress_first_run_bubble": true,
"do_not_create_desktop_shortcut": true,
"do_not_create_quick_launch_shortcut": true,
"do_not_launch_chrome": true,
"do_not_register_for_update_launch": true,
"make_chrome_default": false,
"make_chrome_default_for_user": false,
"suppress_first_run_default_browser_prompt": true,
"require_eula": false,
"system_level": true
}
}
Thanks
