デバイス管理を使用してブラウザのパスワードマネージャーを無効化する
この記事では、グループポリシーを使用して、さまざまなウェブブラウザの組み込みパスワー ドマネージャーを無効にする方法について説明します。これらの手順は、企業のログインが保存されて個人のアカウントに同期されるのを防ぐのに役立ちます。この同じポリシーの一部として、すべてのブラウザにBitwardenブラウザ拡張機能をデプロイすることも検討してみてください。
あなたの管理Windowsサーバーでグループポリシー管理エディタを開きます。
グループポリシーエディターで、Edgeの新しいGPOを作成し、適切な名前を付けてください。
あなたの望む範囲を選択してください。
新しいグループポリシーオブジェクトを右クリック → 編集。
グループポリ シー管理エディターで、ユーザー設定 → ポリシー → 管理テンプレート → Microsoft Edgeに移動します。
次のポリシーを設定します:
「パスワード マネージャーと保護」を開き、ポリシー「パスワード マネージャーへのパスワードの保存を有効にする」を無効にします。
ポリシー住所の自動入力を有効にするを無効にしてください。
ポリシー支払い手段のための自動入力を有効にするを無効にしてください。
必要に応じて、ポリシーMicrosoft同期サービスを使用したデータの同期を無効にするを有効にすることができます。
完了後、GPOの設定は次のように表示されるべきです:
GPOリンクが有効になっていることを確認してください。
あなたの管理Windowsサーバーでグループポリシー管理エディタを開きます。
ADMX
ファイルで、以下をコピーしてください:policy_templates\windows\admx\chrome.admx
と
へ
policy_templates\windows\admx\google.admxC:\Windows\PolicyDefinitions
ADML
ファイルで、次のものをコピーしてください:policy_templates\windows\admx\en-us\chrome.adml
そして
policy_templates\windows\admx\en-us\google.adml
宛先C:\Windows \PolicyDefinitions\ja-jp
グループポリシーエディターで、Chrome用の新しいGPOを作成し、適切な名前を付けてください。
あなたの望む範囲を選んでください。
グループ ポリシー オブジェクトを右クリック → 編集。
ユーザー設定 → ポリシー → 管理テンプレート → Google → Google Chromeに移動します。
次の設定を編集してください:
「パスワードマネージャー」の下で、ポリシーパスワードマネージャーへのパスワード保存を有効にするを無効にします。
ポリシー住所の自動入力を有効にするを無効にしてください。
ポリシーを無効にする クレジットカードのための自動入力を有効にする。
完了後、GPOの設定は次のように表示されるべきです:
GPOリンクが有効になっていることを確認してください。
あなたの管理Windowsサーバーでグループポリシーエディタを開きます。
ADMX ファイルをコピーします:
ダウンロードしたフォルダーから、policy_templates_v1.##\windows\firefox.admx & mozilla.admx
宛先C:\Windows\PolicyDefinitions
ADML ファイルをコピーしてください。
からpolicy_templates\windows\ja-jp\firefox.adml & mozilla.adml
宛先C:\Windows \PolicyDefinitions\ja-jp
グループポリシーエディターで、FireFoxの新しいGPOを作成し、適切な名前を付けてください。
あなたの望む範囲を選んでください。
右クリックして新しいグループポリシー → 編集。
ユーザー設定を開く → ポリシー → 管理テンプレート → Mozilla → Firefox。
次のポリシーを探して編集してください:
ポリシーFirefoxアカウントを無効にするを無効にします。
ポリシーログインの保存を提案するを無効にします。
ポリシーログインを保存するオファー(デフォルト)を無効にしてください。
ポリシーパスワードマネージャーを無効にします。
完了後、GPOの設定は次のように表示されるべきです:
GPOリンクが有効になっていることを確認してください。
あなたのセットアップに対して前のステップが正しく機能したか確認してください:
On a user's computer, Open the command line, and run:
gpupdate /force
.Open Edge, then click the three dots for settings ... → Settings → Passwords.
Ensure "Offer to save passwords" is turned off and managed by the organization.
備考
Sign-in automatically is still checked because there is no policy setting to turn this off.
Any logins previously saved in Edge will not be removed and will continue to be displayed to the user, despite autofill being disabled. Be sure to instruct the user to import any saved logins into Bitwarden before deleting them from Edge.
On a user's computer, Open the command line, and run:
gpupdate /force
.Open Chrome and click the profile icon on the top right. See that the user is not signed in.
Open Chrome, then click the three dots ... → Settings → Passwords. See that Offer to save passwords is unchecked and managed by the organization.
On a user's computer, Open the command line, and run:
gpupdate /force
.Open Firefox and select Logins and Passwords from the menu bar.
Ensure that a "Blocked Page" message is displayed.
To disable the Chrome Password Manager via group policy:
Download the Google Chrome .deb or .rpm for Linux.
Download the Chrome Enterprise Bundle.
Unzip the Enterprise Bundle (
GoogleChromeEnterpriseBundle64.zip
orGoogleChromeEnterpriseBundle32.zip
) and open the/Configuration
folder.Make a copy of the
master_preferences.json
(in Chrome 91+,initial_preferences.json
) and rename itmanaged_preferences.json
.To disable Chrome's built-in password manager, add the following to
managed_preferences.json
inside of"policies": { }
:Bash{ "PasswordManagerEnabled": false }
Create the following directories if they do not already exist:
Bashmkdir /etc/opt/chrome/policies mkdir /etc/opt/chrome/policies/managed
Move
managed_preferences.json
into/etc/opt/chrome/policies/managed
.As you will need to deploy these files to users' machines, we recommend making sure only admins can write files in the
/managed
directory.Bashchmod -R 755 /etc/opt/chrome/policies
Additionally, we recommend admins should add the following to files to prevent modifications to the files themselves:
Bashchmod 644 /etc/opt/chrome/policies/managed/managed_preferences.json
Using your preferred software distribution or MDM tool, deploy the following to users' machines:
Google Chrome Browser
/etc/opt/chrome/policies/managed/managed_preferences.json
備考
For more help, refer to Google's Chrome Browser Quick Start for Linux guide.
To disable the Firefox Manager via group policy:
Download Firefox for Linux.
Open a terminal and navigate to the directory your download has been saved to. For example:
cd ~/DownloadsExtract to contents of the downloaded file:
Bashtar xjf firefox-*.tar.bz2
The following commands must be executed as root, or preceded by
sudo
.Move the uncompressed Firefox folder to
/opt
:Bashmv firefox /opt
Create a symlink to the Firefox executable:
Bashln -s /opt/firefox /usr/local/bin/firefox
Download a copy of the desktop file:
Bashwget https://raw.githubusercontent.com/mozilla/sumo-kb/main/install-firefox-linux/firefox.desktop -P /usr/local/share/applications
To disable Firefox's built-in password manager, add the following to
policies.json
inside of"policies": {}
:Bash{ "PasswordManagerEnabled": false }
Create the following directory if it does not already exist:
Bashmkdir /opt/firefox/distribution
Modify the directory with the following:
Bashchmod 755 /opt/firefox/distribution
Additionally, we recommend admins should add the following to files to prevent modifications to the files themselves:
Bashchmod 644 /opt/firefox/distribution/policies.json
Using your preferred software distribution or MDM tool, deploy the following to users' machines:
Firefox Browser
/distribution/policies.json
備考
For more help, refer to Firefox's policies.json Overview or Policies README on Github.
Download the Google Chrome .dmg or .pkg for macOS.
Download the Chrome Enterprise Bundle.
Unzip the Enterprise Bundle (
GoogleChromeEnterpriseBundle64.zip
orGoogleChromeEnterpriseBundle32.zip
).Open the
/Configuration/com.Google.Chrome.plist
file with any text editor.To disable Chrome's built-in password manager, add the following to
com.Google.Chrome.plist
:Bash<key>PasswordManagerEnabled</key> <false />
Convert the
com.Google.Chrome.plist
file to a configuration profile using a conversion tool of your choice.Deploy the Chrome
.dmg
or.pkg
and the configuration profile using your software distribution or MDM tool to all managed computers.
備考
For more help, refer to Google's Chrome Browser Quick Start for Mac guide.
For additional information, see Chrome's documentation for setting up Chrome browser on Mac.
Download and install Firefox for Enterprise for macOS.
Create a
distribution
directory inFirefox.app/Contents/Resources/
.In the created
/distribution
directory, create a new fileorg.mozilla.firefox.plist
.チップ
Firefox .plistテンプレートとポリシーREADMEを参考にしてください。
To disable Firefox's built-in password manager, add the following to
org.mozilla.firefox.plist
:Bash<dict> <key>PasswordManagerEnabled</key> <false/> </dict>
Convert the
org.mozilla.firefox.plist
file to a configuration profile using a conversion tool of your choice.Deploy the Firefox
.dmg
and the configuration profile using your software distribution or MDM tool to all managed computers.
For additional information, see Firefox's documentation for MacOS configuration profiles.
Download the Microsoft Edge for macOS .pkg file.
In Terminal, use the following command to create a
.plist
file for Microsoft Edge:Bash/usr/bin/defaults write ~/Desktop/com.microsoft.Edge.plist RestoreOnStartup -int 1
Use the following command to convert the
.plist
from binary to plain text:Bash/usr/bin/plutil -convert xml1 ~/Desktop/com.microsoft.Edge.plist
To disable Edge's built-in password manager, add the following to
com.microsoft.Edge.plist
:Bash<key>PasswordManagerEnabled</key> <false/>
Deploy the Edge
.pkg
and the configuration profile using your software distribution or MDM tool to all managed computers.チップ
Jamf 固有のヘルプについては、 「Jamf を使用した macOS での Microsoft Edge ポリシー設定の構成」に関する Microsoft のドキュメントを参照してください。
For additional information, see Edge's documentation for configuration profiles.
このページの変更を提案する
どうすればこのページを改善できますか?
技術、請求、製品に関するご質問は、サポートまでお問い合わせください。