Google Chrome for Businessを展開するときにデフォルト設定をカスタマイズするにはどうすればよいですか?


14

追加のショートカットを作成したり、最初の実行プロンプトを表示したりすることなく、組織にGoogle Chrome for Businessを展開できるようにしたいと考えています。Chrome for BusinessインストーラーはWindowsインストーラーファイル(MSI)ですが、実行可能なインストーラーの単なるラッパーです。多くのMSIインストーラーのようにmsiexecコマンドラインで設定できるCreateDesktopShortcutなどのプロパティはありません。インストールをカスタマイズするにはどうすればよいですか?インストールスクリプトを作成および管理しないことを希望します。

回答:


24

Google Chrome は、デフォルトのユーザー設定をmaster_preferencesファイルに保存します。これはJSON形式のテキストファイルであり、distributionインストール中に読み取られる設定を含むオブジェクトが含まれています。既存のChromeインストールでこのファイルを編集しても、その時点でインストールがすでに行われているため、問題は解決しません。解決策は、変換ファイルを使用して、カスタマイズされたmaster_preferencesファイルをWindowsインストーラーのインストールプロセス統合することです。これを行うには、次の手順を実行します。

必要なインストーラーとツールを収集する

  1. Google Chrome for Businessインストーラー
    64ビットバージョンをにダウンロードしますE:\Chrome for Business 38 (64-bit)
  2. Windows 8.1用のMicrosoft Windowsソフトウェア開発キット(SDK)
    これをにダウンロードしE:\WindowsSDK8.1ます。
  3. Windows SDKをインストールしますE:\WindowsSDK8.1.\sdksetup.exe
  4. Orca(Windows Installerデータベースエディター)をインストールします
    msiexec /package "C:\Program Files (x86)\Windows Kits\8.1\bin\x86\Orca-x86_en-us.msi"

カスタマイズされたmaster_preferencesファイルを書く

  1. 利用可能な配布設定を確認します。これらはdistribution、master_preferencesファイルの匿名オブジェクトに含まれるオブジェクトのプロパティです。次の設定リストは、2つのChromiumソースファイルmaster / preferences_constants.hおよびmaster_preferences_constants.cc/ trunk / src / chrome / installer / util /に組み合わせてコンパイルされています。プロパティに値が含まれていないため、以下は有効なJSONではないことに注意してください。以下に例を示します。
{
  "distribution" : {
    // All the preferences below are expected to be inside the JSON "distribution"
    // block (as shown here). Some of them also have equivalent command line option. 
    // If same option is specified in master preference as well as command line, 
    // the command line value takes precedence.

    // Boolean. Use alternate text for the shortcut. Cmd line override present.
    "alternate_shortcut_text"

    // Boolean. Whether to instruct the installer to auto-launch chrome on computer
    // startup. The default (if not provided) is |false|.
    "auto_launch_chrome"

    // Boolean. This is to be a Chrome install. (When using MultiInstall)
    "chrome"

    // Boolean. This is to be a Chrome App Host install.
    "app_host"  // TODO(huangs): Remove by M27.

    // Boolean. This is to be a Chrome App Launcher install.
    "app_launcher"

    // Integer. Icon index from chrome.exe to use for shortcuts.
    "chrome_shortcut_icon_index"

    // Boolean. This is a legacy preference and should no longer be used; it is
    // kept around so that old master_preferences which specify
    // "create_all_shortcuts":false still enforce the new
    // "do_not_create_(desktop|quick_launch)_shortcut" preferences. Setting this to
    // true no longer has any impact.
    "create_all_shortcuts"

    // Boolean pref that disables all logging.
    "disable_logging"

    // Name of the dictionary that holds the distribution values.
    "distribution"

    // Boolean pref that triggers silent import of the default browser bookmarks.
    "import_bookmarks"

    // String pref that triggers silent import of bookmarks from the html file at
    // given path.
    "import_bookmarks_from_file"

    // Boolean pref that triggers silent import of the default browser history.
    "import_history"

    // Boolean pref that triggers silent import of the default browser homepage.
    "import_home_page"

    // Boolean pref that triggers silent import of the default search engine.
    "import_search_engine"

    // Integer. RLZ ping delay in seconds.
    "ping_delay"

    // String of Chrome version for which the "set as default browser" infobar will
    // never be shown.
    "suppress_default_browser_prompt_for_version"

    // Boolean. Do not show first run bubble, even if it would otherwise be shown.
    "suppress_first_run_bubble"

    // Boolean. Prevent creation of all shortcuts to chrome, including the
    // desktop, quick launch, taskbar and the start menu shortcuts.
    "do_not_create_any_shortcuts"

    // Boolean. Prevent creation of the Desktop shortcut on install (and later on
    // Active Setup for each user on a system-level install).
    "do_not_create_desktop_shortcut"

    // Boolean. Prevent creation of the Quick Launch shortcut on install (and later
    // on Active Setup for each user on a system-level install).
    "do_not_create_quick_launch_shortcut"

    // Boolean. Prevent creation of the Taskbar (since Windows 7) shortcut on
    // install (and later on Active Setup for each user on a system-level install).
    "do_not_create_taskbar_shortcut"

    // Boolean. Do not launch Chrome after first install. Cmd line override present.
    "do_not_launch_chrome"

    // Boolean. Do not register with Google Update to have Chrome launched after
    // install. Cmd line override present.
    "do_not_register_for_update_launch"

    // String.  Specifies the file path to write logging info to.
    "log_file"

    // Boolean. Register Chrome as default browser. Cmd line override present.
    "make_chrome_default"

    // Boolean. Register Chrome as default browser for the current user.
    "make_chrome_default_for_user"

    // Boolean. Expect to be run by an MSI installer. Cmd line override present.
    "msi"

    // Boolean. Support installing multiple products at once.
    "multi_install"

    // Boolean. Show EULA dialog before install.
    "require_eula"

    // Boolean. Indicates that the first-run 'set-as-default' dialog should not be
    // shown. Relevant in Windows 8+ context only. If this is true, the standard
    // 'set default browser' prompt on the butter-bar will appear during the first
    // run.
   "suppress_first_run_default_browser_prompt"

    // Boolean. Install Chrome to system wise location. Cmd line override present.
    "system_level"

    // Boolean. Run installer in verbose mode. Cmd line override present.
    "verbose_logging"

    // Name of the block that contains the extensions on the master preferences.
    "extensions.settings"
  }
}
  1. 利用可能な非配布設定を確認します。これらの設定は、JSON のオブジェクトの外部に移動distributionします。ユーザーが初めてChromeを実行するときに、ユーザープロファイルに適用されます。設定の完全なリストは、/ trunk / src / chrome / common /のChromiumソースファイルpref_names.hおよびpref_names.ccにあります。リストはかなり長いため、ここではサブセットのみを示します。
{
// *************** PROFILE PREFS ***************
// These are attached to the user profile

// A string property indicating whether default apps should be installed
// in this profile.  Use the value "install" to enable defaults apps, or
// "noinstall" to disable them.  This property is usually set in the
// master_preferences and copied into the profile preferences on first run.
// Defaults apps are installed only when creating a new profile.
"default_apps"

// If set to true profiles are created in ephemeral mode and do not store their
// data in the profile folder on disk but only in memory.
"profile.ephemeral_mode"

// A boolean specifying whether the New Tab page is the home page or not.
"homepage_is_newtabpage"

// This is the URL of the page to load when opening new tabs.
"homepage"

// An integer pref. Holds one of several values:
// 0: (deprecated) open the homepage on startup.
// 1: restore the last session.
// 2: this was used to indicate a specific session should be restored. It is
//    no longer used, but saved to avoid conflict with old preferences.
// 3: unused, previously indicated the user wants to restore a saved session.
// 4: restore the URLs defined in kURLsToRestoreOnStartup.
// 5: open the New Tab Page on startup.
"session.restore_on_startup"

// The URLs to restore on startup or when the home button is pressed. The URLs
// are only restored on startup if kRestoreOnStartup is 4.
"session.startup_urls"

// Boolean that is true when SafeBrowsing is enabled.
"safebrowsing.enabled"

// Boolean that tell us whether malicious download feedback is enabled.
"safebrowsing.extended_reporting_enabled"

/* Might be useful for highly-secure workstations. */
// Enum that specifies whether Incognito mode is:
// 0 - Enabled. Default behaviour. Default mode is available on demand.
// 1 - Disabled. Used cannot browse pages in Incognito mode.
// 2 - Forced. All pages/sessions are forced into Incognito.
"incognito.mode_availability"

// Boolean that is true when Suggest support is enabled.
"search.suggest_enabled"

// A boolean pref set to true if a Home button to open the Home pages should be
// visible on the toolbar.
"browser.show_home_button"

// Boolean that indicates whether we should check if we are the default browser
// on start-up.
"browser.check_default_browser"

// Policy setting whether default browser check should be disabled and default
// browser registration should take place.
"browser.default_browser_setting_enabled"

// Boolean that specifies whether to import bookmarks from the default browser
// on first run.
"import_bookmarks"

// Boolean that specifies whether to import the browsing history from the
// default browser on first run.
"import_history"

// Boolean that specifies whether to import the homepage from the default
// browser on first run.
"import_home_page"

// Boolean that specifies whether to import the search engine from the default
// browser on first run.
"import_search_engine"

// Boolean that specifies whether to import the saved passwords from the default
// browser on first run.
"import_saved_passwords"

// Boolean that specifies if the sign in promo is allowed to show on first run.
// This preference is specified in the master preference file to suppress the
// sign in promo for some installations.
"sync_promo.show_on_first_run_allowed"

// *************** LOCAL STATE ***************
// These are attached to the machine/installation

// Note: Both settings included below are for Windows only.

// Whether downloaded PDFs should be opened in Adobe Acrobat Reader.
"download.open_pdf_in_adobe_reader"

// Preference to be used while relaunching Chrome. This preference dictates if
// Chrome should be launched in Metro or Desktop mode.
// For more info take a look at ChromeRelaunchMode enum.
"relaunch.mode"

// Boolean that specifies if the sign in promo is allowed to show on first run.
// This preference is specified in the master preference file to suppress the
// sign in promo for some installations.
"sync_promo.show_on_first_run_allowed";

// Boolean that specifies if we should show a bubble in the new tab page.
// The bubble is used to confirm that the user is signed into sync.
"sync_promo.show_ntp_bubble";

// As part of the master preferences an optional section indicates the tabs
// to open during first run. An example is the following:
"first_run_tabs": [
  "http://google.com/f1",
  "https://google.com/f2"
]
// Note that the entries are usually urls but they don't have to be.
  1. 必要な設定を選択し、独自のカスタムmaster_preferencesテキストファイルを作成します。以下は、Windowsインストーラーファイルに組み込まれているものです(読みやすくするために複数行に拡張されています)。
{
  "distribution" : 
  {
    "msi" : true,
    "system_level" : true,
    "verbose_logging" : true
  }
}

インストーラーが正しく機能するためには、master_preferencesファイルに示されているこれらのプロパティをすべて含める必要があります。したがって、これから始めて追加する必要があります。私のファイルを以下に示します。ChromeがユーザーにGoogleアカウントの構成を要求するのを止める唯一の方法は、first_run_tabsプロパティを設定することでした。

{
  "browser" : {
    "check_default_browser" : false
  },
  "distribution" : {
    "import_bookmarks" : false,
    "import_history" : false,
    "import_home_page" : false,
    "import_search_engine" : false,
    "suppress_first_run_bubble" : true,
    "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" : false,
    "make_chrome_default_for_user" : false,
    "msi" : true,
    "require_eula" : false,
    "suppress_first_run_default_browser_prompt" : true,
    "system_level" : true,
    "verbose_logging" : true
  },
  "first_run_tabs" : [
    "chrome://newtab"
  ],
  "homepage" : "chrome://newtab",
  "homepage_is_newtabpage" : true,
  "sync_promo" : {
    "show_on_first_run_allowed" : false
  }
}
  1. http://jslint.com/を参照し、JSONを[ソース]ボックスにコピーして、[JSLint]ボタンをクリックします。これにより、適切なJSONがあることが確認されます。不正な形式のJSONをインストーラーに渡すと、予期しない結果や望ましくない結果が生じるため、これは重要です。今後の参照用に検証済みファイルを保存します。

  2. 検証済みのJSONのコピーを作成し、スペースと改行をすべて削除します。Chromeインストーラーは改行を処理できません。改行を含めると、インストールが破損し、レジストリの操作とファイルの手動削除によって削除する必要があります。スペースを削除する必要はありませんが、セットアップ作成者がデフォルトのJSONで行ったことと一致します。鉱山は以下に示されています。

{"browser":{"check_default_browser":false},"distribution":{"import_bookmarks":false,"import_history":false,"import_home_page":false,"import_search_engine":false,"suppress_first_run_bubble":true,"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":false,"make_chrome_default_for_user":false,"msi":true,"require_eula":false,"suppress_first_run_default_browser_prompt":true,"system_level":true,"verbose_logging":true},"first_run_tabs":["chrome://newtab"],"homepage":"chrome://newtab","homepage_is_newtabpage":true,"sync_promo":{"show_on_first_run_allowed":false}}
  1. JSLintを介してスペースなしで新しいJSONを実行し、エラーが発生しないようにします。

  2. スペースまたは改行なしで検証済みのJSONをURLエンコーダーにコピーします。URL Encode / Decode Onlineを使用しました。エンコードされたJSONを保存して、インストーラーで使用し、後で参照できるようにします。エンコードされたJSONを以下に示します。

%7B%22browser%22%3A%7B%22check_default_browser%22%3Afalse%7D%2C%22distribution%22%3A%7B%22import_bookmarks%22%3Afalse%2C%22import_history%22%3Afalse%2C%22import_home_page%22%3Afalse%2C%22import_search_engine%22%3Afalse%2C%22suppress_first_run_bubble%22%3Atrue%2C%22do_not_create_desktop_shortcut%22%3Atrue%2C%22do_not_create_quick_launch_shortcut%22%3Atrue%2C%22do_not_create_taskbar_shortcut%22%3Atrue%2C%22do_not_launch_chrome%22%3Atrue%2C%22do_not_register_for_update_launch%22%3Atrue%2C%22make_chrome_default%22%3Afalse%2C%22make_chrome_default_for_user%22%3Afalse%2C%22msi%22%3Atrue%2C%22require_eula%22%3Afalse%2C%22suppress_first_run_default_browser_prompt%22%3Atrue%2C%22system_level%22%3Atrue%2C%22verbose_logging%22%3Atrue%7D%2C%22first_run_tabs%22%3A%5B%22chrome%3A%2F%2Fnewtab%22%5D%2C%22homepage%22%3A%22chrome%3A%2F%2Fnewtab%22%2C%22homepage_is_newtabpage%22%3Atrue%2C%22sync_promo%22%3A%7B%22show_on_first_run_allowed%22%3Afalse%7D%7D

Windowsインストーラー変換を書く

  1. Orcaを起動します。
  2. ダウンロードしたChrome for Business MSIファイルを読み取り専用で開きます。(実際のファイルを編集できると思いますが、変換を使用するのが好きなので、ベンダーから提供されたファイルを常に問題がある場合のベースラインとして使用します。)Chrome for Business 38 64ビットをダウンロードし、ファイル名はでしたgooglechromestandaloneenterprise64.msi
  3. 変換メニュー、選択新規変換。これで、新しい変換ファイルを編集しているため、すべてのWindows Installerデータベーステーブルが編集可能になりました。
  4. プロパティテーブルを選択します。
  5. [プロパティ]列を右クリックし、[行の追加]をクリックします。プロパティをMASTER_PREFERENCESに設定し、値をURLエンコードされたJSONに設定します。このコードは展開中に適用さmaster_preferencesれ、インストーラーによってインストールのファイルとして保存されます。
  6. CustomActionテーブルを選択し、BuildInstallCommandアクションを見つけます。
  7. BuildInstallCommandアクションの[ターゲット]セルをダブルクリックして、編集可能にします。
  8. テキストの終わり近くで、次の既存のエンコードされたJSONを削除し、installerdata=括弧内の新しいプロパティ名に置き換えます。必ず閉じ引用符を保持してください。次のようになります。 installerdata=[MASTER_PREFERENCES]"
  9. Enterキーを押して、セルの編集を終了します。
  10. 変換メニュー、クリック変換生成...と新しいMSTファイルを保存します。私はとして保存しましたE:\Chrome for Business 38 (64-bit)\MasterPreferences.mst
  11. Orcaを終了します。

注:カスタムアクションの[ターゲット]フィールドの長さは255文字しかないため JSONをカスタムアクションに直接挿入するのではなく、プロパティを使用する必要があります。そのテーブルのスキーマを変更することはできません。ほとんどのカスタムJSONは、そのフィールドの合計長が制限を超えます。プロパティ値の長さには実際的な制限がないため、プロパティを使用すると長さの制限が回避されます。

変換を使用してChromeをインストールする

  1. 管理者特権でコマンドプロンプトウィンドウを開きます。
  2. TRANSFORMSプロパティをファイル名に設定して、変換とともにGoogle Chromeをインストールします。ロギングをオンにして、問題を見つけやすくします。サンプルのフォルダーを使用し、管理者としてログインしていると仮定します。 msiexec /package "E:\Chrome for Business 38 (64-bit)\googlechromestandaloneenterprise64.msi" TRANSFORMS="E:\Chrome for Business 38 (64-bit)\MasterPreferences.mst" /l*v "C:\Users\Administrator\Desktop\ChromeInstallationLog.txt"
  3. Chromeがエラーなしでインストールされる場合は、管理者以外の別のユーザーとしてChromeを実行して、設定が正しく伝達されていることを確認してください。
  4. 最後に、インストーラーと変換ファイルを使用して展開システムを構成します。System Center Configuration Manager 2012 R2を使用しています。このアプリケーションのコマンドラインは次のようになります。 msiexec /package "googlechromestandaloneenterprise64.msi" /quiet TRANSFORMS="MasterPreferences.mst" /l*v "%TEMP%\ChromeInstallationLog.txt" これにより、ユーザーはConfiguration ManagerのSoftware Centerアプリケーションでアプリストアのようなエクスペリエンスを提供し、デスクトップとタスクバーアイコンの制御をユーザーのみに任せ、煩わしい初回実行エクスペリエンスを回避します。これは一般的に私が好むユーザーエクスペリエンスですが、コンピューターラボなど、再起動するたびにハードドライブの変更が失われるため、すべてのログオンが「最初の」ログオンであるため、特に公開されているコンピューターに特に役立ちます。

ノート

master_preferencesファイルに関する Googleのドキュメントも参照してください。このファイルには、使用可能な設定のサブセットが記載されていますが、インストール中にマシンに設定を取得する方法は説明されていません。

MSIカスタマイズの可能性を指摘してくれたgrt@chromium.orgに感謝します。ここでの私の目標は、その情報を拡張して、包括的な説明とソリューションの例を提供することでした。お役に立てば幸いです。


これは素晴らしいガイドです。あなたはヒーローです。:-)
usershmusername

それでもそうですか?そのためには、GoogleのSoemoneを解雇する必要があります。レジストリは "it"である必要があります-Wixで5分間の簡単なジョブとしてロールアウトできるファイル名と場所を指すレジストリエントリと同じくらい簡単です。
トムトム

0

コメントを投稿するのに十分な担当者がいません。私はジェイのガイドを使用して、ダウンロードしたファイルの種類を自動的に実行する問題を解決しました。そして、これは現時点でそれを行う唯一の方法に見えます:

https://bugs.chromium.org/p/chromium/issues/detail?id=476668

-このリンクは、不明なバグが参照されています。レポーターは、GPOを介してd / lで自動的に実行されるように特定のファイルタイプを設定できるようにしたいと考えています。この使用例は、セキュリティへの影響を考慮して制限されていますが、エンタープライズ展開では必要になる場合があります。master_preferencesを使用して、.mstでJayの手法を使用して実現できます。(チックのコメントに応じて編集)

トムトムに同意します。もっと簡単な方法があるはずです。ほとんどの場合、Googleの.admxで十分です。


担当者の数に関係なく、リンクのみの回答は削除される可能性があります。これを単独で答えとして意味を成し、あなたが言っていることを確認したり、より深く掘り下げたい人のためにリンクを参照するだけです。 serverfault.com/help/how-to-answer
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.