Skip to content

Instantly share code, notes, and snippets.

@bryanwillis
Last active November 19, 2019 01:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bryanwillis/2c56196419f15280d561d43c21bbcd70 to your computer and use it in GitHub Desktop.
Save bryanwillis/2c56196419f15280d561d43c21bbcd70 to your computer and use it in GitHub Desktop.
$Path = $env:TEMP; $Installer = "chrome_installer.exe"; Invoke-WebRequest "http://dl.google.com/chrome/install/375.126/chrome_installer.exe" -OutFile $Path\$Installer; Start-Process -FilePath $Path\$Installer -Args "/silent /install" -Verb RunAs -Wait; Remove-Item $Path\$Installer
// https://www.chromium.org/administrators/configuring-other-preferences
// https://www.chromium.org/administrators/pre-installed-extensions
{
"homepage": "http://mbi.team",
"homepage_is_newtabpage": false,
"browser": {
"show_home_button": true
},
"session": {
"restore_on_startup": 4,
"startup_urls": [
"https://www.google.com/",
"https://mbi.fyi/myapps"
]
},
"bookmark_bar": {
"show_on_all_tabs": true
},
"sync_promo": {
"show_on_first_run_allowed": false
},
"distribution": {
"import_bookmarks": true,
"import_history": true,
"import_home_page": true,
"import_search_engine": true,
"ping_delay": 60,
"do_not_create_desktop_shortcut": true,
"do_not_create_quick_launch_shortcut": true,
"do_not_create_taskbar_shortcut": true,
"do_not_launch_chrome": true,
"do_not_register_for_update_launch": true,
"make_chrome_default": true,
"make_chrome_default_for_user": true,
"system_level": true,
"verbose_logging": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment