2
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Google Chromeのすべての設定をインポート・エクスポートする方法

Last updated at Posted at 2017-03-15

Google Chromeのすべての設定をインポート・エクスポートする方法

特殊な環境下(例えば、複数人で共有している仮想デスクトップとか)で、ログインのたび、または一定の間隔でドメコンなどでWindowsの設定がリセットされる場合で、一緒にGoogle Chromeで設定していたブックマークなど諸々の設定が消えてしまう場合に役立ちます。

試した環境

OS:Windows10 64ビット
Google Chrome:バージョン 56.0.2924.87

エクスポート手順

1.Google Chromeを終了する

Google Chromeを起動している場合は終了します。

2.エクスポートする

Google Chromeの設定情報関連ファイルを隠しファイル・フォルダも含めすべて、どこかにバックアップします。

xcopy /Y /E /H /I "C:\Users\[任意のユーザ名]\AppData\Local\Google\Chrome\User Data\Default" "[バックアップ先フォルダパス]"

インポート手順

1.Google Chromeを終了する

Google Chromeを起動している場合は終了します。

2.インポートする

下記コマンドで、GoogleChromeの設定情報関連ファイルを削除し、バックアップから復元(全設定上書き)します。

rmdir /Q /S "C:\Users\[任意のユーザ名]\AppData\Local\Google\Chrome\User Data\Default"
xcopy /Y /E /H /I "[バックアップ先フォルダパス]" "C:\Users\[任意のユーザ名]\AppData\Local\Google\Chrome\User Data\Default"

以上です。

2
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?