・2019/12/31
Firefoxブラウザの「更新通知」を無効にする方法【Firefox 80対応】
(「新しい Firefoxの更新が利用可能です。」の通知を無効にする方法、最新の Firefox 80にも対応)
Tags: [Windows], [無人インストール]
● Firefoxブラウザの「更新通知」を無効にする方法【Firefox 75、80対応】
Firefox Browser
Mozilla Firefox Portable Edition
policies.json を使用して Firefox をカスタマイズする
Firefox が勝手にインターネットに接続するのを防ぐには
Firefox 更新の確認を無効にするには
「新しい Firefoxの更新が利用可能です。」の通知を無効にする方法、最新の Firefox 71にも対応。
・Firefoxブラウザの「更新通知」を無効にする方法【Firefox 71対応】

Firefox通常版。Firefox Portable版も同様に対応可能。
手順:
1) policies.jsonと言う名前で下記の中身のテキストファイルを作成する。
2) firefox.exeの有るディレクトリに distributionと言う名前のフォルダを作成する。
3) distributionのフォルダの中に policies.jsonファイルをコピーする。
1) policies.jsonと言う名前で下記の中身のテキストファイルを作成する。
policies.json
{
"policies": {
"DisableAppUpdate": true
}
}
2) firefox.exeの有るディレクトリに distributionと言う名前のフォルダを作成する。
(通常の Firefoxの場合は「管理者権限」が必要です)
通常の Firefoxの場合。
C:\Program Files\Mozilla Firefox\distribution\
Firefox Portableの場合。
FirefoxPortable\App\Firefox\distribution\
FirefoxPortable\App\Firefox64\distribution\
3) distributionのフォルダの中に policies.jsonファイルをコピーする。
(通常の Firefoxの場合は「管理者権限」が必要です)
通常の Firefoxの場合。
C:\Program Files\Mozilla Firefox\distribution\policies.json
Firefox Portableの場合。
FirefoxPortable\App\Firefox\distribution\policies.json
FirefoxPortable\App\Firefox64\distribution\policies.json
● policies.jsonの設定例
{
"policies": {
"DisableAppUpdate": true,
// "ExtensionUpdate": false,
// "DisableSystemAddonUpdate": true,
"NewTabPage": false,
"FirefoxHome": {
"Search": false,
"TopSites": false,
"Highlights": false,
"Pocket": false,
}
}
}
●レジストリで Firefoxブラウザの「自動更新」を無効にする方法
「システム管理者により、更新が無効化されています」
reg add "HKLM\SOFTWARE\Policies\Mozilla\Firefox" /v DisableAppUpdate /t REG_DWORD /d 1
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Mozilla\Firefox]
"DisableAppUpdate"=dword:00000001
・Firefoxブラウザの「更新通知」を無効にする方法

・Firefoxブラウザの「更新通知」を無効にする方法

・Firefoxブラウザの「更新通知」を無効にする方法

設定を管理者が管理したい
policies.json
C:\Program Files\Mozilla Firefox\distribution\policies.json など
{
"policies": {
"DisableAppUpdate": true
}
}
Firefox の自動アップデートを禁止するという場合
autoconfig.js
C:\Program Files\Mozilla Firefox\defaults\pref\autoconfig.js など
pref("general.config.filename", "autoconfig.cfg");
pref("general.config.vendor", "autoconfig");
pref("general.config.obscure_value", 0);
pref("general.config.sandbox_enabled", false);
autoconfig.cfg
C:\Program Files\Mozilla Firefox\autoconfig.cfg など
lockPref("app.update.enabled", false);
● Firefox・Thunderbird の自動アップデートを禁止したい
自動アップデート - Firefox・Thunderbird の自動アップデートを禁止したい
{
"policies": {
"DisableAppUpdate": true
}
}
● Firefoxの通知設定
Firefoxの「オプション」「プライバシー」「セキュリティ」「許可設定」「通知」「設定」
Tags: [Windows], [無人インストール]
[HOME]
|
[BACK]
リンクフリー(連絡不要、ただしトップページ以外は Web構成の変更で移動する場合があります)
Copyright (c)
2019 FREE WING,Y.Sakamoto
Powered by 猫屋敷工房 & HTML Generator
http://www.neko.ne.jp/~freewing/software/firefox_disable_update/