Last active
July 19, 2024 22:40
-
-
Save bryanwillis/2c56196419f15280d561d43c21bbcd70 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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